Hi all,
I have a problem with my proxmox at Hetzner.
The system has two public IP addresses. My goal is to leave one IP address on the Proxmox, the second IP address should point to a pfSense.
At the moment I can reach the Proxmox without errors under the primary IP address of the system. The second IP address of the server I have also created in an interface and assigned exemplary to an Ubuntu VM to be able to check the functionality quickly.
The configuration currently looks like this:
cat /etc/network/interfaces on proxmox:
In the next step, I give my Ubuntu test VM the network adapter vmbr1 and insert the virtual MAC that was provided to me by Hetzner.
The problem is that I do not get a network from my Ubuntu client. I configure the network on the Ubuntu client statically, the same as listed above.
Neither a ping, dnslookup or anything else works.
Any of you guys might have a tip for me?
Thanks!
I have a problem with my proxmox at Hetzner.
The system has two public IP addresses. My goal is to leave one IP address on the Proxmox, the second IP address should point to a pfSense.
At the moment I can reach the Proxmox without errors under the primary IP address of the system. The second IP address of the server I have also created in an interface and assigned exemplary to an Ubuntu VM to be able to check the functionality quickly.
The configuration currently looks like this:
cat /etc/network/interfaces on proxmox:
Bash:
auto lo
iface lo inet loopback
iface enp4s0 inet manual
auto vmbr0
iface vmbr0 inet static
address 11.11.11.11 #primary public IP
hwaddress aa:aa:aa #hw Adress of the physical NIC
netmask 255.255.255.192
pointopoint 11.11.11.1 #Gateway IP provided by hetzner
gateway 11.11.11.1 #Gateway IP provided by hetzner
bridge_ports enp4s0
bridge_stp off
bridge_fd 1
auto vmbr1
iface vmbr1 inet static
address 22.22.22.22 #2nd public IP
netmask 255.255.255.192
bridge_ports none
bridge_stp off
bridge_fd 0
In the next step, I give my Ubuntu test VM the network adapter vmbr1 and insert the virtual MAC that was provided to me by Hetzner.
The problem is that I do not get a network from my Ubuntu client. I configure the network on the Ubuntu client statically, the same as listed above.
Neither a ping, dnslookup or anything else works.
Any of you guys might have a tip for me?
Thanks!