Difference between revisions of "IPv6: Cisco: OSPF Howto"

From OnnoWiki
Jump to navigation Jump to search
(Created page with "center|200px|thumb ==Stub Router== ipv6 unicast-routing ipv6 cef ! interface serial 0/0 no ip address ipv6 enable ipv6 addres...")
 
Line 1: Line 1:
 +
enable
 +
configure terminal
 +
  router ospfv3 [process-id]
 +
  area area-ID [default-cost | nssa | stub]
 +
  auto-cost reference-bandwidth Mbps
 +
  bfd all-interfaces
 +
  default {area area-ID [range ipv6-prefix | virtual-link router-id]} [default-information originate [always | metric | metric-type | route-map] | distance | distribute-list prefix-list prefix-list-name {in | out} [interface] | maximum-paths paths | redistribute protocol | summary-prefix ipv6-prefix]
 +
  ignore lsa mospf
 +
  interface-id snmp-if-index
 +
  log-adjacency-changes [detail]
 +
  passive-interface [default | interface-type interface-number]
 +
  queue-depth {hello | update} {queue-size | unlimited}
 +
  router-id router-id
 +
 +
 +
 +
==Contoh==
 +
 +
 
[[File:Ospfv3-config-guide-01.gif|center|200px|thumb]]
 
[[File:Ospfv3-config-guide-01.gif|center|200px|thumb]]
  

Revision as of 17:10, 6 January 2019

enable
configure terminal
  router ospfv3 [process-id]
  area area-ID [default-cost | nssa | stub]
  auto-cost reference-bandwidth Mbps
  bfd all-interfaces
  default {area area-ID [range ipv6-prefix | virtual-link router-id]} [default-information originate [always | metric | metric-type | route-map] | distance | distribute-list prefix-list prefix-list-name {in | out} [interface] | maximum-paths paths | redistribute protocol | summary-prefix ipv6-prefix]
  ignore lsa mospf
  interface-id snmp-if-index
  log-adjacency-changes [detail]
  passive-interface [default | interface-type interface-number]
  queue-depth {hello | update} {queue-size | unlimited}
  router-id router-id 


Contoh

Ospfv3-config-guide-01.gif


Stub Router

ipv6 unicast-routing
ipv6 cef
!
interface serial 0/0
 no ip address
 ipv6 enable
 ipv6 address 2001:ABAB::/64 eui-64
 ipv6 ospf 1 area 2
!
ipv6 router ospf 1
 router-id 3.3.3.3
 area 2 stub
!


ABR1 Router

ipv6 unicast-routing
ipv6 cef
!
interface FastEthernet0/0
 no ip address
 speed auto
 ipv6 address 2003::1/124
 ipv6 enable
 ipv6 ospf 1 area 0
!
interface Serial0/0
 no ip address
 ipv6 address 2002:ABAB::/64 eui-64
 ipv6 enable
 ipv6 ospf 1 area 2
!
ipv6 router ospf 1
 router-id 1.1.1.1
 area 2 stub no-summary
!

ASBR Router

ipv6 unicast-routing
ipv6 cef
!
interface FastEthernet0/0
 no ip address
 ipv6 address 2003::2/124
 ipv6 enable
 ipv6 ospf 1 area 0
!
interface Serial0/0
 no ip address
 ipv6 address 2003::1:1/124
 ipv6 enable
 ipv6 rip EXT enable
!
ipv6 router ospf 1
 router-id 2.2.2.2
 default-metric 25
 redistribute rip EXT metric-type 1 include-connected
!
ipv6 router rip EXT
 redistribute ospf 1 match internal external 1 external 2 include-connected
!

External Router

ipv6 unicast-routing
ipv6 cef
!
interface Loopback0
 no ip address
 ipv6 address 2004:ABAB::/64 eui-64
 ipv6 enable
 ipv6 rip EXT enable
!
interface Serial0/0
 no ip address
 ipv6 address 2003::1:2/124
 ipv6 enable
 ipv6 rip EXT enable
!
ipv6 router rip EXT



Pranala Menarik