on FRR, distribute static/connected in OSPF; and disable OSPF/OSPFv3 on vpp0.e0 and vpp3.e1 respectively

This commit is contained in:
Pim van Pelt
2023-10-22 22:05:17 +00:00
parent 5d359744cf
commit e982fc72d0
13 changed files with 56 additions and 27 deletions

View File

@ -7,10 +7,6 @@ service integrated-vtysh-config
ip router-id 192.168.10.0 ip router-id 192.168.10.0
! !
interface e0 interface e0
ip ospf area 0
ip ospf network point-to-point
ipv6 ospf6 area 0
ipv6 ospf6 network point-to-point
mpls enable mpls enable
exit exit
! !
@ -30,9 +26,13 @@ interface loop0
exit exit
! !
router ospf router ospf
distribute connected
disrtibute static
exit exit
! !
router ospf6 router ospf6
distribute connected
disrtibute static
exit exit
! !
mpls ldp mpls ldp

View File

@ -30,9 +30,13 @@ interface loop0
exit exit
! !
router ospf router ospf
distribute connected
disrtibute static
exit exit
! !
router ospf6 router ospf6
distribute connected
disrtibute static
exit exit
! !
mpls ldp mpls ldp

View File

@ -30,9 +30,13 @@ interface loop0
exit exit
! !
router ospf router ospf
distribute connected
disrtibute static
exit exit
! !
router ospf6 router ospf6
distribute connected
disrtibute static
exit exit
! !
mpls ldp mpls ldp

View File

@ -15,11 +15,6 @@ interface e0
exit exit
! !
interface e1 interface e1
ip ospf area 0
ip ospf network point-to-point
ipv6 ospf6 area 0
ipv6 ospf6 network point-to-point
mpls enable
exit exit
! !
interface loop0 interface loop0
@ -30,9 +25,13 @@ interface loop0
exit exit
! !
router ospf router ospf
distribute connected
disrtibute static
exit exit
! !
router ospf6 router ospf6
distribute connected
disrtibute static
exit exit
! !
mpls ldp mpls ldp

View File

@ -7,10 +7,6 @@ service integrated-vtysh-config
ip router-id 192.168.11.0 ip router-id 192.168.11.0
! !
interface e0 interface e0
ip ospf area 0
ip ospf network point-to-point
ipv6 ospf6 area 0
ipv6 ospf6 network point-to-point
mpls enable mpls enable
exit exit
! !
@ -30,9 +26,13 @@ interface loop0
exit exit
! !
router ospf router ospf
distribute connected
disrtibute static
exit exit
! !
router ospf6 router ospf6
distribute connected
disrtibute static
exit exit
! !
mpls ldp mpls ldp

View File

@ -30,9 +30,13 @@ interface loop0
exit exit
! !
router ospf router ospf
distribute connected
disrtibute static
exit exit
! !
router ospf6 router ospf6
distribute connected
disrtibute static
exit exit
! !
mpls ldp mpls ldp

View File

@ -30,9 +30,13 @@ interface loop0
exit exit
! !
router ospf router ospf
distribute connected
disrtibute static
exit exit
! !
router ospf6 router ospf6
distribute connected
disrtibute static
exit exit
! !
mpls ldp mpls ldp

View File

@ -15,11 +15,6 @@ interface e0
exit exit
! !
interface e1 interface e1
ip ospf area 0
ip ospf network point-to-point
ipv6 ospf6 area 0
ipv6 ospf6 network point-to-point
mpls enable
exit exit
! !
interface loop0 interface loop0
@ -30,9 +25,13 @@ interface loop0
exit exit
! !
router ospf router ospf
distribute connected
disrtibute static
exit exit
! !
router ospf6 router ospf6
distribute connected
disrtibute static
exit exit
! !
mpls ldp mpls ldp

View File

@ -7,10 +7,6 @@ service integrated-vtysh-config
ip router-id 192.168.12.0 ip router-id 192.168.12.0
! !
interface e0 interface e0
ip ospf area 0
ip ospf network point-to-point
ipv6 ospf6 area 0
ipv6 ospf6 network point-to-point
mpls enable mpls enable
exit exit
! !
@ -30,9 +26,13 @@ interface loop0
exit exit
! !
router ospf router ospf
distribute connected
disrtibute static
exit exit
! !
router ospf6 router ospf6
distribute connected
disrtibute static
exit exit
! !
mpls ldp mpls ldp

View File

@ -30,9 +30,13 @@ interface loop0
exit exit
! !
router ospf router ospf
distribute connected
disrtibute static
exit exit
! !
router ospf6 router ospf6
distribute connected
disrtibute static
exit exit
! !
mpls ldp mpls ldp

View File

@ -30,9 +30,13 @@ interface loop0
exit exit
! !
router ospf router ospf
distribute connected
disrtibute static
exit exit
! !
router ospf6 router ospf6
distribute connected
disrtibute static
exit exit
! !
mpls ldp mpls ldp

View File

@ -15,11 +15,6 @@ interface e0
exit exit
! !
interface e1 interface e1
ip ospf area 0
ip ospf network point-to-point
ipv6 ospf6 area 0
ipv6 ospf6 network point-to-point
mpls enable
exit exit
! !
interface loop0 interface loop0
@ -30,9 +25,13 @@ interface loop0
exit exit
! !
router ospf router ospf
distribute connected
disrtibute static
exit exit
! !
router ospf6 router ospf6
distribute connected
disrtibute static
exit exit
! !
mpls ldp mpls ldp

View File

@ -9,19 +9,23 @@ service integrated-vtysh-config
ip router-id {{ loop4 }} ip router-id {{ loop4 }}
! !
interface e0 interface e0
{% if node.id > 0 %}
ip ospf area 0 ip ospf area 0
ip ospf network point-to-point ip ospf network point-to-point
ipv6 ospf6 area 0 ipv6 ospf6 area 0
ipv6 ospf6 network point-to-point ipv6 ospf6 network point-to-point
{% endif %}
mpls enable mpls enable
exit exit
! !
interface e1 interface e1
{% if node.id < 3 %}
ip ospf area 0 ip ospf area 0
ip ospf network point-to-point ip ospf network point-to-point
ipv6 ospf6 area 0 ipv6 ospf6 area 0
ipv6 ospf6 network point-to-point ipv6 ospf6 network point-to-point
mpls enable mpls enable
{% endif %}
exit exit
! !
interface loop0 interface loop0
@ -32,9 +36,13 @@ interface loop0
exit exit
! !
router ospf router ospf
distribute connected
disrtibute static
exit exit
! !
router ospf6 router ospf6
distribute connected
disrtibute static
exit exit
! !
mpls ldp mpls ldp