Proxmox web-ui stopped listening to v4 addresses at some point, and are currently only listening to v6 loopback:
From reading this thread https://forum.proxmox.com/threads/port-8006-doesnt-answer-anymore-after-upgrade.88406/ I've gathered that it's probably down to the details in my hosts file, but I can't figure out what would cause it.
When I start pveproxy in debug mode, it seems to be receiving traffic on v4 nonetheless, but are failing to forward (?):
Ideas?
Bash:
root@pve1:~# netstat -ln|grep 8006
tcp6 0 0 :::8006 :::* LISTEN
root@pve1:~# sysctl -a|grep bind
sysctl: reading key "kernel.spl.hostid"
net.ipv4.ip_autobind_reuse = 0
net.ipv4.ip_nonlocal_bind = 0
net.ipv6.bindv6only = 0
net.ipv6.ip_nonlocal_bind = 0
root@pve1:~# cat /etc/hosts
127.0.0.1 localhost.localdomain localhost
10.0.1.21 pve1.domain.tld pve1
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
From reading this thread https://forum.proxmox.com/threads/port-8006-doesnt-answer-anymore-after-upgrade.88406/ I've gathered that it's probably down to the details in my hosts file, but I can't figure out what would cause it.
When I start pveproxy in debug mode, it seems to be receiving traffic on v4 nonetheless, but are failing to forward (?):
Bash:
root@pve1:~# pveproxy start -debug
worker[5421]: PVE::APIServer::AnyEvent +1691: (eval): ACCEPT FH10 CONN1
worker[5421]: PVE::APIServer::AnyEvent +1741: client_do_disconnect: close connection AnyEvent::Handle=HASH(0x56389b420418)
worker[5421]: PVE::APIServer::AnyEvent +1741: client_do_disconnect: CLOSE FH10 CONN0
Ideas?