File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,9 @@ Simple end-to-end tests using Docker Compose to verify ETR functionality in CI.
1010# Start the topology
1111docker-compose up -d
1212
13+ # Relaunch probe container with a rebuilt etr
14+ docker-compose build --no-cache probe && docker-compose up -d probe
15+
1316# Run ETR from the probe container
1417docker exec -it probe etr 10.4.1.102
1518
@@ -28,7 +31,11 @@ docker-compose down -v
2831The ` test_paths.sh ` script validates basic ECMP path discovery:
2932
3033``` bash
31- ./test_paths.sh
34+ # ipv4
35+ ./test_paths.sh 10.4.1.102 10.2.1.102 10.2.2.102
36+
37+ # ipv6
38+ ./test_paths.sh fd16:24b7:6fcd:41::102 fd16:24b7:6fcd:21::102 fd16:24b7:6fcd:22::102
3239```
3340
3441This runs automatically in GitHub Actions on every push/PR.
You can’t perform that action at this time.
0 commit comments