I have identical HOST servers that I have configured with a IP addresses on a vlan. They can ping each other. One of them can ping my secondary storage server. The other can not. When I ping from the HOST that can not, I get zero results from the ping. Interesting is that I can have a VM on that host and have that VM be able to reach the Storage server. Another interesting discovery is that I can ping the storage server for 10 seconds if I switch the active NIC on that HOST to another that is connected to my backup switch. Does my settings look right?
When I do
But when i ping
I get nothing. The host that I can ping from has results. Not sure how to troubleshoot this further.
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
auto nic0
iface nic0 inet manual
#Management NIC-A
auto nic1
iface nic1 inet manual
#Management NIC-B
auto nic2
iface nic2 inet manual
#Production NIC-A
auto nic3
iface nic3 inet manual
mtu 9000
#NFS NIC-A
auto nic4
iface nic4 inet manual
#Production NIC-B
auto nic5
iface nic5 inet manual
mtu 9000
#NFS NIC-B
auto bond0
iface bond0 inet manual
bond-slaves nic0 nic1
bond-miimon 100
bond-mode active-backup
bond-primary nic0
#Management BOND
auto bond1
iface bond1 inet manual
bond-slaves nic2 nic4
bond-miimon 100
bond-mode active-backup
bond-primary nic2
#Production BOND
auto bond2
iface bond2 inet manual
bond-slaves nic3 nic5
bond-miimon 100
bond-mode active-backup
bond-primary nic3
mtu 9000
#NFS BOND
auto vmbr0
iface vmbr0 inet static
address 10.0.5.52/16
gateway 10.0.0.1
bridge-ports bond0
bridge-stp off
bridge-fd 0
#Management Bridge[IP]
auto production
iface production inet manual
bridge-ports bond1
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
#Production Bridge
auto vm_network
iface vm_network inet manual
bridge-ports production.5
bridge-stp off
bridge-fd 0
#VM Network Bridge
auto guest_net
iface guest_net inet manual
bridge-ports production.3529
bridge-stp off
bridge-fd 0
#Guest Network
auto vlan200
iface vlan200 inet manual
bridge-ports production.200
bridge-stp off
bridge-fd 0
#Production VLAN200
auto vlan3010
iface vlan3010 inet manual
bridge-ports production.3010
bridge-stp off
bridge-fd 0
#Production VLAN3010
auto nfs
iface nfs inet manual
bridge-ports bond2
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
mtu 9000
#NFS Interface
auto nfs.999
iface nfs.999 inet static
address 192.168.99.52/24
mtu 1500
#NFS Interface Secondary [IP]
auto nfs.2208
iface nfs.2208 inet static
address 172.22.208.112/24
mtu 9000
#NFS Primary [IP]
source /etc/network/interfaces.d/*
When I do
Code:
ip neigh | grep 999
192.168.99.110 dev nfs.999 lladdr d2:39:ea:a8:a1:1e REACHABLE
But when i ping
Code:
ping 192.168.99.110
PING 192.168.99.110 (192.168.99.110) 56(84) bytes of data.
I get nothing. The host that I can ping from has results. Not sure how to troubleshoot this further.