From 88e17729eff27df6d032f03118460f4fbe36c9db Mon Sep 17 00:00:00 2001 From: Sam Baxter Date: Mon, 6 Feb 2017 17:33:50 -0500 Subject: [PATCH] Fix http firewall curl command since mininet doesn't resolve hostnames for hosts --- OxFirewall/index.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/OxFirewall/index.md b/OxFirewall/index.md index 2dc7233..6012496 100644 --- a/OxFirewall/index.md +++ b/OxFirewall/index.md @@ -107,10 +107,11 @@ packetIn{ mininet> h1 python -m SimpleHTTPServer 80 & ~~~ - * And run a HTTP request to h1 from h2 + * And run a HTTP request to h1 from h2 (assuming h1 has ip address 10.0.0.1, + mininet does not resolve hostnames of hosts) ~~~ -mininet> h2 curl h1:80 +mininet> h2 curl 10.0.0.1:80 ~~~ * This command should succeed and you should see a directory listing for the tutorial directory.