Hi I am brand new to Proxmox, switching from ESXi free for my homelab. So far I really like it but I cant seem to get my networking straight. Proxmox is running on a machine that came with 2x built in NICs and I popped in a 4x port Intel NIC I had laying around. I have it all installed, the hypervisor OS has full access to the internet and the physical network, I can apt-get update and ping everything but any guest OS I install cant reach DHCP or any machines on my physical network.
I got this configuration for the bond0 and bridge directly from the help documentation.
I got this configuration for the bond0 and bridge directly from the help documentation.
Code:
root@proxmox:~# cat /etc/network/interfaces
# network interface settings; autogenerated
# Please do NOT modify this file directly, unless you know what
# you're doing.
#
# If you want to manage part of the network configuration manually,
# please utilize the 'source' or 'source-directory' directives to do
# so.
# PVE will preserve these directives, but will NOT its network
# configuration from sourced files, so do not attempt to move any of
# the PVE managed interfaces into external files!
auto lo
iface lo inet loopback
auto enp2s0f0
iface enp2s0f0 inet manual
auto enp2s0f1
iface enp2s0f1 inet manual
iface enp2s0f2 inet manual
iface enp2s0f3 inet manual
iface eno1 inet manual
iface enp7s0 inet manual
auto bond0
iface bond0 inet manual
slaves eno1 enp2s0f0 enp2s0f1 enp2s0f2 enp2s0f3 enp7s0
bond_miimon 100
bond_mode 802.3ad
bond_xmit_hash_policy layer2+3
auto vmbr0
iface vmbr0 inet static
address 192.168.1.15
netmask 255.255.255.0
gateway 192.168.1.1
bridge_ports bond0
bridge_stp off
bridge_fd 0
#Production
root@proxmox:~#
Last edited: