Hello all,
I'm new in proxmox and I have this issue:
I installed Proxmox 4.4 in Physical server that have two physical network card (2 NIC).
Host OS/Proxmox:
This is my current network configuration file in one of my VM (Guest OS/Centos 7):
My questions are:
Can I use Interface vmbr0 (local) on my VMs to access them from outside my local network (public internet)?
Is there any additional configuration to get these things work?
Regards,
I'm new in proxmox and I have this issue:
I installed Proxmox 4.4 in Physical server that have two physical network card (2 NIC).
Host OS/Proxmox:
- vmbr0 >>bridge>> eth0 > Local IP (172.16.x.x)
- vmbr1 >>bridge>> eth1 > Public IP (202.x.x.x)
- eth0 >>bridge>> vmbr0 (172.16.x.x)
Code:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet manual
#IP Lokal
auto eth1
iface eth1 inet manual
#IP Publik
auto vmbr0
iface vmbr0 inet static
address 172.16.x.x
netmask 255.255.255.0
gateway 172.16.x.x
bridge_ports eth0
bridge_stp off
bridge_fd 0
auto vmbr1
iface vmbr1 inet manual
address 202.x.x.x
netmask 255.255.255.0
gateway 202.x.x.x
bridge_ports eth1
bridge_stp off
bridge_fd 0
This is my current network configuration file in one of my VM (Guest OS/Centos 7):
Code:
DEVICE=eth0
HWADDR=0A:13:4F:E1:AD:ED
TYPE=Ethernet
UUID=534a5ea9-ce94-4fdc-9eb7-c284846c7021
ONBOOT=yes
NM_CONTROLLED=yes
BOOTPROTO=static
IPADDR=172.16.x.x
NETMASK=255.255.255.0
GATEWAY=172.16.x.x
DNS1=172.16.x.x
DNS2=8.8.8.8
My questions are:
Can I use Interface vmbr0 (local) on my VMs to access them from outside my local network (public internet)?
Is there any additional configuration to get these things work?
Regards,