Static Routing (Part 2)









































Last updated









































Last updated
en
conf t
hostname 1do show ip int brief
int g0/1
ip add 192.168.1.254 255.255.255.0
desc ## to SW1 ##
no shut
# Just to see the result
do show ip briefint g0/0
ip add 192.168.12.1 255.255.255.0
desc ## to R2 ##
no shut
do show ip int briefen
conf t
hostname R2sho show ip int brief
ip g0/0
ip add 192.168.12.2 255.255.255.0
desc ## to R1 ##
no shut
do show int briefint g0/1
ip add 192.168.13.2 255.255.255.0
dsc ## to R3 ##
no shut
do show int briefip route 192.168.1.0 255.255.255.0 192.168.12.1
ip route 192.168.13.0 255.255.255.0 192.168.13.3
do show ip routeen
conf t
hostname R3int g0/0
ip add 192.168.13.3 255.255.255.0
desc ## to R2 ##
no shut
do show ip int briefint g0/1
ip add 192.168.3.254 255.255.255.0
desc ## to SW2 ##
no shut
do show ip int briefip route 192.168.1.0 255.255.255.0 192.168.13.2
do show ip routeen
conf t
do show running-config | include ip route
no ip route 192.168.3.0 255.255.255.0 192.168.12.3
do show ip routeip route 192.168.3.0 255.255.255.0 192.168.12.2
do show ip routeen
conf t
do show running-config | include ip route
# Delete the previous route which is the g0/0 WRONGGGG
no ip route 192.168.3.0 255.255.255.0 GigabitEthernet0/0
# Put the correct IP route g0/1
ip route 192.168.3.0 255.255.255.0 GigabitEthernet0/1en
conf t
do show ip int brief
int g0/0
# Put the CORRECT IP ADDRESS NOT 192.168.23.3
ip add 192.168.13.3 255.255.255.0
do show ip route