Skip to content

Instantly share code, notes, and snippets.

@janhoffmann
Forked from plembo/addbr0ubunmcli.md
Created June 2, 2023 22:43
Show Gist options
  • Save janhoffmann/fbd66a26e830676145aa9defe9ab8110 to your computer and use it in GitHub Desktop.
Save janhoffmann/fbd66a26e830676145aa9defe9ab8110 to your computer and use it in GitHub Desktop.
Add br0 to Ubuntu desktop using nmcli

Add a bridge interface to Ubuntu desktop using nmcli

Had to do this for some advanced networking with KVM, and couldn't figure out how to do it using the Nework Manager gui. Did find an article later that showed how to do it with nmtui, but it's so much easier to record what you did when using the cli.

To see what everything looks like before starting:

$ nmcli con show

I renamed "Wired Connection 1' to the name of my physical interface:

$ sudo nmcli con mod 'Wired Connection 1' con-name ens3

So let's start out by creating the bridge itself:

$ nmcli con add ifname br0 type bridge con-name br0

Now add the physical interface as its slave:

$ nmcli con add type bridge-slave ifname ens3 master br0

Disable STP:

$ nmcli con mod br0 bridge.stp no

Now down the physical interface:

$ nmcli con down ens3

For this machine I want a static address:

$ nmcli con mod br0 ipv4.addresses 10.1.1.16/24
$ nmcli con mod br0 ipv4.gateway 10.1.1.1
$ nmcli con mod br0 ipv4.dns '10.1.1.1,8.8.8.8,8.8.4.4'

Don't forget to set your search domain:

$ nmcli con mod br0 ipv4.dns-search 'example.com'

Finally tell Network Manager this will be a manual connection:

nmcli con mod br0 ipv4.method manual

Finally, bring up the new bridge interface:

nmcli con up br0

Run nmcli device show to confirm your changes, and then restart NetworkManager (sudo systemctl restart NetworkManager.service) to make sure the configuration sticks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment