Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 821 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 821 Bytes

Tutorial Solution: Mininet

Solution to the Mininet tutorial for SCC365 that can be found: here


This solution completes tasks 1, 2 and 3 and requires the use of the stage 7 information to run.

You can run the solution yourself like so:

sudo mn --custom ./topology.py --topo tutorialTopology \
--switch ovsk --controller remote,ip=127.0.0.1,port=6633
Do this with Docker 🐳
Build the container image (each time you make a change to the topology code):
docker build --rm -t topology:latest .

Run the container:
docker run --rm -it --privileged --network host --name topology topology:latest


💡 Note: a ptcp controller must be running on localhost:6633