Skip to content
This repository has been archived by the owner on Aug 8, 2019. It is now read-only.

ryankurte/docker-ns3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

docker-ns3

A Docker container for the NS-3 Network Simulator

Usage

docker run --rm -it -v `pwd`:/work ryankurte/docker-ns3

GUI support on OSX:

  1. Install XQuartz
  2. Find IP with ifconfig en0 | grep inet | awk '$1=="inet" {print $2}'
  3. Enable IP based access with xhost + $IP
  4. Run with docker run --rm -it -v `pwd`:/work -e DISPLAY=$IP:0 -v /tmp/.X11-unix:/tmp/.X11-unix ryankurte/docker-ns3

For more information check out fredrikaverpil.github.io.