Applicable to:
- SolusVM
Symptoms
Bridge interface does not work on the fresh install
The parameter BRIDGE is set with small letters in its name in the physical interface:
# cat /etc/sysconfig/network-scripts/ifcfg-eno1 | grep -i bridge
Bridge=br0
Cause
Syntax of the physical interface is not correct.
Resolution
- Connect to the slave server via SSH
- Create the backup of the current configuration file:
# cp /etc/sysconfig/network-scripts/ifcfg-eno1 /root/ifcfg-eno1.orig
- Correct the parameter name from Bridge to BRIDGE:
# cat /etc/sysconfig/network-scripts/ifcfg-eno1 | grep -i bridge
BRIDGE=br0
Comments
0 commentsPlease sign in to leave a comment.