Skip to content

Instantly share code, notes, and snippets.

@ffund
Created August 2, 2016 22:27
Show Gist options
  • Save ffund/41ca26a02eeb600a621ee8e9ac9a71da to your computer and use it in GitHub Desktop.
Save ffund/41ca26a02eeb600a621ee8e9ac9a71da to your computer and use it in GitHub Desktop.
sudo apt-get update
# Install the babel routing daemon, mtr fancy traceroute, and nodejs (for the babelweb node)
sudo apt-get -y install babeld mtr npm nodejs-legacy
# Get a list of all experiment interfaces
ifaces=$(netstat -i | tail -n+3 | grep -v "lo" | grep -v "eth0" | cut -d' ' -f1)
# remove InstaGENI-generated automatic routes
for i in $ifaces; do
sudo ifconfig $i down
sudo ifconfig $i up
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment