Skip to content

Instantly share code, notes, and snippets.

@e0da
Created August 21, 2012 19:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save e0da/3418582 to your computer and use it in GitHub Desktop.
Save e0da/3418582 to your computer and use it in GitHub Desktop.
# vim: set ft=sh:
# setup
ip tuntap add mode tap $TAP user $USER
ip link set $TAP up
brctl addif $BR $TAP
# teardown
ip link set $TAP down
brctl delif $BR $TAP
ip tuntap del mode tap $TAP
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment