# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# for Routing
auto vmbr1
iface vmbr1 inet manual
post-up /etc/pve/kvm-networking.sh
bridge_ports dummy0
bridge_stp off
bridge_fd 0
# vmbr0: Bridging. Make sure to use only MAC adresses that were assigned to you.
auto vmbr0
iface vmbr0 inet static
address 188.165.xxx.xxx
netmask 255.255.255.0
network 188.165.229.0
broadcast 188.165.xxx.255
gateway 188.165.xxx.254
bridge_ports eth0
bridge_stp off
bridge_fd 0
auto eth0
iface eth0 inet static
address 147.135.xxx.xxx/28
netmask 255.255.255.255
post-up ip route add 188.165.xxx.254 dev eth0
post-up ip route add default via 188.165.xxx.254
pre-down ip route del default via 188.165.xxx.254
pre-down ip route del 188.165.xxx.254 dev eth0