Hello, today I've decide to update proxmox from 6.3 to 6.4 but i have discovered that one of my node can not access internet and can not ping the gateway.
Ping result:
This is my interface configuration:
I have 2 gigabit network cards, the second one is not currently in use ( I plan to use it when i'm able to update):
Result of "cat /etc/network/interfaces"
Result of "ip addr"
The configuration is pretty much identical to the first node, but on that node everything works fine....
Could anyone help me understand what i'm doing wrong?
Thanks!
Ping result:
Code:
ping 192.168.2.1
PING 192.168.2.1 (192.168.2.1) 56(84) bytes of data.
From 192.168.2.202 icmp_seq=1 Destination Host Unreachable
From 192.168.2.202 icmp_seq=2 Destination Host Unreachable
From 192.168.2.202 icmp_seq=3 Destination Host Unreachable
This is my interface configuration:
I have 2 gigabit network cards, the second one is not currently in use ( I plan to use it when i'm able to update):
Code:
08:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. Device 8161 (rev 15)
09:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 15)
Result of "cat /etc/network/interfaces"
Code:
# 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
iface enp8s0 inet manual
iface enp9s0 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.2.202/24
gateway 192.168.2.1
bridge-ports enp8s0
bridge-stp off
bridge-fd 0
#Scheda rete integrata
auto vmbr1
iface vmbr1 inet static
address 192.168.2.203/24
bridge-ports enp9s0
bridge-stp off
bridge-fd 0
Result of "ip addr"
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: enp8s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast master vmbr0 state UP group default qlen 1000
link/ether 90:9a:4a:61:ce:a6 brd ff:ff:ff:ff:ff:ff
3: enp9s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast master vmbr1 state UP group default qlen 1000
link/ether 00:e0:4c:22:50:46 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 90:9a:4a:61:ce:a6 brd ff:ff:ff:ff:ff:ff
inet 192.168.2.202/24 brd 192.168.2.255 scope global vmbr0
valid_lft forever preferred_lft forever
inet6 fe80::929a:4aff:fe61:cea6/64 scope link
valid_lft forever preferred_lft forever
5: vmbr1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
link/ether 00:e0:4c:22:50:46 brd ff:ff:ff:ff:ff:ff
inet 192.168.2.203/24 brd 192.168.2.255 scope global vmbr1
valid_lft forever preferred_lft forever
inet6 fe80::2e0:4cff:fe22:5046/64 scope link
valid_lft forever preferred_lft forever
The configuration is pretty much identical to the first node, but on that node everything works fine....
Could anyone help me understand what i'm doing wrong?
Thanks!