diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:16:35 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:16:35 +0000 |
commit | e2bbf175a2184bd76f6c54ccf8456babeb1a46fc (patch) | |
tree | f0b76550d6e6f500ada964a3a4ee933a45e5a6f1 /tests/topotests/ospf_prefix_suppression/r2/frr.conf | |
parent | Initial commit. (diff) | |
download | frr-e2bbf175a2184bd76f6c54ccf8456babeb1a46fc.tar.xz frr-e2bbf175a2184bd76f6c54ccf8456babeb1a46fc.zip |
Adding upstream version 9.1.upstream/9.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/topotests/ospf_prefix_suppression/r2/frr.conf')
-rw-r--r-- | tests/topotests/ospf_prefix_suppression/r2/frr.conf | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/tests/topotests/ospf_prefix_suppression/r2/frr.conf b/tests/topotests/ospf_prefix_suppression/r2/frr.conf new file mode 100644 index 0000000..68390f1 --- /dev/null +++ b/tests/topotests/ospf_prefix_suppression/r2/frr.conf @@ -0,0 +1,57 @@ +! +hostname r2 +password zebra +log file /tmp/r1-frr.log +ip forwarding +! +interface r2-eth0 + ip address 10.1.1.2/24 + ip ospf network broadcast + ip ospf hello-interval 1 + ip ospf dead-interval 30 +! +interface r2-eth1 + ip address 10.1.2.2/24 + ip ospf network non-broadcast + ip ospf hello-interval 1 + ip ospf dead-interval 30 +! +! +interface r2-eth2 + ip address 10.1.3.2/24 + ip ospf network point-to-point + ip ospf hello-interval 1 + ip ospf dead-interval 30 +! +! +interface r2-eth3 + ip address 10.1.4.2/24 + ip ospf network point-to-multipoint + ip ospf hello-interval 1 + ip ospf dead-interval 30 +! +! +interface r2-eth4 + ip address 10.1.5.2/24 + ip ospf network broadcast + ip ospf hello-interval 1 + ip ospf dead-interval 30 +! +! +interface r2-eth5 + ip address 10.1.6.2/24 + ip ospf network broadcast + ip ospf hello-interval 1 + ip ospf dead-interval 30 +! +! +router ospf + ospf router-id 2.2.2.2 + distance 20 + network 10.1.1.0/24 area 0 + network 10.1.2.0/24 area 0 + network 10.1.3.0/24 area 0 + network 10.1.4.0/24 area 0 + network 10.1.5.0/24 area 0 + network 10.1.6.0/24 area 1 +! |