Aditya.Hananto.net

Aditya.Hananto.net

Knowledge Sharing About Networking

Aditya.Hananto.net RSS Feed
 
 
 
 

Konfigurasi IPv6 routing RIPng di Cisco router

Konfigurasi Router-JKT:
# conf t
(config)# ipv6 unicast-routing
(config)# ipv6 router rip RIP-JKT

(config)# int s0/1
(config-if)# description *** TO Router-SBY ***
(config-if)# ipv6 address 2002:10:1:2::1/64        –> static manual IPv6 address assignment
(config-if)# ipv6 rip RIP-JKT enable        –> mengaktifkan routing RIP di interface
(config-if)# no shutdown

(config-if)# int s0/0
(config-if)# description *** TO Router-MDN ***
(config-if)# ipv6 address 2002:10:1:4::1/64
(config-if)# ipv6 rip RIP-JKT enable
(config-if)# no shutdown

(config-if)# int f0/0
(config-if)# description *** TO LAN JKT ***
(config-if)# ipv6 address 2002:10:1:3::/64 eui-64    –> static eui-64 IPv6 address assignment
(config-if)# ipv6 rip RIP-JKT enable
(config-if)# no shutdown
(config-if)# end

Konfigurasi Router-SBY:
# conf t
(config)# ipv6 unicast-routing
(config)# ipv6 router rip RIP-SBY

(config)# int s0/1
(config-if)# description *** TO Router-JKT ***
(config-if)# ipv6 address 2002:10:1:2::1/64
(config-if)# ipv6 rip RIP-SBY enable
(config-if)# no shutdown

(config-if)# int f0/0
(config-if)# description *** TO LAN SBY ***
(config-if)# ipv6 address 2002:10:1:1::/64 eui-64
(config-if)# ipv6 rip RIP-SBY enable
(config-if)# no shutdown
(config-if)# end

Konfigurasi Router-MDN:
# conf t
(config)# ipv6 unicast-routing
(config-if)# ipv6 rip RIP-MDN enable

(config)# int s1/0
(config-if)# description *** TO Router-JKT ***
(config-if)# ipv6 address 2002:10:1:4::2/64
(config-if)# ipv6 rip RIP-MDN enable
(config-if)# no shutdown

(config-if)# int f0/0
(config-if)# description *** TO LAN MDN ***
(config-if)# ipv6 address 2002:10:1:5::/64 eui-64
(config-if)# ipv6 rip RIP-MDN enable
(config-if)# no shutdown
(config-if)# end

Verifikasi konfigurasi IPv6:
# show ipv6 int brief
# show ipv6 protocols
# show ipv6 route


Quote of The Day:
“Hanya orang-orang gila yang mengharapkan hasil berbeda tetapi menggunakan cara-cara yang sama.” ~Albert Einstein

Leave a Reply