Good afternoon.
I look through the forum and could not find an answer thought this topic is quite often asked. Seems I missed something.
I have a proxmox setup and want to create two LANs but let's focus on one as both LANs will be similar
so the question is mainly internal network setup related.
proxmox IP is A.A.A.A and its gateway is A.A.A.254
I want to create a LAN on 192.168.0.0/24 so I thought I could do it as follow (and as per https://pve.proxmox.com/wiki/Network_Configuration#_choosing_a_network_configuration)
Obviously, the VMs of this LAN are attached to bridge vmbr1 and networking, debian, is set as
but I can not access VM from host and host or NET from VM
error is Host Unreachable
routes seems fine to me
Host route
VM routes
Thanks for the help !
I look through the forum and could not find an answer thought this topic is quite often asked. Seems I missed something.
I have a proxmox setup and want to create two LANs but let's focus on one as both LANs will be similar
- LANs do not need to access host but host needs to access LANs
- one of the VM of each LAN will be accessible from the WEB but I assume I can here either create a specific vMAC from host provider
- if I need to access other VMs I will make temporary PREROUTING rules on the host
so the question is mainly internal network setup related.
proxmox IP is A.A.A.A and its gateway is A.A.A.254
I want to create a LAN on 192.168.0.0/24 so I thought I could do it as follow (and as per https://pve.proxmox.com/wiki/Network_Configuration#_choosing_a_network_configuration)
Code:
auto lo
iface lo inet loopback
iface eno1 inet manual
iface eno2 inet manual
auto vmbr0
iface vmbr0 inet dhcp
bridge-ports eno1
bridge-stp off
bridge-fd 0
#lan setup
auto vmbr1
iface vmbr1 inet static
address 192.168.0.1
netmask 255.255.255.0
bridge-ports none
bridge-stp off
bridge-fd 0
post-up echo 1 > /proc/sys/net/ipv4/ip_forward
post-up iptables -t nat -A POSTROUTING -s '192.168.0.1/24' -o vmbr0 -j MASQUERADE
post-down iptables -t nat -D POSTROUTING -s '192.168.0.1/24' -o vmbr0 -j MASQUERADE
Obviously, the VMs of this LAN are attached to bridge vmbr1 and networking, debian, is set as
Code:
address 192.168.0.3/24
gateway 192.168.01
dns-nameservers 8.8.8.8
but I can not access VM from host and host or NET from VM
error is Host Unreachable
Code:
ping 192.168.0.2
PING 192.168.0.2 (192.168.0.2) 56(84) bytes of data.
From 192.168.0.1 icmp_seq=1 Destination Host Unreachable
From 192.168.0.1 icmp_seq=2 Destination Host Unreachable
From 192.168.0.1 icmp_seq=3 Destination Host Unreachable
routes seems fine to me
Host route
Code:
target gateway source proto scope dev tbl
192.168.0.0 24 192.168.0.1 kernel link vmbr1
VM routes
Code:
target gateway source proto scope dev tbl
192.168.0.0 24 192.168.0.3 kernel link ens18
Thanks for the help !
Last edited: