Skip to content

Commit af8064d

Browse files
committed
bug fix
1 parent ac5d455 commit af8064d

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

docker-compose/cpdp-frr/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ deploy-lab:
6464
deploy-net:
6565
sudo /bin/bash ../../utils/connect_containers_veth.sh cpdp-frr_traffic_engine_1_1 cpdp-frr_frr_1 veth0 veth1
6666
sudo /bin/bash ../../utils/connect_containers_veth.sh cpdp-frr_traffic_engine_2_1 cpdp-frr_frr_1 veth2 veth3
67+
sleep 10
6768

6869
deploy-clab:
6970
sudo -E containerlab deploy --reconfigure

docker-compose/cpdp-frr/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ To request Ixia-c to use ARP to determine destination MAC address for a flow `f1
224224
-d '{ \"choice\": \"bgpv4\" }'"
225225
```
226226

227-
5. Fetch BGP prefix announcements - TODO this doesn't show the actual announcements
227+
5. Fetch BGP prefixes
228228

229229
```Shell
230230
curl -sk "${OTG_HOST}/monitor/states" \

docker-compose/cpdp-frr/frr/frr.conf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ router bgp 3333
2121
bgp router-id 3.3.3.3
2222
no bgp ebgp-requires-policy
2323
neighbor 192.0.2.1 remote-as 1111
24+
neighbor 192.0.2.1 solo
2425
neighbor 192.0.2.5 remote-as 2222
26+
neighbor 192.0.2.5 solo
2527
exit
2628
!
2729
end

docker-compose/cpdp-frr/otg.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,11 @@
5757
"name": "otg1.bgp4.peer[0].rr4"
5858
}
5959
],
60-
"name": "otg1.bgp4.peer[0]"
60+
"name": "otg1.bgp4.peer[0]",
61+
"learned_information_filter": {
62+
"unicast_ipv4_prefix": true,
63+
"unicast_ipv6_prefix": true
64+
}
6165
}
6266
]
6367
}
@@ -112,7 +116,11 @@
112116
"name": "otg2.bgp4.peer[0].rr4"
113117
}
114118
],
115-
"name": "otg2.bgp4.peer[0]"
119+
"name": "otg2.bgp4.peer[0]",
120+
"learned_information_filter": {
121+
"unicast_ipv4_prefix": true,
122+
"unicast_ipv6_prefix": true
123+
}
116124
}
117125
]
118126
}

0 commit comments

Comments
 (0)