PBS4 Upgrade - No Network

virtualfund

New Member
Mar 19, 2024
27
2
3
Upgraded to PBS4 via the guide and now have no network connection. Verified the Ethernet cable is good as well.
Tried to run `proxmox-network-interface-pinning`, but it isn't an available command.
Any other ideas on what to check? This is installed on an older Intel NUC.

/etc/network/interfaces gives me
Code:
auto lo
iface lo inet loopback

auto eno1
iface en01 inet static
        address 192.168.41.13/24
        gateway 192.168.41.1
        
source /etc/network/interfaces.d/*

Output of ip a is
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 noprefixroute
        valid_lft forever preferred_lft forever
2: eno1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000
    link/ether c0:3f:**:**:**:** brd ff:ff:ff:ff:ff:ff
    altname enp0s25
    altname enxc03fd566127d
 
Was able to resolve this by doing the following, in case anyone else runs into it.

Code:
nano /etc/systemd/network/20-eno1.network

Code:
[Match]
Name=eno1

[Network]
Address=192.168.41.13/24
Gateway=192.168.41.1
DNS=192.168.41.2

Code:
systemctl enable systemd-networkd --now