How to add network bridge with nmcli (NetworkManager) on Linux
To add a network bridge using the nmcli command-line tool with the NetworkManager service in Linux, follow these steps: Install the NetworkManager command line tool: sudo yum install NetworkManager-cli or sudo apt-get install NetworkManager-cli Create a bridge interface: sudo nmcli connection add type bridge ifname <bridge_interface_name> con-name <connection_name> Replace <bridge_interface_name> with a unique name for … Read more