Last week I ran an update from the web ui. After a few days I rebooted. When it came up I had no network. Seems there was a openvswitch update. I no longer need ovs so I apt removed it. No change. Maybe that was a bad choice? Anyway I ran systemctl status networking.
Don't know if that is normal or not. "systemctl start networking" starts the network according to status, but it does not work.
Thanks
Code:
● networking.service - Network initialization
Loaded: loaded (/lib/systemd/system/networking.service; disabled; vendor preset: enabled)
Active: inactive (dead)
Docs: man:interfaces(5)
man:ifup(8)
man:ifdown(8)
Code:
ifconfig
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 90760 bytes 5499344 (5.2 MiB)
RX errors 0 dropped 0 overruns 0 frame
0
TX packets 90760 bytes 5499344 (5.2 MiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
Code:
ip a
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> mtu 1500 qdisc noop state DOWN group default qlen 1000
link/ether f0:4d:a2:3e:71:67 brd ff:ff:ff:ff:ff:ff
altname enp1s0f0
3: eno2: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000
link/ether f0:4d:a2:3e:71:69 brd ff:ff:ff:ff:ff:ff
altname enp1s0f1
4: eno3: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000
link/ether f0:4d:a2:3e:71:6b brd ff:ff:ff:ff:ff:ff
altname enp2s0f0
5: eno4: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000
link/ether f0:4d:a2:3e:71:6d brd ff:ff:ff:ff:ff:ff
altname enp2s0f1
Code:
cat interfaces
# network interface settings; autogenerated
# Please do NOT modify this file directly, unless you know what
# you're doing.
#
# If you want to manage parts of the network configuration manually,
# please utilize the 'source' or 'source-directory' directives to do
# so.
# PVE will preserve these directives, but will NOT read its network
# configuration from sourced files, so do not attempt to move any of
# the PVE managed interfaces into external files!
auto lo
iface lo inet loopback
auto eno1
iface eno1 inet manual
#vmbr0
# auto enp1s0f0
# iface enp1s0fo inet manual
auto eno4
iface eno4 inet manual
#Internet pre-up ( ifconfig eno4 mtu 9000 )Internet
auto vmbr0
iface vmbr0 inet static
address 10.0.83.15/24
gateway 10.0.83.1
address f0:4d:a2:3e:71:67
bridge-ports eno1
bridge-stp off
bridge-fd 0
#Default ovs_options mtu 9000defaultset mtu 9000? post-up /sbin/ethtool -K $IFACE tx off up /sbin/route add -net 10.0.51.0 netmask 255.255.255.0 gw 10.0.51.1 down /sbin/route del -net 10.0.51.0 netmask 255.255.255.0
auto vmbr1
iface vmbr1 inet static
address 10.0.33.2
gateway 10.0.33.1
bridge-ports eno4
bridge-stp off
bridge-fd 0
address f0:4d:a2:3e:71:6d
#Internet
auto vmbr2
iface vmbr2 inet manual
#pf lan
Code:
ifreload -a -d
error: Another instance of this program is already running.
info: exit status 89
Thanks
Last edited: