I'm trying to get to work the following configuration:
this is proxmox /etc/network/interfaces
this is openvz container /etc/network/interfaces
Also on switch I add port linked with proxmox server to vlan 101, make it tag and 'GENERAL' type in Tp-Link notation.
Proxmox server and openvz container can communicate with each other.
Tying to make arpscan on switch from 192.168.101.1 - 192.168.101.10 in 101 vlan I can see on eth0 at proxmox server with help of tcpdump (tcpdump -i eth0 vlan 101)
But no one answers.
So I suppose what I not fully set up connection between vmbr101 and eth0.
What should I do to get a working configuration?
this is proxmox /etc/network/interfaces
Code:
auto lo
iface lo inet loopback
iface eth0 inet manual
auto vmbr0
iface vmbr0 inet static
address 10.99.205.250
netmask 255.255.255.0
gateway 10.99.205.1
bridge_ports eth0
bridge_stp off
bridge_fd 0
auto vmbr101
iface vmbr101 inet static
address 192.168.101.1
netmask 255.255.255.0
network 192.168.101.0
bridge_ports eth0.101
bridge_stp off
bridge_fd 0
this is openvz container /etc/network/interfaces
Code:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.101.3
netmask 255.255.255.0
network 192.168.101.0
broadcast 192.168.101.255
gateway 192.168.101.1
Also on switch I add port linked with proxmox server to vlan 101, make it tag and 'GENERAL' type in Tp-Link notation.
Proxmox server and openvz container can communicate with each other.
Tying to make arpscan on switch from 192.168.101.1 - 192.168.101.10 in 101 vlan I can see on eth0 at proxmox server with help of tcpdump (tcpdump -i eth0 vlan 101)
Code:
22:04:17.031993 ARP, Request who-has 192.168.101.1 tell 10.99.205.235, length 46
22:04:17.044672 ARP, Request who-has 192.168.101.2 tell 10.99.205.235, length 46
But no one answers.
So I suppose what I not fully set up connection between vmbr101 and eth0.
What should I do to get a working configuration?