[SOLVED] Proxmox mit Proxymanager aufsetzen

Dec 2, 2024
4
2
3
Guten Abend,
ich versuche seit geraumer Zeit eine Proxmox PVE über Hetzner aufzusetzen nach folgendem (eigentlich sehr gut verständlichen) Vortrag.

https://media.ccc.de/v/2024-408-pro...erke-und-nur-eine-ffentliche-ip-adresse#t=796

so sieht meine interfaces Datei (PVE) aus:

Code:
source /etc/network/interfaces.d/*

auto lo
iface lo inet loopback

auto enp34s0
iface enp34s0 inet static
        address xxx.x.xx.xxx/27
        gateway xxx.x.xx.xxx

        post-up echo 1 > /proc/sys/net/ipv4/ip_forward
        post-up         iptables -t nat -A PREROUTING -i enp34s0 -p tcp -m multiport ! --dport 8006,22 -j DNAT --to 10.10.100.252
        post-up         iptables -t nat -A PREROUTING -i enp34s0 -p udp -j DNAT --to 10.10.100.252

auto vmbr100
iface vmbr100 inet static
        address 10.10.100.254/24
        bridge-ports none
        bridge-stp off
        bridge-fd 0

        post-up         iptables -t nat -A POSTROUTING -S '10.10.100.0/24' -o enp34s0 -j MASQUERADE
        post-down         iptables -t nat -D POSTROUTING -S '10.10.100.0/24' -o enp34s0 -j MASQUERADE

und so die des LXC Containers

Code:
auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
        address 10.10.100.252/24

Fällt jemandem sofort ins Auge, weshalb ich ausgehend von Containern keinen Zugriff in das Internet habe?
Komme hier alleine leider nicht mehr weiter.
Viele Grüße !
 
Last edited:
  • Like
Reactions: Johannes S

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!