Difference between revisions of "Cisco: Tunnel IPv6"
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
Line 1: | Line 1: | ||
+ | Tool yang digunakan | ||
+ | * GNS3 | ||
+ | * 3 Router Cisco C7200 | ||
+ | * 1 Kali Linux | ||
+ | * 1 Virtual PC | ||
+ | |||
+ | |||
+ | |||
R1 | R1 | ||
enable | enable |
Revision as of 07:05, 28 December 2023
Tool yang digunakan
- GNS3
- 3 Router Cisco C7200
- 1 Kali Linux
- 1 Virtual PC
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
R2
interface tunnel 0
ipv6 enable
exit
ipv6 unicast-routing
ipv6 router eigrp 1
eigrp router-id 2.2.2.2
no shutdown
exit
interface tunnel 0
ipv6 eigrp 1
exit
interface Ethernet 1/1
ipv6 eigrp 1
exit
R3
interface tunnel 0
ipv6 enable
exit
ipv6 unicast-routing
ipv6 router eigrp 1
eigrp router-id 3.3.3.3
no shutdown
exit
interface tunnel 0
ipv6 eigrp 1
exit
interface Ethernet 1/1
ipv6 eigrp 1
exit
do ping
protocol[ip]: ipv6
Target IPv6 address: 2001:1:2:3::1