Aditya.Hananto.net

Aditya.Hananto.net

Knowledge Sharing About Networking

Aditya.Hananto.net RSS Feed
 
 
 
 

Konfigurasi dasar IPv6 & static route di Cisco Router

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

(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)# 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)# 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)# no shutdown
(config-if)# exit

(config)# ipv6 route 2002:10:1:1::/64 s0/1    –> konfigurasi IPv6 static route
(config)# ipv6 route 2002:10:1:5::/64 s0/0
(config)# end

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

(config)# int s0/1
(config-if)# description *** TO Router-JKT ***
(config-if)# ipv6 address 2002:10:1:2::1/64
(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)# no shutdown
(config-if)# exit

(config)# ipv6 route :: s0/1    –> konfigurasi IPv6 default route
(config)# end

Konfigurasi Router-MDN:
# conf t
(config)# ipv6 unicast-routing

(config)# int s1/0
(config-if)# description *** TO Router-JKT ***
(config-if)# ipv6 address 2002:10:1:4::2/64
(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)# no shutdown
(config-if)# exit

(config)# ipv6 route :: s1/0
(config)# end

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

Router-JKT:
# ping 2002:10:1:2::2    –> ping ke s0/1 Router-SBY
# ping 2002:10:1:4::2    –> ping ke s1/0 Router-MDN


Quote of The Day:
“You don’t have to do more than you are Paid for, but you can push yourself ahead mighty fast by doing it voluntarily.” ~Tetsuya Kitahata

Leave a Reply