Skip to content

Instantly share code, notes, and snippets.

@davejlong
Created October 3, 2014 14:47
Show Gist options
  • Save davejlong/091aa585dfce4ffa8897 to your computer and use it in GitHub Desktop.
Save davejlong/091aa585dfce4ffa8897 to your computer and use it in GitHub Desktop.
Restart interface on Ubuntu now that they've disabled `service networking restart`
#!/bin/bash
iface=$1
echo "Restarting $iface"
ifdown $iface
sleep 5
ifup $iface
echo "Restarted $iface"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment