Hello everyone,
I've been trying to get proxmox working for 2 days now, watched 100 videos, read 100 different things online. many look alike but no matter what I do it just doesn't work.
My setup
Online VPS
Interface ens6
Public Ip of my VPS 85.123.123.100
Gateway of my VPS 85.123.123.1
What I want to create is the following
VPS >
Firewall PfSense >
Bridge? LAN 1 - VM 1 - VM 2 in a network of 192.168.1.2, 192.168.1.3 etc
I suspect that my hosting only allows 1 mac address on my server, so incoming and outgoing connections must go through my public ip and mac address
Hope someone can help me with this, I'm slowly going crazy
etc/network/interfaces
Kind regards,
Michael
I've been trying to get proxmox working for 2 days now, watched 100 videos, read 100 different things online. many look alike but no matter what I do it just doesn't work.
My setup
Online VPS
Interface ens6
Public Ip of my VPS 85.123.123.100
Gateway of my VPS 85.123.123.1
What I want to create is the following
VPS >
Firewall PfSense >
Bridge? LAN 1 - VM 1 - VM 2 in a network of 192.168.1.2, 192.168.1.3 etc
I suspect that my hosting only allows 1 mac address on my server, so incoming and outgoing connections must go through my public ip and mac address
Hope someone can help me with this, I'm slowly going crazy
etc/network/interfaces
Code:
auto lo
iface lo inet loopback
auto ens6
iface ens6 inet manual
auto vmbr0
iface vmbr0 inet static
address 85.123.123.100/32
gateway 85.123.123.1
bridge-ports ens6
bridge-stp off
bridge-fd 0
post-up echo 1 > /proc/sys/net/ipv4/ip_forward
post-up echo 1 > /proc/sys/net/ipv4/conf/ens6/proxy_arp
auto vmbr1
iface vmbr1 inet static
address 192.168.1.1/24
bridge-ports none
bridge-stp off
bridge-fd 0
source-directory /etc/network/interfaces.d
source-directory /run/network/interfaces.d
Kind regards,
Michael