Upgraded my latest 6.x to 7 and the networking part that was using a bond and openvswitch doesn't get up on reboot.
Networking on a direct interface does work, but not my main access. My setup is a bond0 on four interfaces eno{1,2,3,4} and tagged vlans on vmbr0.
Config is:
openvswitch/ifup etc. seems installed:
but no bond0/vmbr/vlans etc.:
any ideas what I can do to find the issue ?
Tried rebooting multiple times, ifup enoX or bond0 etc. but nothing wants to get up.
Networking on a direct interface does work, but not my main access. My setup is a bond0 on four interfaces eno{1,2,3,4} and tagged vlans on vmbr0.
Config is:
Code:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# Bond between the four interfaces
allow-vmbr0 eno1
iface eno1 inet manual
allow-vmbr0 eno2
iface eno2 inet manual
allow-vmbr0 eno3
iface eno3 inet manual
allow-vmbr0 eno4
iface eno4 inet manual
# Bond LACP
allow-vmbr0 bond0
iface bond0 inet manual
ovs_bridge vmbr0
ovs_type OVSBond
ovs_bonds eno1 eno2 eno3 eno4
ovs_options bond_mode=balance-tcp lacp=active other_config:lacp-time=fast
# bridge for our bond and vlan virtual interfaces (the VMs will attach to this bridge too)
allow-ovs vmbr0
iface vmbr0 inet manual
ovs_type OVSBridge
ovs_ports bond0 vlan110 vlan140
allow-vmbr0 vlan110
iface vlan110 inet static
ovs_type OVSIntPort
ovs_bridge vmbr0
ovs_options tag=110
allow-vmbr0 vlan140
iface vlan140 inet static
ovs_type OVSIntPort
ovs_bridge vmbr0
ovs_options tag=140
address 192.168.40.229
netmask 255.255.255.0
gateway 192.168.40.1
auto enp4s0f0
iface enp4s0f0 inet static
address 10.42.42.2
netmask 255.255.255.0
mtu 9000
openvswitch/ifup etc. seems installed:
Code:
ii ifupdown 0.8.36 amd64 high level tools to configure network interfaces
ii openvswitch-common 2.15.0+ds1-2 amd64 Open vSwitch common components
ii openvswitch-switch 2.15.0+ds1-2 amd64 Open vSwitch switch implementations
but no bond0/vmbr/vlans etc.:
Code:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eno1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether b8:ac:6f:13:3e:d7 brd ff:ff:ff:ff:ff:ff
altname enp1s0f0
inet6 fe80::baac:6fff:fe13:3ed7/64 scope link
valid_lft forever preferred_lft forever
3: eno2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether b8:ac:6f:13:3e:d9 brd ff:ff:ff:ff:ff:ff
altname enp1s0f1
inet6 fe80::baac:6fff:fe13:3ed9/64 scope link
valid_lft forever preferred_lft forever
4: eno3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether b8:ac:6f:13:3e:db brd ff:ff:ff:ff:ff:ff
altname enp2s0f0
inet6 fe80::baac:6fff:fe13:3edb/64 scope link
valid_lft forever preferred_lft forever
5: eno4: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether b8:ac:6f:13:3e:dd brd ff:ff:ff:ff:ff:ff
altname enp2s0f1
inet6 fe80::baac:6fff:fe13:3edd/64 scope link
valid_lft forever preferred_lft forever
6: enp4s0f0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 9000 qdisc mq state UP group default qlen 1000
link/ether a0:36:9f:13:96:94 brd ff:ff:ff:ff:ff:ff
inet 10.42.42.2/24 brd 10.42.42.255 scope global enp4s0f0
valid_lft forever preferred_lft forever
inet6 fe80::a236:9fff:fe13:9694/64 scope link
valid_lft forever preferred_lft forever
7: enp4s0f1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000
link/ether a0:36:9f:13:96:96 brd ff:ff:ff:ff:ff:ff
any ideas what I can do to find the issue ?
Tried rebooting multiple times, ifup enoX or bond0 etc. but nothing wants to get up.