Quagga: Dua Router Static Routing: Difference between revisions
From OnnoCenterWiki
Jump to navigationJump to search
Onnowpurbo (talk | contribs) Created page with "center|400px|thumb R1: Ethernet1/1 - ke Internet Ethernet1/2 - R2: Ethernet 1/1 Ethernet1/3 - LAN R2: Ethernet1/1 - R1: Ethernet1/2 Ethernet1/2 - LAN..." |
Onnowpurbo (talk | contribs) |
||
| (5 intermediate revisions by the same user not shown) | |||
| Line 3: | Line 3: | ||
R1: | R1: | ||
eth1 - ke Internet | |||
eth2 - R2: eth1 | |||
eth3 - LAN | |||
R2: | R2: | ||
eth1 - R1: eth2 | |||
eth2 - LAN | |||
R1: | R1: | ||
vtysh | |||
configure terminal | configure terminal | ||
interface eth1 | |||
ip address 192.168.122.100/24 | |||
ip address 192.168.122.101/24 | |||
ip address 192.168.122.102/24 | |||
no shutdown | |||
ip route 0.0.0.0 0.0.0.0 192.168.122.1 | |||
interface eth2 | |||
ip address 172.16.1.1/30 | |||
exit | |||
interface eth3 | |||
ip address 192.168.1.1/24 | |||
exit | exit | ||
ip route 192.168.2.0 255.255.255.0 172.16.1.2 | |||
exit | |||
R2: | R2: | ||
vtysh | |||
config terminal | config terminal | ||
interface eth1 | |||
ip address 172.16.1.2/30 | |||
exit | |||
interface eth2 | |||
ip address 192.168.2.1/24 | |||
exit | 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== | ==Test== | ||
| Line 92: | Line 75: | ||
==Pranala Menarik== | ==Pranala Menarik== | ||
* [[TCP/IP: Advanced Routing]] | |||
* [[Quagga]] | |||
* [[Mikrotik]] | |||
* [[Cisco]] | * [[Cisco]] | ||
* [[ | * [[Juniper]] | ||
* [[BIRD: Routing]] | |||
* [[IPv6]] | |||
Latest revision as of 11:02, 28 December 2018

R1:
eth1 - ke Internet eth2 - R2: eth1 eth3 - LAN
R2:
eth1 - R1: eth2 eth2 - LAN
R1:
vtysh configure terminal
interface eth1 ip address 192.168.122.100/24 ip address 192.168.122.101/24 ip address 192.168.122.102/24 no shutdown ip route 0.0.0.0 0.0.0.0 192.168.122.1 interface eth2 ip address 172.16.1.1/30 exit interface eth3 ip address 192.168.1.1/24 exit ip route 192.168.2.0 255.255.255.0 172.16.1.2 exit
R2:
vtysh config terminal interface eth1 ip address 172.16.1.2/30 exit interface eth2 ip address 192.168.2.1/24 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