I'm showing with this question, I still don't have a solid grasp on subnetting, how to implement and assign addresses to interfaces on various devices.
However I want to add a Loopback address to a Router. Here are my current interfaces:
east#show ip int br
Interface IP-Address OK? Method Status Protocol
FastEthernet0/0 unassigned YES NVRAM administratively down down
Serial1/0 10.0.1.2 YES NVRAM up up
Serial1/1 unassigned YES manual up down
Serial1/2 unassigned YES NVRAM administratively down down
Serial1/3 unassigned YES NVRAM administratively down down
Serial1/4 unassigned YES NVRAM administratively down down
Serial1/5 unassigned YES NVRAM administratively down down
Serial1/6 unassigned YES NVRAM administratively down down
Serial1/7 unassigned YES NVRAM administratively down down
Loopback0 unassigned YES manual up up
I want to give the Loopback an address that falls after 10.0.1.2, however I keep getting an overlap error. See below.
east#show ip int br
Interface IP-Address OK? Method Status Protocol
FastEthernet0/0 unassigned YES NVRAM administratively down down
Serial1/0 10.0.1.2 YES NVRAM up up
Serial1/1 unassigned YES manual up down
Serial1/2 unassigned YES NVRAM administratively down down
Serial1/3 unassigned YES NVRAM administratively down down
Serial1/4 unassigned YES NVRAM administratively down down
Serial1/5 unassigned YES NVRAM administratively down down
Serial1/6 unassigned YES NVRAM administratively down down
Serial1/7 unassigned YES NVRAM administratively down down
Loopback0 unassigned YES manual up up
east#
east#
east#
east#
east#
east#conf t
Enter configuration commands, one per line. End with CNTL/Z.
east(config)#int Loopback0
east(config-if)#ip address 10.0.1.3 255.255.255.0
% 10.0.1.0 overlaps with Serial1/0
east(config-if)#ip address 10.0.1.25 255.255.255.0
% 10.0.1.0 overlaps with Serial1/0
east(config-if)#ip address 10.0.2.1 255.255.255.0
east(config-if)#end
east#show
*May 22 22:04:42.667: %SYS-5-CONFIG_I: Configured from console by console
east#show ip int br
Interface IP-Address OK? Method Status Protocol
FastEthernet0/0 unassigned YES NVRAM administratively down down
Serial1/0 10.0.1.2 YES NVRAM up up
Serial1/1 unassigned YES manual up down
Serial1/2 unassigned YES NVRAM administratively down down
Serial1/3 unassigned YES NVRAM administratively down down
Serial1/4 unassigned YES NVRAM administratively down down
Serial1/5 unassigned YES NVRAM administratively down down
Serial1/6 unassigned YES NVRAM administratively down down
Serial1/7 unassigned YES NVRAM administratively down down
Loopback0 10.0.2.1 YES manual up up
I'm not sure what that error means.
In my mind, I think that the addresses that I'm trying to use above should work.
However, once I use a different number on the 3rd Octet, then it works.