Fix gateway test HTTP server port mismatch

The entrypoint HTTP server was binding port 80 but gateway-test.sh
curls port 8000. Maint already had 8000; the wrong port was introduced
during a merge to master.
This commit is contained in:
Johnathan Corgan
2026-04-10 10:02:39 +00:00
parent 5645284893
commit 0d4ffc61f0

View File

@@ -24,7 +24,7 @@ start_dnsmasq() {
start_services() {
/usr/sbin/sshd
iperf3 -s -D
python3 -m http.server 80 -d /root -b :: &>/dev/null &
python3 -m http.server 8000 -d /root -b :: &>/dev/null &
}
# ── Chaos: TCP ECN + ethernet wait ──────────────────────────────────────