logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Brctl - Control Ethernet Bridges | Online Free DevTools by Hexmos

Control network interfaces with Brctl, the Ethernet bridge administration tool. Easily manage bridge connections, add/remove interfaces. Free online tool, no registration required.

brctl

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}}

See Also