Hello,
We use proxmox as host with pfsense as firewall and dhcp-server virtualised on it.
We received last week from our new ISP our public ip address. This means we have only 1 ip to assign to our pfsense server but while it's a virtual one I have no clue how I can bridge though proxmox to our pfsense server.
Here is our situation
received from the ISP
1xx.24x.1xx.24/30 – network address (useless)
1xx.24x.1xx.25/30 – router IP (gateway address)
1xx.24x.1xx.26/30 – our firewall IP (pfsense)
1xx.24x.1xx.27/30 – broadcast address (useless)
proxmox /etc/network/interfaces
As you can see we didn't define anything on the proxmox server but only bridged the eth6 port to vmbr2.
On the pfsense server I have defined the gateway and ipaddress I received from our isp but this is not working.
I think I have to define more on the proxmox server but I don't know what or how...
I hope someone can help me a little bit.
thanks in advance
We use proxmox as host with pfsense as firewall and dhcp-server virtualised on it.
We received last week from our new ISP our public ip address. This means we have only 1 ip to assign to our pfsense server but while it's a virtual one I have no clue how I can bridge though proxmox to our pfsense server.
Here is our situation
received from the ISP
1xx.24x.1xx.24/30 – network address (useless)
1xx.24x.1xx.25/30 – router IP (gateway address)
1xx.24x.1xx.26/30 – our firewall IP (pfsense)
1xx.24x.1xx.27/30 – broadcast address (useless)
proxmox /etc/network/interfaces
Code:
network interface settings
auto lo
iface lo inet loopback
iface eth0 inet manual
iface eth1 inet manual (lan network)
iface eth3 inet manual
iface eth4 inet manual
iface eth6 inet manual
auto vmbr1 (lan network)
iface vmbr1 inet static
address 10.0.0.2
netmask 255.255.0.0
bridge_ports eth1
bridge_stp off
bridge_fd 0
auto vmbr2 (wan network for pfsense)
iface vmbr2 inet manual
bridge_ports eth6
bridge_stp off
bridge_fd 0
As you can see we didn't define anything on the proxmox server but only bridged the eth6 port to vmbr2.
On the pfsense server I have defined the gateway and ipaddress I received from our isp but this is not working.
I think I have to define more on the proxmox server but I don't know what or how...
I hope someone can help me a little bit.
thanks in advance