Will someone explain to me the dummy0 interface and how it is created? I have an OVH dedicated Proxmox server and the default installation has a dummy0 bridged on vmbr1. Where does it come from what is the purpose and how is it enabled?
I want to create an internal network bouncing off of the eth1 interface and maybe use a dummy1 to make it happen. So far I have searched high and low on the internet for any reference and so far nothing.
Any help in understanding the bridging features of proxmox is most welcomed.
The following is my default /etc/network/interfaces file:
# 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 <---PURPOSE OF THIS IN RELATION TO EVERYTHING ELSE
post-up /etc/pve/kvm-networking.sh <--THIS FILE DOESN'T EXIST... Can someone explain why?
bridge_ports dummy0 <---WHERE DOES THIS COME FROM AND HOW DOES IT RELATE TO eth0/vmbr0/vmbr1
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 my_public_ip
netmask 255.255.255.0
network my_public_ip.0
broadcast my_public_ip.255
gateway my_public_ip.254
bridge_ports eth0
bridge_stp off
bridge_fd 0
iface vmbr0 inet6 static
address ip6
netmask 64
post-up /sbin/ip -f inet6 route add ip6_info dev vmbr0
post-up /sbin/ip -f inet6 route add default via ip6_info
pre-down /sbin/ip -f inet6 route del default via ip6_info
pre-down /sbin/ip -f inet6 route del ip6_info dev vmbr0
I want to create an internal network bouncing off of the eth1 interface and maybe use a dummy1 to make it happen. So far I have searched high and low on the internet for any reference and so far nothing.
Any help in understanding the bridging features of proxmox is most welcomed.
The following is my default /etc/network/interfaces file:
# 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 <---PURPOSE OF THIS IN RELATION TO EVERYTHING ELSE
post-up /etc/pve/kvm-networking.sh <--THIS FILE DOESN'T EXIST... Can someone explain why?
bridge_ports dummy0 <---WHERE DOES THIS COME FROM AND HOW DOES IT RELATE TO eth0/vmbr0/vmbr1
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 my_public_ip
netmask 255.255.255.0
network my_public_ip.0
broadcast my_public_ip.255
gateway my_public_ip.254
bridge_ports eth0
bridge_stp off
bridge_fd 0
iface vmbr0 inet6 static
address ip6
netmask 64
post-up /sbin/ip -f inet6 route add ip6_info dev vmbr0
post-up /sbin/ip -f inet6 route add default via ip6_info
pre-down /sbin/ip -f inet6 route del default via ip6_info
pre-down /sbin/ip -f inet6 route del ip6_info dev vmbr0
Last edited: