how to install Proxmox VE 5.1 on debian Stretch

newpveuser912

New Member
Sep 12, 2018
2
0
1
24
hello

I had know how to Install Proxmox VE 5.2 on Debian Stretch use

Code:
apt install proxmox-ve postfix open-iscsi

but I want to install 5.1 for this way

because I need use nat GUI (it not for support 5.2) and my server do not have IPMI


Thanks in advance
 
Why don't do simply configure a bridge with NAT and use that?

in 5.2 I use NAT mode and use iptables to open a port

I found proxmox VE firewall rules can not control iptables rules

E.g : I use iptables to open port for VM

post-up iptables -t nat -A PREROUTING -i vmbr0 -p tcp --dport 1022 -j DNAT --to 192.168.1.1:22
post-down iptables -t nat -D PREROUTING -i vmbr0 -p tcp --dport 1022 -j DNAT --to 1192.168.1.1:22

and in proxmox VE firewall I set a rule

IN ACCEPT -p tcp -dport 1022 -source 10.10.10.10

BUT I found I can connect to port 1022 for any ip

Proxmox VE firewall not work properly because this is iptables rule

so

I think that the 5.1 version has NAT GUI


I try to find a way let proxmox VE firewall can control port forward


Maybe you have a better way?

thank you !!