Just installed proxmox, and I'm having issues getting networking setup the way I would like to have it configured.
Ideally, I would like all of the VMs to be on the same network as my proxmox host, which will also have access to the internet.
This is what I have in /etc/network/interfaces:
I realize that this probably won't get me to my goal, but I was messing around with different settings, trying to get my VMs to get an IP other than 10.0.2.15. And that was the result of me trying different things on the proxmox networking model wiki page. Let me know if I can provide any other information. Thanks.
Ideally, I would like all of the VMs to be on the same network as my proxmox host, which will also have access to the internet.
This is what I have in /etc/network/interfaces:
Code:
auto lo
iface lo inet loopback
auth eth0
iface eth0 inet static
address 192.168.1.102
netmask 255.255.255.0
gateway 192.168.1.1
post-up echo 1 > /proc/sys/net/ipv4/conf/eth0/proxy_arp
auto vmbr0
iface vmbr0 inet static
address 10.10.10.1
netmask 255.255.255.0
bridge_ports none
bridge_stp off
bridge_fd 0
I realize that this probably won't get me to my goal, but I was messing around with different settings, trying to get my VMs to get an IP other than 10.0.2.15. And that was the result of me trying different things on the proxmox networking model wiki page. Let me know if I can provide any other information. Thanks.