Difference between revisions of "IPv6: Quagga: Dua Router Static Routing"
		
		
		
		
		
		Jump to navigation
		Jump to search
		
				
		
		
	
| Onnowpurbo (talk | contribs) | Onnowpurbo (talk | contribs)  | ||
| Line 23: | Line 23: | ||
|       no shutdown |       no shutdown | ||
|       exit |       exit | ||
| + |    ipv6 forwarding  | ||
|     interface eth1 |     interface eth1 | ||
|       ip address 172.16.1.1/30 |       ip address 172.16.1.1/30 | ||
| Line 28: | Line 29: | ||
|       no shutdown |       no shutdown | ||
|       exit |       exit | ||
| + |    ipv6 forwarding  | ||
|     interface eth2 |     interface eth2 | ||
|       ip address 192.168.1.1/24 |       ip address 192.168.1.1/24 | ||
| Line 47: | Line 49: | ||
|       no shutdown |       no shutdown | ||
|       exit |       exit | ||
| + |    ipv6 forwarding | ||
|     interface eth1 |     interface eth1 | ||
|       ip address 192.168.2.1/24 |       ip address 192.168.2.1/24 | ||
Revision as of 08:46, 6 January 2019
R1:
e0 - ke Internet e1 - R2: ether1 e2 - LAN
R2:
e0 - R1: e2 e1 - LAN
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
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
