Skip to content

Instantly share code, notes, and snippets.

@KITSAlexBrown
Created July 22, 2018 11:15
Show Gist options
  • Save KITSAlexBrown/cfe97c2cbab015ec158d6c6f6cbf0116 to your computer and use it in GitHub Desktop.
Save KITSAlexBrown/cfe97c2cbab015ec158d6c6f6cbf0116 to your computer and use it in GitHub Desktop.
Bring up interface
#!/bin/sh
set -x
switch=br0
if [ -n "$1" ];then
# tunctl -u `whoami` -t $1 (use ip tuntap instead!)
ip tuntap add $1 mode tap user `whoami`
ip link set $1 up
sleep 0.5s
# brctl addif $switch $1 (use ip link instead!)
ip link set $1 master $switch
exit 0
else
echo "Error: no interface specified"
exit 1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment