mirror_frr/tests/topotests/ospf_p2mp/r4/frr-p2mp.conf
Acee Lindem 58e623714b ospfd: Implement non-broadcast support for point-to-multipoint networks
This extends non-broadcast support to point-to-multipoint networks.
Neighbors will be explicitly configured and polled in lieu of multicast
dicovery. Toptotests and documentation updates are included.

Additionally, the ospf neighbor commands have been greatly simplified taking
advantage of DEFPY() capabilities.

The AllOSPFRouters (224.0.0.5) is still joined for non-broadcast networks
since it is joined for NBMA networks. It seems this could be removed but
it should done be in a separate commit.

Signed-off-by: Acee Lindem <acee@lindem.com>
2024-04-02 21:34:29 +00:00

26 lines
439 B
Plaintext

!
hostname r4
password zebra
log file /tmp/r1-frr.log
ip forwarding
!
interface r4-eth0
ip address 10.1.0.4/24
ip ospf network point-to-multipoint
ip ospf hello-interval 1
ip ospf dead-interval 30
!
!
interface r4-eth1
ip address 10.1.4.4/24
ip ospf network broadcast
ip ospf hello-interval 1
ip ospf dead-interval 30
!
!
router ospf
ospf router-id 4.4.4.4
distance 20
network 10.1.0.0/24 area 0
network 10.1.4.0/24 area 0