Skip to content

Commit

Permalink
Use a nginx container to test outgoing traffic (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertvolkmann authored Aug 2, 2024
1 parent 0e7c0a8 commit 6460a0d
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -239,11 +239,11 @@ ssh-machine:
))
ssh -F files/ssh/config $(machine) $(COMMAND)

.PHONY: connect-to-cloudflare
connect-to-cloudflare:
@echo "Attempting to connect to Cloudflare..."
.PHONY: connect-to-www
connect-to-www:
@echo "Attempting to connect to container www..."
@for i in $$(seq 1 $(MAX_RETRIES)); do \
if $(MAKE) ssh-machine COMMAND="sudo curl --connect-timeout 1 --fail --silent https://1.1.1.1" > /dev/null 2>&1; then \
if $(MAKE) ssh-machine COMMAND="sudo curl --connect-timeout 1 --fail --silent http://203.0.113.3" > /dev/null 2>&1; then \
echo "Connected successfully"; \
exit 0; \
else \
Expand Down
6 changes: 6 additions & 0 deletions files/rules.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
---
egress:
- comment: allow outgoing http
ports:
- 80
protocol: TCP
to:
- 0.0.0.0/0
- comment: allow outgoing https
ports:
- 443
Expand Down
9 changes: 8 additions & 1 deletion mini-lab.cumulus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,17 @@ topology:
binds:
- /dev:/dev
- scripts:/mini-lab

www:
kind: linux
image: docker.io/library/nginx:alpine-slim
network-mode: none
exec:
- ip addr add 203.0.113.3/24 dev ext
- ip route add 203.0.113.128/25 via 203.0.113.2 dev ext
links:
- endpoints: ["inet:ext", "mini_lab_ext:inet"]
mtu: 9000
- endpoints: ["www:ext", "mini_lab_ext:www"]
- endpoints: ["leaf01:swp1", "vms:lan0"]
- endpoints: ["leaf02:swp1", "vms:lan1"]
- endpoints: ["leaf01:swp2", "vms:lan2"]
Expand Down
8 changes: 8 additions & 0 deletions mini-lab.sonic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,17 @@ topology:
binds:
- /dev:/dev
- scripts:/mini-lab
www:
kind: linux
image: docker.io/library/nginx:alpine-slim
network-mode: none
exec:
- ip addr add 203.0.113.3/24 dev ext
- ip route add 203.0.113.128/25 via 203.0.113.2 dev ext
links:
- endpoints: ["inet:ext", "mini_lab_ext:inet"]
mtu: 9000
- endpoints: ["www:ext", "mini_lab_ext:www"]
- endpoints: ["leaf01:eth1", "inet:eth1"]
- endpoints: ["leaf02:eth1", "inet:eth2"]
- endpoints: ["leaf01:eth2", "vms:lan0"]
Expand Down
2 changes: 1 addition & 1 deletion test/integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ done
echo "$phoned/$minPhoned machines have phoned home"

echo "Test connectivity to outside"
make connect-to-cloudflare
make connect-to-www

echo "Test connectivity from outside"
ssh -o StrictHostKeyChecking=no -o "PubkeyAcceptedKeyTypes +ssh-rsa" -i files/ssh/id_rsa [email protected] -C exit
Expand Down

0 comments on commit 6460a0d

Please sign in to comment.