Hi, I had a problem I couldn't understand:
I created a vm with vmbr1 as the network device and its ip is 192.168.1.207, then I execute the
Hence I execute
Then I created another vm with vmbr1 as the network device and its ip is 192.168.1.209, "207" ping "209" is ok.
I may have overlooked some network configurations...
Code:
auto lo
iface lo inet loopback
iface eno1 inet manual
iface eno2 inet manual
iface eno3 inet manual
iface eno4 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.1.29/24
gateway 192.168.1.1
bridge-ports eno1
bridge-stp off
bridge-fd 0
auto vmbr1
iface vmbr1 inet static
address 192.168.2.29/24
bridge-ports eno2
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
I created a vm with vmbr1 as the network device and its ip is 192.168.1.207, then I execute the
ping 192.168.1.29
in the vm shell, but display Destination Host Unreachable
Hence I execute
tcpdump -i vmbr1 -w 207_2_29.pcap
in promox server, which I parsed "207_2_29.pcap" with wireshark.Then I created another vm with vmbr1 as the network device and its ip is 192.168.1.209, "207" ping "209" is ok.
I may have overlooked some network configurations...