Aditya.Hananto.net

Aditya.Hananto.net

Knowledge Sharing About Networking

Aditya.Hananto.net RSS Feed
 
 
 
 

Posts tagged routing

Konfigurasi IPv6 routing OSPFv3 di Cisco router

Konfigurasi Router-JKT:
# conf t
(config)# ipv6 unicast-routing
(config)# ipv6 router ospf 10
(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 ospf 10 area 0           –> mengaktifkan routing OSPF 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 ospf 10 area [...]

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 [...]

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 [...]

Konfigurasi multi-area OSPF di Router Cisco

Konfigurasi OSPF di Router-JKT:
(config)# interface loopback 0
(config-if)# ip address 10.0.255.1 255.255.255.255      ==> sebagai router-id OSPF
(config-if)# no shutdown
(config-if)# router ospf 1                                                ==> menggunakan process-id 1
(config-router)# network 10.0.255.1 0.0.0.0 area 0
(config-router)# network 10.0.0.0   0.0.0.3 area 0
(config-router)# network 10.0.0.4   0.0.0.3 area 0
(config-router)# end
Konfigurasi OSPF di Router-SBY:
(config)# interface loopback 0
(config-if)# ip address 10.0.255.3 255.255.255.255
(config-if)# no [...]

Konfigurasi single-area OSPF di Cisco Router

Konfigurasi OSPF di Router-JKT:
(config)# interface loopback 0
(config-if)# ip address 1.1.1.1 255.255.255.255  ==> sebagai router-id OSPF
(config-if)# no shutdown
(config-if)# router ospf 1      ==> menggunakan process-id 1
(config-router)# network 1.1.1.1    0.0.0.0 area 0
(config-router)# network 10.1.2.1   0.0.0.0 area 0
(config-router)# network 172.16.1.1 0.0.0.0 area 0
(config-router)# network 10.1.3.1   0.0.0.0 area 0
(config-router)# passive-interface f0/0    ==> interface yg tidak mengirim paket OSPF (hello, update, [...]