Recent content by nebula

  1. N

    Route VM traffic through Linux box

    Sadly, with my configuration the way proxmox does it's networking I couldn't get it working correctly. So I switched back to ESXI, and am just using 2 port groups, works much easier than all of the interfaces proxmox creates. Thanks for the reply though.
  2. N

    [SOLVED] Proxmox iptables firewall

    you would put whatever ip the windows vm is using to send traffic out currently, which would probably be your private ip and the $whateverip is the public ip you wish to use
  3. N

    [SOLVED] Proxmox iptables firewall

    in iptables? no, but you can filter based on mac address/interface if you want instead of ips.
  4. N

    [SOLVED] Proxmox iptables firewall

    no you should be to do it directly on the host itself aka proxmox via command line like so: sudo iptables -t nat -A POSTROUTING -s $windowsip -j SNAT --to $whateverip
  5. N

    [SOLVED] Proxmox iptables firewall

    im not sure if it's possible via the PVE firewall, but you can just create a postrouting rule in the nat table with iptables
  6. N

    Route VM traffic through Linux box

    Hello, I am new to using Proxmox and I am wondering if it is possible to configure the network in a way like so: WAN traffic > Host(Proxmox) > VM (Linux box) > All other VMs I understand that I can use PFSense and local/private IPs, but my goal is to use public IPs on the VMs. I am also...