Hello all,
I'm installed ProxMox in Hetzner server with 2 IP to the internet, one of them being is virtual.
The idea here is to set one of the IP for management for ProxMox and pfSense and the other for traffic with pfSense monitoring that traffic from the VMs.
I already have pfSense installed and configure the virtual IP to WAN and a normal internal internal network.
I've followed instructions from Hetzner documentation and I have no clue why the pfSense can't reach the any external links.
https://community.hetzner.com/tutorials/install-and-configure-proxmox_ve
Is there something wrong with this configuration?
I'm I missing something in the bridge networking?
Any help would be highly appreciated.
I'm installed ProxMox in Hetzner server with 2 IP to the internet, one of them being is virtual.
The idea here is to set one of the IP for management for ProxMox and pfSense and the other for traffic with pfSense monitoring that traffic from the VMs.
I already have pfSense installed and configure the virtual IP to WAN and a normal internal internal network.
I've followed instructions from Hetzner documentation and I have no clue why the pfSense can't reach the any external links.
https://community.hetzner.com/tutorials/install-and-configure-proxmox_ve
Is there something wrong with this configuration?
I'm I missing something in the bridge networking?
Code:
source /etc/network/interfaces.d/*
auto lo
iface lo inet loopback
iface lo inet6 loopback
# ProxMox Management
auto enp3s0
iface enp3s0 inet static
address xxx.xxx.xxx.145/26
gateway xxx.xxx.xxx.129
up route add -net xxx.xxx.xxx.128 netmask 255.255.255.192 gw xxx.xxx.xxx.129 dev enp3s0
# route xxx.xxx.xxx.128/26 via xxx.xxx.xxx.129
iface enp3s0 inet6 static
address 2a01:4f8:212:2490::2/64
gateway fe80::1
iface eth0 inet manual
# Bridge configuration with extra IP WAN pfSense
auto vmbr0
iface vmbr0 inet static
address xxx.xxx.xxx.190/26
bridge_ports none
bridge_stp off
bridge_fd 0
# Internal network
auto vmbr1
iface vmbr1 inet static
address 192.168.30.1
netmask 255.255.255.0
bridge-ports none
bridge-stp off
bridge-fd 0
Any help would be highly appreciated.