VM uses Host IP outgoing instead there own public IP

djdomi

Renowned Member
Mar 1, 2014
35
2
73
Dear All,

I am using Proxmox already a while ago, my setup works sofar fine, except that the Mailcow VM which has only its public IP, uses for outgoing connections (SMTP)
And this makes trouble due to my point of view, something in the routing is not working well

auto lo
iface lo inet loopback

auto ens3
iface ens3 inet static
address 213.x.161.x
netmask 255.255.252.0
gateway 213.x.160.x
post-up echo 1 > /proc/sys/net/ipv4/conf/ens3/proxy_arp
post-up /etc/iptab_up
post_down /etc/iptab_down


auto vmbr0 vmbr1
#NAT sub network, not bridged
iface vmbr0 inet static
address 10.0.0.1
netmask 255.0.0.0
bridge_ports none
bridge_stp on
bridge_fd 0
post-up echo 1 > /proc/sys/net/ipv4/ip_forward
post-up iptables -t nat -A POSTROUTING -s '10.0.0.0/8' -o ens3 -j MASQUERADE
post-down iptables -t nat -D POSTROUTING -s '10.0.0.0/8' -o ens3 -j MASQUERADE

#private sub network2
#bridged to ens3
iface vmbr1 inet static
address 10.0.0.2
netmask 255.0.0.0
bridge_ports none
bridge_stp on
bridge_fd 0
post-up route add 188.x.44.x dev vmbr1
post-up route add 185.x.10.x dev vmbr1
post-down route del 185.x.10.x dev vmbr1
post-down route del 188.x.44.x dev vmbr1
#post-up iptables -t nat -A POSTROUTING -s '188.68.44.110/32' -o ens3 -j MASQUERADE
#post-down iptables -t nat -D POSTROUTING -s '188.68.44.110/32' -o ens3 -j MASQUERADE

auto lo
iface lo inet loopback

auto ens3
iface ens3 inet static
address 213.x.161.x
netmask 255.255.252.0
gateway 213.x.160.x
post-up echo 1 > /proc/sys/net/ipv4/conf/ens3/proxy_arp
post-up /etc/iptab_up #only rules for ports
post_down /etc/iptab_down


auto vmbr0 vmbr1
#NAT sub network, not bridged
iface vmbr0 inet static
address 10.0.0.1
netmask 255.0.0.0
bridge_ports none
bridge_stp on
bridge_fd 0
post-up echo 1 > /proc/sys/net/ipv4/ip_forward
post-up iptables -t nat -A POSTROUTING -s '10.0.0.0/8' -o ens3 -j MASQUERADE
post-down iptables -t nat -D POSTROUTING -s '10.0.0.0/8' -o ens3 -j MASQUERADE

#private sub network2
#bridged to ens3
iface vmbr1 inet static
address 10.0.0.2
netmask 255.0.0.0
bridge_ports none
bridge_stp on
bridge_fd 0
post-up route add 188.x.44.x dev vmbr1
post-up route add 185.x.10.x dev vmbr1
post-down route del 185.x.10.x dev vmbr1
post-down route del 188.x.44.x dev vmbr1
#post-up iptables -t nat -A POSTROUTING -s '188.x.44.x/32' -o ens3 -j MASQUERADE
#post-down iptables -t nat -D POSTROUTING -s '188.x.44.x/32' -o ens3 -j MASQUERADE

#### Someone told me to NAT the public ip, but it seems to have no effect.




default via 213.x.160.x dev ens3 onlink
10.0.0.0/8 dev vmbr0 proto kernel scope link src 10.0.0.1
10.0.0.0/8 dev vmbr1 proto kernel scope link src 10.0.0.2
185.x.10.x dev vmbr1 scope link
188.x.44.x dev vmbr1 scope link
213.x.160.x/22 dev ens3 proto kernel scope link src 213.x.161.x

Anyone has some suggestions to fix that? i would really be happy if someone could tell me a hint :)


Oder in Deutsch:

Das routing scheint probleme zu machen, es funktioniert soweit alles wie es soll, außer dass die Mailcow VM nach außen mit der Public-IP des Hosts anstatt der eigenen Arbeitet. Jemand eine idee?
 
Not sure I get what you want to achieve?
But if you have 2 dedicated public ips: `213.x.161.x` and `188.x.44.x` or is it `188.x.10.x`?!
You could use one of the IP's for masquerading, while configuring the second one only inside your Mailcow guest (as long as they are in the same layer2 network you just give your mailcow-guest an interface which is linked to the public bridge and configure it's IP there ) - a regular bridged setup (for this guest):
https://pve.proxmox.com/pve-docs/pve-admin-guide.html#sysadmin_network_configuration

I hope this helps!
 
hi thanks for your answer,

the 213 ip is the main ip for the container for nat, moreover i forgot to tell that there are 2 other ips, which work fine but the Problem lets say is

incoming works well
outgoing works also but every connections outgoing connect over 213 and thats what i not understand

edit;
i forgot, the mailcow vm has the public ip directly assigned
 
Last edited:

About

The Proxmox community has been around for many years and offers help and support for Proxmox VE, Proxmox Backup Server, and Proxmox Mail Gateway.
We think our community is one of the best thanks to people like you!

Get your subscription!

The Proxmox team works very hard to make sure you are running the best software and getting stable updates and security enhancements, as well as quick enterprise support. Tens of thousands of happy customers have a Proxmox subscription. Get yours easily in our online shop.

Buy now!