Overview
This guide shows you how to manage the Network Bridge for KVM in Virtualizor.
Virtualizor will create a viifbr0 bridge.
viifbr0 assumes eth0 as the Network Device and detects the IP, Netmask, GATEWAY from :
/etc/sysconfig/network-scripts/ifcfg-eth0
or
/etc/network/interfaces
In the event you have a network device (network interface) other
than eth0, e.g. eth1, then you can configure Virtualizor to use eth1 as
the Network interface to create the bridge.
Network Interface
You can change these settings any time from the Virtualizor Admin Panel -> Configuration -> Slave Settings. The following is a screenshot of the available settings :
CentOS 7 (Without NetworkManager)
Before creating a network Bridge check if the module is loaded on the server:
lsmod | grep bridge
Assuming you are using eth0 on the server, Backup ifcfg-eth0 :
The contents of /etc/sysconfig/network-scripts/ifcfg-eth0 will look something like the following :
root# cat /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
BOOTPROTO=static
TYPE=Ethernet
HWADDR=00:25:90:98:35:90
IPADDR=10.0.0.93
NETMASK=255.255.255.0
GATEWAY=10.0.0.1
IPV6INIT=yes
IPV6ADDR=2607:f0d0:1002:0011:0000:0000:0000:0002
IPV6_DEFAULTGW=2607:f0d0:1002:0011:0000:0000:0000:0001
ONBOOT=yes
Make a copy of it :
root# cp /etc/sysconfig/network-scripts/ifcfg-eth0 /etc/sysconfig/network-scripts/ifcfg-eth0.bak
Create the Bridge File
root# vi /etc/sysconfig/network-scripts/ifcfg-viifbr0
You will need to copy some parts of ifcfg-eth0 to ifcfg-viifbr0 :
DEVICE=viifbr0 TYPE=Bridge BOOTPROTO=static IPADDR=10.0.0.93 NETMASK=255.255.255.0 GATEWAY=10.0.0.1 ONBOOT=yes IPV6INIT=yes IPV6ADDR=2607:f0d0:1002:0011:0000:0000:0000:0002 IPV6_DEFAULTGW=2607:f0d0:1002:0011:0000:0000:0000:0001
Now save the file.
root# vi /etc/sysconfig/network-scripts/ifcfg-eth0
It should look like the following :
DEVICE=eth0 HWADDR=00:25:90:98:35:90 IPV6INIT=yes ONBOOT=yes BRIDGE=viifbr0
If your Server belongs to the Hetzner data center, you will also need to rename the interface route file to the bridge's route file under /etc/sysconfig/network-scripts/ directory.
root# mv route-eth0 route-viifbr0
Assuming eth0 is the NIC name, you will also need to change the interface name in that route file from eth0 to viifbr0.
root# mv route6-eth0 route6-viifbr0
Restart Network
We are almost setup now. Just make sure everything is correct before you restart the network. After that restart the network :
root# service network restart
AlmaLinux 8.x / 9.x
lsmod | grep bridge
Assuming your network interface is ens3 on the server and its configuration is already made using nmtui/nmcli commands, then you can use these commands to create a bridge.
You can also find interface name using nmcli command output.
# nmcli connection add type bridge con-name viifbr0 ifname viifbr0
# nmcli connection modify viifbr0 bridge.stp no //Add this if your server provider blocks ports on switch due to BPDU flooding # nmcli connection modify viifbr0 ipv4.addresses 'your-ip/netmask' ipv4.gateway 'your-gateway' ipv4.dns '8.8.8.8' ipv4.method manual # nmcli connection modify viifbr0 ipv6.addresses 'your-ipv6-ip/64' ipv6.gateway 'your-ipv6-gateway' ipv6.dns '2001:4860:4860::8888' ipv6.method manual # nmcli connection modify ens3 master viifbr0 # nmcli connection modify viifbr0 connection.autoconnect-slaves 1 # nmcli connection up viifbr0 # nmcli connection up ens3
Here viifbr0 is the default bridge name which Virtualizor expects to be online when you want to have VPSes created using primary network on the server.
You can restart the server and verify if the bridge still shows up with the same MAC as of the NIC(ens3) which you slaved to the bridge. Ifconfig command can be used to view the MACs
root# nano /etc/network/interfaces
# The loopback network interface
auto lo
iface lo inet loopback
# Bridge for eth0
auto viifbr0
iface viifbr0 inet static
address 192.168.1.10
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 192.168.1.5
bridge_ports eth0
bridge_stp off
bridge_fd 0
bridge_maxwait 0
bridge_stp off - is a setting for spanning tree. If you have a possibility for network loops, you may want to turn this on.
bridge_fd 0 - turns off all forwarding delay. If you do not know what this is, you probably do not need it.
bridge_maxwait 0 - is how long the system will wait for the Ethernet ports to come up. Zero is no wait.
For IPv6 Configuration, edit the Following file :
root # vi /etc/sysctl.conf
Add the following line at the end of the file :
net.ipv6.conf.default.disable_ipv6 = 0 net.ipv6.conf.all.disable_ipv6 = 0
Save and exit the file.
The last file we need to edit is the interfaces file under the path /etc/network/
root # vi /etc/network/interfaces
Append the following lines to the file :
iface viifbr0 inet6 static pre-up modprobe ipv6 address IPv6-IP-Address netmask IPv6-NetMask gateway IPv6-IP-Gateway-Address
Managing Bridge on Ubuntu 18.04 or higher
On Ubuntu 18.04 they have enabled netplans for network interface by default.
Either you can turn off the netplans and use the legacy method (i.e. /etc/network/interfaces) OR configure a Network Bridge as per the following guide :
To configure netplan, save configuration files under /etc/netplan/ with a .yaml extension (e.g. /etc/netplan/config.yaml),
then run sudo netplan apply.
This command parses and applies the configuration to the system.
Configuration written to disk under /etc/netplan/ will persist between reboots.
Example file contents : /etc/netplan/01-netcfg.yaml
For Hetzner servers,
network:
version: 2
renderer: networkd
ethernets:
ens3:
dhcp4: no
bridges:
viifbr0:
addresses:
- 10.1.3.43/24
- "2001:cafe:face:beef::dead:dead/64"
interfaces: [ ens3 ]
routes:
- on-link: true
to: 0.0.0.0/0
via: 10.1.3.1
gateway6: fe80::1
macaddress: 00:16:3e:7f:ae:93
nameservers:
addresses:
- 8.8.8.8
- 8.8.4.4
- 2001:4860:4860::8888
- 2001:4860:4860::8844
For other servers :
network:
version: 2
renderer: networkd
ethernets:
ens3:
dhcp4: no
bridges:
viifbr0:
addresses:
- 10.1.3.43/24
- "2001:cafe:face:beef::dead:dead/64"
interfaces: [ ens3 ]
gateway4: 10.1.3.1
gateway6: "2001:cafe:face:beef::1"
macaddress: 00:16:3e:7f:ae:93
nameservers:
addresses:
- 8.8.8.8
- 8.8.4.4
- 2001:4860:4860::8888
- 2001:4860:4860::8844
To create a bridge on Bond network, edit network file : /etc/netplan/01-netcfg.yaml
The IP address, Gateway, Netmask and Mac address are used as dummy. Please replace them with the original values according to your server details.
For Ubuntu 20.04 or higher,
network:
bonds:
bond0:
interfaces:
- eth0
- eth1
parameters:
lacp-rate: fast
mode: 802.3ad
transmit-hash-policy: layer2
ethernets:
eth0: {}
eth1: {}
version: 2
bridges:
viifbr0:
addresses:
- 10.1.3.43/24
interfaces: [ bond0 ]
gateway4: 10.1.3.1
macaddress: 00:16:3e:7f:ae:93
nameservers:
addresses:
- 8.8.8.8
- 8.8.4.4
- 2001:4860:4860::8888
- 2001:4860:4860::8844