brctl

Ethernet bridge administration. More information: <https://manned.org/brctl>.

Install

All systems
curl cmd.cat/brctl.sh
Debian Debian
apt-get install bridge-utils
Ubuntu
apt-get install bridge-utils
Alpine
apk add bridge-utils
Arch Arch Linux
pacman -S bridge-utils
image/svg+xml Kali Linux
apt-get install bridge-utils
CentOS
yum install bridge-utils
Fedora
dnf install bridge-utils
Windows (WSL2)
sudo apt-get update sudo apt-get install bridge-utils
Raspbian
apt-get install bridge-utils
Docker
docker run cmd.cat/brctl brctl powered by Commando

Ethernet bridge administration. More information: <https://manned.org/brctl>.

  • Show a list with information about currently existing Ethernet bridges:
    sudo brctl show
  • Create a new Ethernet bridge interface:
    sudo brctl add bridge_name
  • Delete an existing Ethernet bridge interface:
    sudo brctl del bridge_name
  • Add an interface to an existing bridge:
    sudo brctl addif bridge_name interface_name
  • Remove an interface from an existing bridge:
    sudo brctl delif bridge_name interface_name

© tl;dr; authors and contributors