Hey there,
i was wondering if someone could help on a question that chases me now for about a week.
I need to setup a server with proxmox. The server has got 3 NIC`s and 3 public IPV4-Addresses.
I do need to achieve the following setup:
I hope my intention is clear with this sheme.
How should my network.conf look like for this setup?
This is what it actually looks but somehow with this configuration I loose my complete connectivity to the internet.
Do I have to route at this point, when i'm using more than one NIC?
I would appreciate any help.
MrBrown
i was wondering if someone could help on a question that chases me now for about a week.
I need to setup a server with proxmox. The server has got 3 NIC`s and 3 public IPV4-Addresses.
I do need to achieve the following setup:
Code:
INTERNET ---NIC1(IPV4_1)---| |----VM1(Linux) [IPV4_1]
| |----VM2(Linux) [IPV4_2:80]
INTERNET ---NIC2(IPV4_2)------PROXMOX[IPV4_2:8006]---|
| |----VM3(Linux) [IPV4_2:8080]
INTERNET ---NIC2(IPV4_3)---| |----VM4(Windows) [IPV4_3]
I hope my intention is clear with this sheme.
How should my network.conf look like for this setup?
This is what it actually looks but somehow with this configuration I loose my complete connectivity to the internet.
Do I have to route at this point, when i'm using more than one NIC?
Code:
auto lo
iface lo inet loopback
#Nic1
auto eth1
allow-hotplug eth0
iface eth0 inet static
address 141.xxx.xxx.49
netmask 255.255.254.0
gateway 141.xxx.xxx.1
dns-nameservers 141.xx.xx.3 141.xx.xx.4
#Nic2
auto eth1
iface eth0 inet static
address 141.xxx.xxx.50
netmask 255.255.254.0
gateway 141.xxx.xxx.1
dns-nameservers 141.xx.xx.3 141.xx.xx.4#Nic3
#Nic3
auto eth2
iface eth2 inet static
address 141.xxx.xxx.51
netmask 255.255.254.0
gateway 141.xxx.xxx.1
dns-nameservers 141.xx.xx.3 141.xx.xx.4
I would appreciate any help.
MrBrown