Konfigurasi IPv6

Konfigurasi IPv6

Task 1: Konfigurasi Dual-Stack
Router-SBY:
(config)# ipv6 unicast-routing

(config)# int s0/1
(config-if)# ipv6 address 2001:10:1:2::2/64            à static manual address assignment

(config)# int f0/0
(config-if)# ipv6 address 2001:10:1:1::/64 eui-64                à static eui-64 address assignment
(config-if)# end

Router-MDN:
(config)# ipv6 unicast-routing 
(config)# int s1/0
(config-if)# ipv6 address 2001:10:1:4::2/64 
(config)# int f0/0
(config-if)# ipv6 address 2001:10:1:5::/64 eui-64
(config-if)# end

Verify:
# sh ipv6 int brief
# sh ipv6 int
# sh ipv6 route 

Task 2: Konfigurasi RIPng
Router-SBY:
(config)# ipv6 router rip SBY 
(config)# int s0/1
(config-if)# ipv6 rip SBY enable 
(config)# int f0/0
(config-if)# ipv6 rip SBY enable
(config-if)# end

Router-MDN:
(config)# ipv6 router rip MDN
 (config)# int s1/0
(config-if)# ipv6 rip MDN enable
 (config)# int f0/0
(config-if)# ipv6 rip MDN enable
(config-if)# end

Verify:
# sh ipv6 rip
# sh ipv6 protocol
# sh ipv6 route

Task 3: Menghapus konfigurasi IPv6 & RIPng
Router-SBY:
(config)# int s0/1
 (config-if)# no ipv6 address 
(config)# int f0/0
(config-if)# no ipv6 address
(config-if)# exit 
(config)# no ipv6 router rip SBY
(config)# no ipv6 unicast-routing
(config)# end 
# copy run start

0 Comment for "Konfigurasi IPv6"

Back To Top