We have a T1 connected to a Cisco 1720 with CSU/DSU which is working fine. We are adding an additional block of ip addresses to our current network and need to add the new segment to our router. I have added it to the interface as below:
interface FastEthernet0
description connected to EthernetLAN
--> ip address YY.YYY.YY.65 255.255.255.240 secondary
ip address XXX.XXX.XX.225 255.255.255.224
no keepalive
speed auto
And have added an entry for routing the new network as below:
ip classless
ip route 0.0.0.0 0.0.0.0 Serial0.1
--> ip route YY.YYY.YY.64 255.255.255.240 XX.XXX.XX.226
The problem I'm having is then even thought I made these changes, traffic is still not being routed to the new network. The output of show ip route is below:
YY.0.0.0/28 is subnetted, 1 subnets
C YY.YYY.YY.64 is directly connected, FastEthernet0
XXX.XXX.XX.0/27 is subnetted, 1 subnets
C XXX.XXX.XX.224 is directly connected, FastEthernet0
S* 0.0.0.0/0 is directly connected, Serial0.1
What have I missed?
interface FastEthernet0
description connected to EthernetLAN
--> ip address YY.YYY.YY.65 255.255.255.240 secondary
ip address XXX.XXX.XX.225 255.255.255.224
no keepalive
speed auto
And have added an entry for routing the new network as below:
ip classless
ip route 0.0.0.0 0.0.0.0 Serial0.1
--> ip route YY.YYY.YY.64 255.255.255.240 XX.XXX.XX.226
The problem I'm having is then even thought I made these changes, traffic is still not being routed to the new network. The output of show ip route is below:
YY.0.0.0/28 is subnetted, 1 subnets
C YY.YYY.YY.64 is directly connected, FastEthernet0
XXX.XXX.XX.0/27 is subnetted, 1 subnets
C XXX.XXX.XX.224 is directly connected, FastEthernet0
S* 0.0.0.0/0 is directly connected, Serial0.1
What have I missed?