Hello:
I upgraded from latest v5 to v6 today (16th July 2020). It went well except networking. It is certainly possible that in the past I have done bad things to my /etc/network/interfaces file that is causing it. Another possible issue is I installed Cinnamon deskop on the machine (after v6 update) which had its own network manager -- I disabled it however.
Currently, on boot I get about a 5 minute hang at raising network interface.
When the boot completes I actually do have vmbr0 working, but not the other one I need, vmbr2. Interestingly, if I then just issue
Here's
Thanks for any suggestions.
I upgraded from latest v5 to v6 today (16th July 2020). It went well except networking. It is certainly possible that in the past I have done bad things to my /etc/network/interfaces file that is causing it. Another possible issue is I installed Cinnamon deskop on the machine (after v6 update) which had its own network manager -- I disabled it however.
Currently, on boot I get about a 5 minute hang at raising network interface.
systemctl status networking
shows:
Code:
Jul 16 16:42:32 pvea ifup[2318]: Waiting for vmbr0 to get ready (MAXWAIT is 2 seconds).
Jul 16 16:42:31 pvea systemd[1]: Starting Raise network interfaces...
Jul 16 16:47:32 pvea systemd[1]: networking.service: Start operation timed out. Terminating.
Jul 16 16:47:32 pvea systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE
Jul 16 16:47:32 pvea ifup[2318]: Got signal Terminated, terminating...
Jul 16 16:47:32 pvea ifup[2318]: ifup: failed to bring up vmbr0
Jul 16 16:47:32 pvea systemd[1]: networking.service: Failed with result 'timeout'.
Jul 16 16:47:32 pvea systemd[1]: Failed to start Raise network interfaces.
When the boot completes I actually do have vmbr0 working, but not the other one I need, vmbr2. Interestingly, if I then just issue
ifup vmbr2
it comes up fine. Proxmox gui shows Autostart Yes for vmbr0 and vmbr2.Here's
/etc/network/interfaces
:
Code:
auto lo
iface lo inet loopback
iface enp42s0 inet manual
iface enp45s0 inet manual
iface enp47s0f0 inet manual
mtu 9000
iface enp47s0f1 inet manual
mtu 9000
auto vmbr0
iface vmbr0 inet static
address 10.0.1.2/24
gateway 10.0.1.1
bridge-ports enp42s0
bridge-stp off
bridge-fd 0
#Main Lan Bridge
iface vmbr1 inet static
address 172.16.14.2/24
bridge-ports enp45s0
bridge-stp off
bridge-fd 0
#10GAquantia
auto vmbr2
iface vmbr2 inet static
address 172.16.16.2/24
bridge-ports enp47s0f0
bridge-stp off
bridge-fd 0
mtu 9000
#SFPTop
iface vmbr3 inet static
address 172.16.15.2/24
bridge-ports enp47s0f1
bridge-stp off
bridge-fd 0
mtu 9000
#SFPBottom
Thanks for any suggestions.