Difference between revisions of "IPv6: Quagga: Dua Router Static Routing"

From OnnoWiki
Jump to navigation Jump to search
Line 18: Line 18:
 
   ipv6 forwarding  
 
   ipv6 forwarding  
 
   interface ether1
 
   interface ether1
     ip address dhcp
+
     ip address 192.168.122.100/24
     ip dhcp client request
+
     ip address 192.168.122.101/24
 +
    ip address 192.168.122.102/24
 
     no shutdown
 
     no shutdown
 
     exit
 
     exit
 
   interface ether2
 
   interface ether2
     ip address 172.16.1.1 255.255.255.252
+
     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 ether3
 
   interface ether3
     ip address 192.168.1.1 255.255.255.0
+
     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 42: Line 43:
 
   ipv6 forwarding
 
   ipv6 forwarding
 
   interface ether1
 
   interface ether1
     ip address 172.16.1.2 255.255.255.252
+
     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 ether2
 
   interface ether2
     ip address 192.168.2.1 255.255.255.0
+
     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

Revision as of 08:05, 6 January 2019

SR1.png


R1:

ether1 - ke Internet
ether2 - R2: ether1
ether3 - LAN

R2:

ether1 - R1: ether2
ether2 - LAN


R1:

vtysh
configure terminal
  ipv6 forwarding 
  interface ether1
    ip address 192.168.122.100/24
    ip address 192.168.122.101/24
    ip address 192.168.122.102/24
    no shutdown
    exit
  interface ether2
    ip address 172.16.1.1/30
    ipv6 address 2001:172:16:1::1/64
    no shutdown
    exit
  interface ether3
    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 ether1
    ip address 172.16.1.2/30
    ipv6 address 2001:172:16:1::2/64
    no shutdown
    exit
  interface ether2
    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

LAN 1 Client:

ip 192.168.1.2/24 192.168.1.1
ip 2001:192:168:1::200/64 2001:192:168:1::1
ping 2001:192:168:1::1
ping 2001:192:168:2::1
ping 2001:192:168:2::200

LAN 2 Client:

ip 192.168.2.2/24 192.168.2.1
ip 2001:192:168:2::200/64 2001:192:168:2::1
ping 2001:192:168:2::1
ping 2001:192:168:1::1
ping 2001:192:168:1::200

Pranala Menarik