Skip to content

Commit

Permalink
Fix http firewall curl command since mininet doesn't resolve hostname…
Browse files Browse the repository at this point in the history
…s for hosts
  • Loading branch information
Sam Baxter committed Feb 6, 2017
1 parent ca91107 commit 88e1772
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions OxFirewall/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 88e1772

Please sign in to comment.