I am running into an odd issue. I have a relatively fresh install of Proxmox 7.3-4, and have an issue connecting to the network on almost any VM or LXC i create, with the exception of my Home Assistant OS VM, as that can for some reason connect to the network all the time. I am using a HP NC552SFP 10GB, dual port NIC, as I will eventually be adding a dedicated connection to my NAS for storage.
ip a:
/etc/network/interfaces:
I have a Mikrotik router, that currently is only managing static IP leases, and some lightweight firewall rules for reverse proxy, and port forwarding for a couple other services, and the main host is able to ping, and has network access.
Example of the issue I am seeing attached, using the docker LXC script
ip a:
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: enp131s0f0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq master vmbr0 state UP group default qlen 1000
link/ether 14:58:d0:b3:76:b8 brd ff:ff:ff:ff:ff:ff
3: enp131s0f1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000
link/ether 14:58:d0:b3:76:bc brd ff:ff:ff:ff:ff:ff
4: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
link/ether 14:58:d0:b3:76:b8 brd ff:ff:ff:ff:ff:ff
inet 192.168.XXX.XXX/24 scope global vmbr0
valid_lft forever preferred_lft forever
inet6 fe80::1658:d0ff:feb3:XXXX/64 scope link
valid_lft forever preferred_lft forever
20: tap100i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast master vmbr0 state UNKNOWN group default qlen 1000
link/ether f2:f5:3b:ed:35:76 brd ff:ff:ff:ff:ff:ff
21: veth101i0@if2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP group default qlen 1000
link/ether fe:cf:45:ae:b4:6f brd ff:ff:ff:ff:ff:ff link-netnsid 0
/etc/network/interfaces:
Code:
auto lo
iface lo inet loopback
auto enp131s0f0
iface enp131s0f0 inet manual
iface enp131s0f1 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.XXX.XXX/24
gateway 192.168.XXX.XXX
bridge-ports enp131s0f0
bridge-stp off
bridge-fd 0
Example of the issue I am seeing attached, using the docker LXC script
bash -c "$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/ct/docker-v5.sh)"
from https://tteck.github.io/Proxmox/