Hi to all,
can someone point me to documentation how to configure network in order that virtual machines can connect to each other? I presume that i need to create one more bridge on proxmox host and then attach virtual machines NIC (in a bridge mode) to that bridge , or there is another best practise solution?
here is my network configuration on host
auto lo
iface lo inet loopback
iface eth0 inet manual
iface eth1 inet manual
iface eth2 inet manual
iface eth3 inet manual
auto vmbr1
iface vmbr1 inet manual
bridge_ports dummy0
bridge_stp off
bridge_fd 0
post-up /etc/pve/kvm-networking.sh
auto vmbr0
iface vmbr0 inet static
address 51.255.83.76
netmask 255.255.255.0
gateway 51.255.83.254
broadcast 51.255.83.255
bridge_ports eth2
bridge_stp off
bridge_fd 0
network 51.255.83.0
echo 1 > /proc/sys/net/ipv4/conf/vmbr0/proxy_arp
post-up route add -host 91.121.44.190 dev vmbr0
iface vmbr0 inet6 static
address 2001:41d0:1004:110c::
netmask 64
post-up /sbin/ip -f inet6 route add 2001:41d0:1004:13ff:ff:ff:ff:ff dev vmbr0
post-up /sbin/ip -f inet6 route add default via 2001:41d0:1004:13ff:ff:ff:ff:ff
pre-down /sbin/ip -f inet6 route del default via 2001:41d0:1004:13ff:ff:ff:ff:ff
pre-down /sbin/ip -f inet6 route del 2001:41d0:1004:13ff:ff:ff:ff:ff dev vmbr0
Thanks in advance
can someone point me to documentation how to configure network in order that virtual machines can connect to each other? I presume that i need to create one more bridge on proxmox host and then attach virtual machines NIC (in a bridge mode) to that bridge , or there is another best practise solution?
here is my network configuration on host
auto lo
iface lo inet loopback
iface eth0 inet manual
iface eth1 inet manual
iface eth2 inet manual
iface eth3 inet manual
auto vmbr1
iface vmbr1 inet manual
bridge_ports dummy0
bridge_stp off
bridge_fd 0
post-up /etc/pve/kvm-networking.sh
auto vmbr0
iface vmbr0 inet static
address 51.255.83.76
netmask 255.255.255.0
gateway 51.255.83.254
broadcast 51.255.83.255
bridge_ports eth2
bridge_stp off
bridge_fd 0
network 51.255.83.0
echo 1 > /proc/sys/net/ipv4/conf/vmbr0/proxy_arp
post-up route add -host 91.121.44.190 dev vmbr0
iface vmbr0 inet6 static
address 2001:41d0:1004:110c::
netmask 64
post-up /sbin/ip -f inet6 route add 2001:41d0:1004:13ff:ff:ff:ff:ff dev vmbr0
post-up /sbin/ip -f inet6 route add default via 2001:41d0:1004:13ff:ff:ff:ff:ff
pre-down /sbin/ip -f inet6 route del default via 2001:41d0:1004:13ff:ff:ff:ff:ff
pre-down /sbin/ip -f inet6 route del 2001:41d0:1004:13ff:ff:ff:ff:ff dev vmbr0
Thanks in advance