"ip default-network" command seems not inject a default route. The behavior looks different from what is written on Wendell Odon's CCNP book.
- "ip default-network" creates a default route on a router from which the "default-network" command is issued. However, other routers learns only a candidate default route (They have no default route set.).
- "ip default-network" command needs to be issued from a router that is not directly connected to the target default route.
- A router that is connected to a default route side (R3 in the following experiment) does not learn the candidate default route from the command.
Note: 192.0.0.1/24 on R2 is not used in the experiment
Misc: To reflect the result of `no ip default-network`, the target interface needs to be shut down.
Misc: To reflect the result of `no ip default-network`, the target interface needs to be shut down.
Used IOS: 15.0(1)M ADVENTERPRISEK9-M
CASE 1
*Topology*
R1 fa0/0 <---> R2 fa0/0
*Interfaces*
R1
fa0/0 10.0.0.1/8
lo0 128.0.0.1/16
R2
fa0/0 10.0.0.2/8
lo0 192.0.0.1/24
*Commands*
R1
eigrp 1
net 10.0.0.0
net 128.0.0.0
ip default-network 128.0.0.0
R2
eigrp 1
net 10.0.0.0
net 192.0.0.0
*Result*
"ip default-network" has no effect because it is issued on R1 where 128.0.0.0 network is directly connected.
R1# sh ip route
Gateway of last resort is not set
10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C 10.0.0.0/8 is directly connected, FastEthernet0/0
L 10.0.0.1/32 is directly connected, FastEthernet0/0
* 128.0.0.0/16 is variably subnetted, 2 subnets, 2 masks
C* 128.0.0.0/16 is directly connected, Loopback0
L 128.0.0.1/32 is directly connected, Loopback0
D 192.0.0.0/24 [90/156160] via 10.0.0.2, 00:16:24, FastEthernet0/0
R2# sh ip route
Gateway of last resort is not set
10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C 10.0.0.0/8 is directly connected, FastEthernet0/0
L 10.0.0.2/32 is directly connected, FastEthernet0/0
D* 128.0.0.0/16 [90/156160] via 10.0.0.1, 00:10:06, FastEthernet0/0
192.0.0.0/24 is variably subnetted, 2 subnets, 2 masks
C 192.0.0.0/24 is directly connected, Loopback0
L 192.0.0.1/32 is directly connected, Loopback0
CASE 2
*Topology*
R1 fa0/0 <---> R2 fa0/0
*Interfaces*
R1
fa0/0 10.0.0.1/8
lo0 128.0.0.1/16
R2
fa0/0 10.0.0.2/8
lo0 192.0.0.1/24
*Commands*
R1
eigrp 1
net 10.0.0.0
net 128.0.0.0
R2
eigrp 1
net 10.0.0.0
net 192.0.0.0
ip default-network 128.0.0.0
*Result*
R2 uses "128.0.0.0" as a default route.
R1
Gateway of last resort is not set
10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C 10.0.0.0/8 is directly connected, FastEthernet0/0
L 10.0.0.1/32 is directly connected, FastEthernet0/0
128.0.0.0/16 is variably subnetted, 2 subnets, 2 masks
C 128.0.0.0/16 is directly connected, Loopback0
L 128.0.0.1/32 is directly connected, Loopback0
D 192.0.0.0/24 [90/156160] via 10.0.0.2, 00:32:27, FastEthernet0/0
192.168.0.0/24 is variably subnetted, 2 subnets, 2 masks
C 192.168.0.0/24 is directly connected, FastEthernet0/1
L 192.168.0.1/32 is directly connected, FastEthernet0/1
R2
Gateway of last resort is 10.0.0.1 to network 128.0.0.0
S* 0.0.0.0/0 [90/156160] via 10.0.0.1, FastEthernet0/0
10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C 10.0.0.0/8 is directly connected, FastEthernet0/0
L 10.0.0.2/32 is directly connected, FastEthernet0/0
D* 128.0.0.0/16 [90/156160] via 10.0.0.1, 00:00:39, FastEthernet0/0
192.0.0.0/24 is variably subnetted, 2 subnets, 2 masks
C 192.0.0.0/24 is directly connected, Loopback0
L 192.0.0.1/32 is directly connected, Loopback0
CASE 3
*Topology*
R3 fa0/1 <---> fa0/1 R1 fa0/0 <---> fa0/0 R2 fa0/1 <---> fa0/1 R4
*Interfaces*
R1
fa0/0 10.0.0.1/8
fa0/1 192.168.0.1/24
lo0 128.0.0.1/16
R2
fa0/0 10.0.0.2/8
fa0/1 172.0.0.1/16
lo0 192.0.0.1/24
R3
fa0/1 192.168.0.2/24
R4
fa0/1 172.0.0.2/16
*Commands*
R1
eigrp 1
net 10.0.0.0
net 128.0.0.0
net 192.168.0.0
R2
eigrp 1
net 10.0.0.0
net 172.0.0.0
net 192.0.0.0
ip default-network 128.0.0.0
R3
eigrp 1
net 192.168.0.0
R4
eigrp 1
net 172.0.0.0
*Result*
R2 uses "128.0.0.0" as the default route.
On R4, 128.0.0.0 is marked as a candidate default, but gateway of last resort is not set.
On R3, 128.0.0.0 is not even marked as a candidate defaut.
R1
Gateway of last resort is not set
10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C 10.0.0.0/8 is directly connected, FastEthernet0/0
L 10.0.0.1/32 is directly connected, FastEthernet0/0
128.0.0.0/16 is variably subnetted, 2 subnets, 2 masks
C 128.0.0.0/16 is directly connected, Loopback0
L 128.0.0.1/32 is directly connected, Loopback0
D 172.0.0.0/16 [90/30720] via 10.0.0.2, 00:09:41, FastEthernet0/0
D 192.0.0.0/24 [90/156160] via 10.0.0.2, 00:50:24, FastEthernet0/0
192.168.0.0/24 is variably subnetted, 2 subnets, 2 masks
C 192.168.0.0/24 is directly connected, FastEthernet0/1
L 192.168.0.1/32 is directly connected, FastEthernet0/1
R2
Gateway of last resort is 10.0.0.1 to network 128.0.0.0
S* 0.0.0.0/0 [90/156160] via 10.0.0.1, FastEthernet0/0
10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C 10.0.0.0/8 is directly connected, FastEthernet0/0
L 10.0.0.2/32 is directly connected, FastEthernet0/0
D* 128.0.0.0/16 [90/156160] via 10.0.0.1, 00:19:04, FastEthernet0/0
172.0.0.0/16 is variably subnetted, 2 subnets, 2 masks
C 172.0.0.0/16 is directly connected, FastEthernet0/1
L 172.0.0.1/32 is directly connected, FastEthernet0/1
192.0.0.0/24 is variably subnetted, 2 subnets, 2 masks
C 192.0.0.0/24 is directly connected, Loopback0
L 192.0.0.1/32 is directly connected, Loopback0
D 192.168.0.0/24 [90/30720] via 10.0.0.1, 00:12:43, FastEthernet0/0
R3
Gateway of last resort is not set
D 10.0.0.0/8 [90/30720] via 192.168.0.1, 00:10:24, FastEthernet0/1
D 128.0.0.0/16 [90/156160] via 192.168.0.1, 00:10:24, FastEthernet0/1
D 172.0.0.0/16 [90/33280] via 192.168.0.1, 00:06:37, FastEthernet0/1
D 192.0.0.0/24 [90/158720] via 192.168.0.1, 00:10:24, FastEthernet0/1
192.168.0.0/24 is variably subnetted, 2 subnets, 2 masks
C 192.168.0.0/24 is directly connected, FastEthernet0/1
L 192.168.0.2/32 is directly connected, FastEthernet0/1
R4
Gateway of last resort is not set
D 10.0.0.0/8 [90/30720] via 172.0.0.1, 00:07:31, FastEthernet0/1
D* 128.0.0.0/16 [90/158720] via 172.0.0.1, 00:07:31, FastEthernet0/1
172.0.0.0/16 is variably subnetted, 2 subnets, 2 masks
C 172.0.0.0/16 is directly connected, FastEthernet0/1
L 172.0.0.2/32 is directly connected, FastEthernet0/1
D 192.0.0.0/24 [90/156160] via 172.0.0.1, 00:07:31, FastEthernet0/1
D 192.168.0.0/24 [90/33280] via 172.0.0.1, 00:07:31, FastEthernet0/1
CASE 4
*Topology*
R3 fa0/1 <---> fa0/1 R1 fa0/0 <---> fa0/0 R2 fa0/1 <---> fa0/1 R4
*Interfaces*
R1
fa0/0 10.0.0.1/8
fa0/1 192.168.0.1/24
lo0 128.0.0.1/16
R2
fa0/0 10.0.0.2/8
fa0/1 172.0.0.1/16
lo0 192.0.0.1/24
R3
fa0/1 192.168.0.2/24
R4
fa0/1 172.0.0.2/16
*Commands*
R1
eigrp 1
net 10.0.0.0
net 128.0.0.0
net 192.168.0.0
R2
eigrp 1
net 0.0.0.0
net 10.0.0.0
net 172.0.0.0
net 192.0.0.0
ip default-network 128.0.0.0
R3
eigrp 1
net 192.168.0.0
R4
eigrp 1
net 172.0.0.0
*Result*
"net 0.0.0.0" has no effect.
R1
Gateway of last resort is not set
10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C 10.0.0.0/8 is directly connected, FastEthernet0/0
L 10.0.0.1/32 is directly connected, FastEthernet0/0
128.0.0.0/16 is variably subnetted, 2 subnets, 2 masks
C 128.0.0.0/16 is directly connected, Loopback0
L 128.0.0.1/32 is directly connected, Loopback0
D 172.0.0.0/16 [90/30720] via 10.0.0.2, 00:09:41, FastEthernet0/0
D 192.0.0.0/24 [90/156160] via 10.0.0.2, 00:50:24, FastEthernet0/0
192.168.0.0/24 is variably subnetted, 2 subnets, 2 masks
C 192.168.0.0/24 is directly connected, FastEthernet0/1
L 192.168.0.1/32 is directly connected, FastEthernet0/1
R2
Gateway of last resort is 10.0.0.1 to network 128.0.0.0
S* 0.0.0.0/0 [90/156160] via 10.0.0.1, FastEthernet0/0
10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C 10.0.0.0/8 is directly connected, FastEthernet0/0
L 10.0.0.2/32 is directly connected, FastEthernet0/0
D* 128.0.0.0/16 [90/156160] via 10.0.0.1, 00:19:04, FastEthernet0/0
172.0.0.0/16 is variably subnetted, 2 subnets, 2 masks
C 172.0.0.0/16 is directly connected, FastEthernet0/1
L 172.0.0.1/32 is directly connected, FastEthernet0/1
192.0.0.0/24 is variably subnetted, 2 subnets, 2 masks
C 192.0.0.0/24 is directly connected, Loopback0
L 192.0.0.1/32 is directly connected, Loopback0
D 192.168.0.0/24 [90/30720] via 10.0.0.1, 00:12:43, FastEthernet0/0
R3
Gateway of last resort is not set
D 10.0.0.0/8 [90/30720] via 192.168.0.1, 00:10:24, FastEthernet0/1
D 128.0.0.0/16 [90/156160] via 192.168.0.1, 00:10:24, FastEthernet0/1
D 172.0.0.0/16 [90/33280] via 192.168.0.1, 00:06:37, FastEthernet0/1
D 192.0.0.0/24 [90/158720] via 192.168.0.1, 00:10:24, FastEthernet0/1
192.168.0.0/24 is variably subnetted, 2 subnets, 2 masks
C 192.168.0.0/24 is directly connected, FastEthernet0/1
L 192.168.0.2/32 is directly connected, FastEthernet0/1
R4
Gateway of last resort is not set
D 10.0.0.0/8 [90/30720] via 172.0.0.1, 00:07:31, FastEthernet0/1
D* 128.0.0.0/16 [90/158720] via 172.0.0.1, 00:07:31, FastEthernet0/1
172.0.0.0/16 is variably subnetted, 2 subnets, 2 masks
C 172.0.0.0/16 is directly connected, FastEthernet0/1
L 172.0.0.2/32 is directly connected, FastEthernet0/1
D 192.0.0.0/24 [90/156160] via 172.0.0.1, 00:07:31, FastEthernet0/1
D 192.168.0.0/24 [90/33280] via 172.0.0.1, 00:07:31, FastEthernet0/1
CASE 5
*Topology*
R3 fa0/1 <---> fa0/1 R1 fa0/0 <---> fa0/0 R2 fa0/1 <---> fa0/1 R4
*Interfaces*
R1
fa0/0 10.0.0.1/8
fa0/1 192.168.0.1/24
lo0 128.0.0.1/16
R2
fa0/0 10.0.0.2/8
fa0/1 172.0.0.1/16
lo0 192.0.0.1/24
R3
fa0/1 192.168.0.2/24
R4
fa0/1 172.0.0.2/16
*Commands*
R1
eigrp 1
net 10.0.0.0
net 128.0.0.0
net 192.168.0.0
R2
eigrp 1
net 10.0.0.0
net 172.0.0.0
net 192.0.0.0
redistribute static
ip default-network 128.0.0.0
R3
eigrp 1
net 192.168.0.0
R4
eigrp 1
net 172.0.0.0
*Result*
"redistribute static" has no effect.
R1
Gateway of last resort is not set
10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C 10.0.0.0/8 is directly connected, FastEthernet0/0
L 10.0.0.1/32 is directly connected, FastEthernet0/0
128.0.0.0/16 is variably subnetted, 2 subnets, 2 masks
C 128.0.0.0/16 is directly connected, Loopback0
L 128.0.0.1/32 is directly connected, Loopback0
D 172.0.0.0/16 [90/30720] via 10.0.0.2, 00:09:41, FastEthernet0/0
D 192.0.0.0/24 [90/156160] via 10.0.0.2, 00:50:24, FastEthernet0/0
192.168.0.0/24 is variably subnetted, 2 subnets, 2 masks
C 192.168.0.0/24 is directly connected, FastEthernet0/1
L 192.168.0.1/32 is directly connected, FastEthernet0/1
R2
Gateway of last resort is 10.0.0.1 to network 128.0.0.0
S* 0.0.0.0/0 [90/156160] via 10.0.0.1, FastEthernet0/0
10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C 10.0.0.0/8 is directly connected, FastEthernet0/0
L 10.0.0.2/32 is directly connected, FastEthernet0/0
D* 128.0.0.0/16 [90/156160] via 10.0.0.1, 00:19:04, FastEthernet0/0
172.0.0.0/16 is variably subnetted, 2 subnets, 2 masks
C 172.0.0.0/16 is directly connected, FastEthernet0/1
L 172.0.0.1/32 is directly connected, FastEthernet0/1
192.0.0.0/24 is variably subnetted, 2 subnets, 2 masks
C 192.0.0.0/24 is directly connected, Loopback0
L 192.0.0.1/32 is directly connected, Loopback0
D 192.168.0.0/24 [90/30720] via 10.0.0.1, 00:12:43, FastEthernet0/0
R3
Gateway of last resort is not set
D 10.0.0.0/8 [90/30720] via 192.168.0.1, 00:10:24, FastEthernet0/1
D 128.0.0.0/16 [90/156160] via 192.168.0.1, 00:10:24, FastEthernet0/1
D 172.0.0.0/16 [90/33280] via 192.168.0.1, 00:06:37, FastEthernet0/1
D 192.0.0.0/24 [90/158720] via 192.168.0.1, 00:10:24, FastEthernet0/1
192.168.0.0/24 is variably subnetted, 2 subnets, 2 masks
C 192.168.0.0/24 is directly connected, FastEthernet0/1
L 192.168.0.2/32 is directly connected, FastEthernet0/1
R4
Gateway of last resort is not set
D 10.0.0.0/8 [90/30720] via 172.0.0.1, 00:07:31, FastEthernet0/1
D* 128.0.0.0/16 [90/158720] via 172.0.0.1, 00:07:31, FastEthernet0/1
172.0.0.0/16 is variably subnetted, 2 subnets, 2 masks
C 172.0.0.0/16 is directly connected, FastEthernet0/1
L 172.0.0.2/32 is directly connected, FastEthernet0/1
D 192.0.0.0/24 [90/156160] via 172.0.0.1, 00:07:31, FastEthernet0/1
D 192.168.0.0/24 [90/33280] via 172.0.0.1, 00:07:31, FastEthernet0/1
Hi,
ReplyDeleteproblem is the IOS version. I have same problems in 15.1. Then I reload with 12.4 a default-network command works.
peter
Hi Peter,
ReplyDeleteThank you for the information. I redo the experiment with 12.4, and it worked like a charm :)