Difference between revisions of "IPv6: Mikrotik: OSPF"

From OnnoWiki
Jump to navigation Jump to search
(Created page with " routing ospf-v3 interface add interface=ether1 area=backbone ==Pranala Menarik== * TCP/IP: Advanced Routing * Quagga * Mikrotik * Cisco * Juniper * [...")
 
 
(4 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
  routing ospf-v3 interface add interface=ether1 area=backbone
 
  routing ospf-v3 interface add interface=ether1 area=backbone
  
 +
 +
/routing ospf-v3 export
 +
/routing ospf-v3 instance
 +
    set [ find default=yes ] disabled=no redistribute-connected=as-type-1 router-id=192.168.110.251
 +
/routing ospf-v3 interface
 +
    add area=backbone disabled=no interface="eth2 -  crs1 to crs2"
 +
 +
 +
 +
#Lan2
 +
/ipv6 address
 +
  add address=2001:470:dcd9:2::1/64 advertise=yes interface=ether3
 +
/routing ospf-v3 instance
 +
  set default router-id=10.10.10.2 redistribute-connected=as-type-1
 +
/routing ospf-v3 interface
 +
  add area=backbone interface=ether1
 +
 +
 +
 +
==Redistribute==
 +
 +
redistribute-bgp=[as-type-1 | as-type-2 | no]
 +
redistribute-other-ospf=[as-type-1 | as-type-2 | no]
 +
redistribute-static=[as-type-1 | as-type-2 | no]
 +
redistribute-connected=[as-type-1 | as-type-2 | no]
 +
redistribute-rip=[as-type-1 | as-type-2 | no]
 +
 +
==Referensi==
 +
 +
* https://wiki.mikrotik.com/wiki/Manual:IPv6_Overview#OSPF
  
  

Latest revision as of 16:00, 7 January 2019

routing ospf-v3 interface add interface=ether1 area=backbone


/routing ospf-v3 export
/routing ospf-v3 instance
   set [ find default=yes ] disabled=no redistribute-connected=as-type-1 router-id=192.168.110.251
/routing ospf-v3 interface
   add area=backbone disabled=no interface="eth2 -  crs1 to crs2"


#Lan2
/ipv6 address
  add address=2001:470:dcd9:2::1/64 advertise=yes interface=ether3
/routing ospf-v3 instance
  set default router-id=10.10.10.2 redistribute-connected=as-type-1
/routing ospf-v3 interface
  add area=backbone interface=ether1


Redistribute

redistribute-bgp=[as-type-1 | as-type-2 | no]
redistribute-other-ospf=[as-type-1 | as-type-2 | no]
redistribute-static=[as-type-1 | as-type-2 | no]
redistribute-connected=[as-type-1 | as-type-2 | no]
redistribute-rip=[as-type-1 | as-type-2 | no]

Referensi


Pranala Menarik