Skip to content

Instantly share code, notes, and snippets.

@shawnsi
Created March 27, 2013 17:41
Show Gist options
  • Save shawnsi/5256438 to your computer and use it in GitHub Desktop.
Save shawnsi/5256438 to your computer and use it in GitHub Desktop.
Setting up a docker bridge on Arch

Up

brctl addbr dockbr0
ip a add 172.16.0.1/24 dev dockbr0
ip link set dockbr0 up

Down

ip link set dockbr0 down
brctl delbr dockbr0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment