Hi there!
I have intalled Proxmox VE on a Beelink S12 Pro Mini PC with Intel N100. It is connected through an Apple Airport Extreme working as an unmanaged switch, to an Eero 6 router, which is the DHCP server.
I have an issue when starting a task in an LXC which uses the network, eg. downloading a torrent or just wgetting a bigger file. Both the LXC and the PVE web UIs become unresponsive and then disconnect. Over SSH, the input first becomes very much delayed then the host also drops any existing connections, and won't respond to pings. When the network task is done, usually the host recovers after a while, and I can connect to it again.
I'm using the default bridged configurations, this is the contents of my
The LXC gets an IP address from the DHCP server within the range. I also tried setting a static IP on the LXC, but the same issue occurs.
Could you please help me figure out what's wrong with my configuration? Thanks!
I have intalled Proxmox VE on a Beelink S12 Pro Mini PC with Intel N100. It is connected through an Apple Airport Extreme working as an unmanaged switch, to an Eero 6 router, which is the DHCP server.
I have an issue when starting a task in an LXC which uses the network, eg. downloading a torrent or just wgetting a bigger file. Both the LXC and the PVE web UIs become unresponsive and then disconnect. Over SSH, the input first becomes very much delayed then the host also drops any existing connections, and won't respond to pings. When the network task is done, usually the host recovers after a while, and I can connect to it again.
I'm using the default bridged configurations, this is the contents of my
/etc/network/interfaces
file:
Code:
auto lo
iface lo inet loopback
iface enp1s0 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.4.100/22
gateway 192.168.4.1
bridge-ports enp1s0
bridge-stp off
bridge-fd 0
iface wlo1 inet manual
source /etc/network/interfaces.d/*
The LXC gets an IP address from the DHCP server within the range. I also tried setting a static IP on the LXC, but the same issue occurs.
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: eth0@if6: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
link/ether bc:24:11:4d:7c:78 brd ff:ff:ff:ff:ff:ff link-netnsid 0
inet 192.168.4.103/22 brd 192.168.7.255 scope global eth0
valid_lft forever preferred_lft forever
inet6 2a0a:ef40:649:ef00:be24:11ff:fe4d:7c78/64 scope global dynamic mngtmpaddr
valid_lft 85974sec preferred_lft 3174sec
inet6 fdfd:29cb:5152:1:be24:11ff:fe4d:7c78/64 scope global dynamic mngtmpaddr
valid_lft 2591818sec preferred_lft 604618sec
inet6 fe80::be24:11ff:fe4d:7c78/64 scope link
valid_lft forever preferred_lft forever
Could you please help me figure out what's wrong with my configuration? Thanks!