Difference between revisions of "Quagga: Dua Router Static Routing"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
Line 18: | Line 18: | ||
! | ! | ||
! NAT GNS3 gw 192.168.122.1 | ! NAT GNS3 gw 192.168.122.1 | ||
− | interface | + | interface eth1 |
ip address 192.168.122.100 255.255.255.0 | ip address 192.168.122.100 255.255.255.0 | ||
ip address 192.168.122.101 255.255.255.0 secondary | ip address 192.168.122.101 255.255.255.0 secondary | ||
ip address 192.168.122.102 255.255.255.0 secondary | ip address 192.168.122.102 255.255.255.0 secondary | ||
− | |||
no shutdown | no shutdown | ||
ip route 0.0.0.0 0.0.0.0 192.168.122.1 | ip route 0.0.0.0 0.0.0.0 192.168.122.1 | ||
− | + | interface eth2 | |
− | |||
− | interface | ||
ip address 172.16.1.1 255.255.255.252 | ip address 172.16.1.1 255.255.255.252 | ||
− | |||
− | |||
exit | exit | ||
− | interface | + | interface eth3 |
ip address 192.168.1.1 255.255.255.0 | ip address 192.168.1.1 255.255.255.0 | ||
− | |||
no shutdown | no shutdown | ||
exit | exit | ||
ip route 192.168.2.0 255.255.255.0 172.16.1.2 | ip route 192.168.2.0 255.255.255.0 172.16.1.2 | ||
− | |||
− | |||
− | |||
− | |||
− | |||
exit | exit | ||
− | |||
R2: | R2: | ||
Line 50: | Line 38: | ||
enable | enable | ||
config terminal | config terminal | ||
− | interface | + | interface eth1 |
ip address 172.16.1.2 255.255.255.252 | ip address 172.16.1.2 255.255.255.252 | ||
no shutdown | no shutdown | ||
exit | exit | ||
− | interface | + | interface eth2 |
ip address 192.168.2.1 255.255.255.0 | ip address 192.168.2.1 255.255.255.0 | ||
no shutdown | no shutdown | ||
Line 61: | Line 49: | ||
ip route 0.0.0.0 0.0.0.0 172.16.1.1 | ip route 0.0.0.0 0.0.0.0 172.16.1.1 | ||
exit | exit | ||
− | |||
− | |||
==Test== | ==Test== |
Revision as of 11:24, 24 December 2018
R1:
eth1 - ke Internet eth2 - R2: eth1 eth3 - LAN
R2:
eth1 - R1: eth2 eth2 - LAN
R1:
enable configure terminal ! ! NAT GNS3 gw 192.168.122.1 interface eth1 ip address 192.168.122.100 255.255.255.0 ip address 192.168.122.101 255.255.255.0 secondary ip address 192.168.122.102 255.255.255.0 secondary no shutdown ip route 0.0.0.0 0.0.0.0 192.168.122.1 interface eth2 ip address 172.16.1.1 255.255.255.252 exit interface eth3 ip address 192.168.1.1 255.255.255.0 no shutdown exit ip route 192.168.2.0 255.255.255.0 172.16.1.2 exit
R2:
enable config terminal interface eth1 ip address 172.16.1.2 255.255.255.252 no shutdown exit interface eth2 ip address 192.168.2.1 255.255.255.0 no shutdown exit ip route 192.168.1.0 255.255.255.0 172.16.1.1 ip route 0.0.0.0 0.0.0.0 172.16.1.1 exit
Test
R1:
ping 192.168.2.1
R2:
ping 192.168.1.1
Setting Client
LAN 1 Client:
ip 192.168.1.2 gw 192.168.1.1
LAN 2 Client:
ip 192.168.2.2 gw 192.168.2.1