Hallo,
ich habe bei IONOS auf einem VPS-Server eine Proxmox-VE (auf Debian basierend) installiert, welcher reibungslos funktioniert.
Beim Einrichten einer VM (Mail-Server) kann diese sich updaten und ist somit mit dem I-Net verbunden.
Ich schaffe es nicht auf die Web-Seite der VM zu gelangen.
Proxmox hat eine eigene feste IP, welche erreichbar ist.
Die VM hat ebenfalls eine eigene feste IP, die ich von Proxmox ebenfalls erreiche.
Anbei die zugehörige Konfiguration:
source /etc/network/interfaces.d/*
auto lo
iface lo inet loopback
iface ens6 inet manual
# The primary network interface
allow-hotplug ens6
iface ens6 inet static
address 85.xxx.xxx.49/32
gateway 85.215.155.1
up route add -net 85.215.155.1 netmask 255.255.255.255 dev ens6
# The secondary network interface
iface ens6 inet static
address 85.xxx.xxx.179
auto vmbr0
iface vmbr0 inet static
address 85.xxx.xxx.179/32
gateway 85.215.155.1
hwaddress be:dd:0b:e4:1e:46
bridge_ports none
bridge_stp off
bridge_fd 0
bridge_maxwait 0
pre-up brctl addbr vmbr0
post-up echo 1 > /proc/sys/net/ipv4/ip_forward
post-up iptables -t nat -A POSTROUTING -j MASQUERADE
post-down iptables -t nat -F
auto vmbr10
iface vmbr10 inet static
address 10.0.0.254
gateway 10.0.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 '10.0.0.0/24' -o vmbr0 -j MASQUERADE
post-up iptables -t nat -A PREROUTING -d 85.xxx.xxx.179 -j DNAT --to-destination 10.0.0.2
post-up iptables -t nat -A POSTROUTING -j MASQUERADE
post-up iptables -t nat -A POSTROUTING -s '10.0.0.0/24' -o vmbr0 -j SNAT --to-source 85.xxx.xxx.179
post-down iptables -t nat -D POSTROUTING -s '10.0.0.0/24' -o vmbr0 -j SNAT --to-source 85.xxx.xxx.179
post-down iptables -t nat -F
Hat jemand einen Tip, wo mein gedanklicher Fehler liegt?
Danke Pusch134
ich habe bei IONOS auf einem VPS-Server eine Proxmox-VE (auf Debian basierend) installiert, welcher reibungslos funktioniert.
Beim Einrichten einer VM (Mail-Server) kann diese sich updaten und ist somit mit dem I-Net verbunden.
Ich schaffe es nicht auf die Web-Seite der VM zu gelangen.
Proxmox hat eine eigene feste IP, welche erreichbar ist.
Die VM hat ebenfalls eine eigene feste IP, die ich von Proxmox ebenfalls erreiche.
Anbei die zugehörige Konfiguration:
source /etc/network/interfaces.d/*
auto lo
iface lo inet loopback
iface ens6 inet manual
# The primary network interface
allow-hotplug ens6
iface ens6 inet static
address 85.xxx.xxx.49/32
gateway 85.215.155.1
up route add -net 85.215.155.1 netmask 255.255.255.255 dev ens6
# The secondary network interface
iface ens6 inet static
address 85.xxx.xxx.179
auto vmbr0
iface vmbr0 inet static
address 85.xxx.xxx.179/32
gateway 85.215.155.1
hwaddress be:dd:0b:e4:1e:46
bridge_ports none
bridge_stp off
bridge_fd 0
bridge_maxwait 0
pre-up brctl addbr vmbr0
post-up echo 1 > /proc/sys/net/ipv4/ip_forward
post-up iptables -t nat -A POSTROUTING -j MASQUERADE
post-down iptables -t nat -F
auto vmbr10
iface vmbr10 inet static
address 10.0.0.254
gateway 10.0.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 '10.0.0.0/24' -o vmbr0 -j MASQUERADE
post-up iptables -t nat -A PREROUTING -d 85.xxx.xxx.179 -j DNAT --to-destination 10.0.0.2
post-up iptables -t nat -A POSTROUTING -j MASQUERADE
post-up iptables -t nat -A POSTROUTING -s '10.0.0.0/24' -o vmbr0 -j SNAT --to-source 85.xxx.xxx.179
post-down iptables -t nat -D POSTROUTING -s '10.0.0.0/24' -o vmbr0 -j SNAT --to-source 85.xxx.xxx.179
post-down iptables -t nat -F
Hat jemand einen Tip, wo mein gedanklicher Fehler liegt?
Danke Pusch134