Difference between revisions of "Cisco: Tunnel IPv6"

From OnnoWiki
Jump to navigation Jump to search
(Created page with "R1 enable configure terminal interface Ethernet 1/0 no shutdown ip address 12.12.12.1 255.255.255.0 exit interface Ethernet 1/1 no shutdown ip address 13.13.13.1 255.255.25...")
 
Line 59: Line 59:
 
router ospf 1  
 
router ospf 1  
 
network 13.13.13.0 0.0.0.255 area 0  
 
network 13.13.13.0 0.0.0.255 area 0  
 +
exit
 +
 +
 +
 +
 +
 +
Buat tunnel
 +
 +
R2
 +
interface tunnel 0
 +
no shutdown
 +
tunnel source 12.12.12.2
 +
tunnel destination 13.13.13.3
 +
exit
 +
 +
R3
 +
interface tunnel 0
 +
no shutdown
 +
tunnel source 13.13.13.3
 +
tunnel destination 12.12.12.2
 
exit
 
exit

Revision as of 18:13, 27 December 2023

R1 enable configure terminal interface Ethernet 1/0 no shutdown ip address 12.12.12.1 255.255.255.0 exit interface Ethernet 1/1 no shutdown ip address 13.13.13.1 255.255.255.0 exit


R2 enable configure terminal interface Ethernet 1/0 no shutdown ip address 12.12.12.2 255.255.255.0 exit interface Ethernet 1/1 no shutdown ipv6 address 2001:1:2:3::1/64 exit


R3 enable configure terminal interface Ethernet 1/0 no shutdown ip address 13.13.13.3 255.255.255.0 exit interface Ethernet 1/1 no shutdown ipv6 address 2001:4:5:6::1/64 exit


check do ping

Aktifkan OSPF di R1, R2, R3 agar IPv4 bisa komunikasi

R1 router ospf 1 network 12.12.12.0 0.0.0.255 area 0 network 13.13.13.0 0.0.0.255 area 0 exit

R2 router ospf 1 network 12.12.12.0 0.0.0.255 area 0 exit

R3 router ospf 1 network 13.13.13.0 0.0.0.255 area 0 exit



Buat tunnel

R2 interface tunnel 0 no shutdown tunnel source 12.12.12.2 tunnel destination 13.13.13.3 exit

R3 interface tunnel 0 no shutdown tunnel source 13.13.13.3 tunnel destination 12.12.12.2 exit