Difference between revisions of "IPv6: Quagga: Dua Router Static Routing"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
(9 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
R1: | R1: | ||
− | + | e0 - ke Internet | |
− | + | e1 - R2: e0 | |
− | + | e2 - LAN 192.168.1.0/24 | |
R2: | R2: | ||
− | + | e0 - R1: e1 | |
− | + | e1 - LAN 192.168.2.0/24 | |
Line 17: | Line 17: | ||
configure terminal | configure terminal | ||
ipv6 forwarding | ipv6 forwarding | ||
− | interface | + | interface eth0 |
− | ip address | + | ip address 192.168.122.100/24 |
− | ip | + | ip address 192.168.122.101/24 |
+ | ip address 192.168.122.102/24 | ||
no shutdown | no shutdown | ||
exit | exit | ||
− | interface | + | ipv6 forwarding |
− | ip address 172.16.1.1 | + | interface eth1 |
+ | ip address 172.16.1.1/30 | ||
ipv6 address 2001:172:16:1::1/64 | ipv6 address 2001:172:16:1::1/64 | ||
no shutdown | no shutdown | ||
exit | exit | ||
− | interface | + | ipv6 forwarding |
− | ip address 192.168.1.1 | + | interface eth2 |
+ | ip address 192.168.1.1/24 | ||
ipv6 address 2001:192:168:1::1/64 | ipv6 address 2001:192:168:1::1/64 | ||
no shutdown | no shutdown | ||
Line 41: | Line 44: | ||
config terminal | config terminal | ||
ipv6 forwarding | ipv6 forwarding | ||
− | interface | + | interface eth0 |
− | ip address 172.16.1.2 | + | ip address 172.16.1.2/30 |
ipv6 address 2001:172:16:1::2/64 | ipv6 address 2001:172:16:1::2/64 | ||
no shutdown | no shutdown | ||
exit | exit | ||
− | interface | + | ipv6 forwarding |
− | ip address 192.168.2.1 | + | interface eth1 |
+ | ip address 192.168.2.1/24 | ||
ipv6 address 2001:192:168:2::1/64 | ipv6 address 2001:192:168:2::1/64 | ||
no shutdown | no shutdown | ||
Line 77: | Line 81: | ||
==Setting Client== | ==Setting Client== | ||
+ | |||
+ | vPCS GNS3 tampaknya punya masalah dengan routing IPv6. Yang aman menggunakan OpenWRT :) .. | ||
+ | |||
LAN 1 Client: | LAN 1 Client: | ||
− | + | ifconfig eth1 192.168.1.100 netmask 255.255.255.0 | |
− | + | ifconfig eth1 2001:192:168:1::100/64 | |
+ | route add default gw 192.168.1.1 | ||
+ | route -A inet6 add ::/0 gw 2001:192:168:1::1 | ||
+ | route -n | ||
+ | route -n -A inet6 | ||
ping 2001:192:168:1::1 | ping 2001:192:168:1::1 | ||
ping 2001:192:168:2::1 | ping 2001:192:168:2::1 | ||
− | ping 2001:192:168:2:: | + | ping 2001:192:168:2::100 |
+ | ping 192.168.1.1 | ||
+ | ping 192.168.2.1 | ||
+ | ping 192.168.2.100 | ||
LAN 2 Client: | LAN 2 Client: | ||
− | + | ifconfig eth1 192.168.2.100 netmask 255.255.255.0 | |
− | + | ifconfig eth1 2001:192:168:2::100/64 | |
+ | route add default gw 192.168.2.1 | ||
+ | route -A inet6 add ::/0 gw 2001:192:168:2::1 | ||
+ | route -n | ||
+ | route -n -A inet6 | ||
ping 2001:192:168:2::1 | ping 2001:192:168:2::1 | ||
ping 2001:192:168:1::1 | ping 2001:192:168:1::1 | ||
− | ping 2001:192:168:1:: | + | ping 2001:192:168:1::100 |
+ | ping 192.168.2.1 | ||
+ | ping 192.168.1.1 | ||
+ | ping 192.168.1.100 | ||
==Pranala Menarik== | ==Pranala Menarik== | ||
Line 100: | Line 121: | ||
* [[TCP/IP: Advanced Routing]] | * [[TCP/IP: Advanced Routing]] | ||
* [[Quagga]] | * [[Quagga]] | ||
+ | * [[VyOS]] | ||
* [[Mikrotik]] | * [[Mikrotik]] | ||
* [[Cisco]] | * [[Cisco]] | ||
* [[Juniper]] | * [[Juniper]] | ||
− | * [[ | + | * [[BIRD1]] |
+ | * [[BIRD2]] | ||
* [[IPv6]] | * [[IPv6]] | ||
+ | |||
* [[TCP/IP: Advanced Routing]] | * [[TCP/IP: Advanced Routing]] | ||
* [[IPv6: Advanced Routing]] | * [[IPv6: Advanced Routing]] | ||
* [[IPv6: Quagga]] | * [[IPv6: Quagga]] | ||
+ | * [[IPv6: VyOS]] | ||
* [[IPv6: Mikrotik]] | * [[IPv6: Mikrotik]] | ||
* [[IPv6: Cisco]] | * [[IPv6: Cisco]] | ||
* [[IPv6: Juniper]] | * [[IPv6: Juniper]] | ||
− | * [[IPv6: | + | * [[IPv6: BIRD1]] |
+ | * [[IPv6: BIRD2]] | ||
* [[IPv6]] | * [[IPv6]] |
Latest revision as of 10:29, 21 January 2019
R1:
e0 - ke Internet e1 - R2: e0 e2 - LAN 192.168.1.0/24
R2:
e0 - R1: e1 e1 - LAN 192.168.2.0/24
R1:
vtysh configure terminal ipv6 forwarding interface eth0 ip address 192.168.122.100/24 ip address 192.168.122.101/24 ip address 192.168.122.102/24 no shutdown exit ipv6 forwarding interface eth1 ip address 172.16.1.1/30 ipv6 address 2001:172:16:1::1/64 no shutdown exit ipv6 forwarding interface eth2 ip address 192.168.1.1/24 ipv6 address 2001:192:168:1::1/64 no shutdown exit ip route 192.168.2.0/24 172.16.1.2 ipv6 route 2001:192:168:2::/64 2001:172:16:1::2 exit
R2:
vtysh config terminal ipv6 forwarding interface eth0 ip address 172.16.1.2/30 ipv6 address 2001:172:16:1::2/64 no shutdown exit ipv6 forwarding interface eth1 ip address 192.168.2.1/24 ipv6 address 2001:192:168:2::1/64 no shutdown exit ip route 192.168.1.0/24 172.16.1.1 ip route 0.0.0.0/0 172.16.1.1 ipv6 route 2001:192:168:1::/64 2001:172:16:1::1 exit
Test
R1:
ping 192.168.2.1 ping ipv6 2001:192:168:2::1 ping 2001:192:168:2::1
R2:
ping 192.168.1.1 ping ipv6 2001:192:168:1::1 ping 2001:192:168:1::1
Cek
show ipv6 route show ipv6 route static
Setting Client
vPCS GNS3 tampaknya punya masalah dengan routing IPv6. Yang aman menggunakan OpenWRT :) ..
LAN 1 Client:
ifconfig eth1 192.168.1.100 netmask 255.255.255.0 ifconfig eth1 2001:192:168:1::100/64 route add default gw 192.168.1.1 route -A inet6 add ::/0 gw 2001:192:168:1::1
route -n route -n -A inet6 ping 2001:192:168:1::1 ping 2001:192:168:2::1 ping 2001:192:168:2::100 ping 192.168.1.1 ping 192.168.2.1 ping 192.168.2.100
LAN 2 Client:
ifconfig eth1 192.168.2.100 netmask 255.255.255.0 ifconfig eth1 2001:192:168:2::100/64 route add default gw 192.168.2.1 route -A inet6 add ::/0 gw 2001:192:168:2::1
route -n route -n -A inet6 ping 2001:192:168:2::1 ping 2001:192:168:1::1 ping 2001:192:168:1::100 ping 192.168.2.1 ping 192.168.1.1 ping 192.168.1.100
Pranala Menarik