Search results

  1. H

    PVE 8 kernel flag(s) for text-based installer

    Thanks. Netboot said they will update it accordingly.
  2. H

    PVE 8 kernel flag(s) for text-based installer

    Hi, I am in a pickle. My VPS provider use SolusVM so there is no custom ISO. I tried to boot into netboot via IPXE but netboot template by default goes to GUI installer which throw xinit errors. At netboot discord they said if I can provide the flag required they will add it to default list...
  3. H

    Set-up with PiHole DNS & Nginx Proxy Manager

    Could it be that your masquerade rule have quote around the ip range? post-up iptables -t nat -A POSTROUTING -s '192.168.5.0/24' -o eno1 -j MASQUERADE post-down iptables -t nat -D POSTROUTING -s '192.168.5.0/24' -o eno1 -j MASQUERADE Maybe try change it to: post-up iptables -t...
  4. H

    [SOLVED] Route specific trafic when host have multiple public IPs

    I found the solution, this part need to be changed: post-up echo 1 > /proc/sys/net/ipv4/ip_forward post-up iptables -t nat -A POSTROUTING -o enp36s0f0 -j MASQUERADE To: post-up echo 1 > /proc/sys/net/ipv4/ip_forward post-up iptables -t nat -A POSTROUTING -s...
  5. H

    [SOLVED] Route specific trafic when host have multiple public IPs

    Can anyone help me? Is this too obvious but non-IT-background like I am could not see?
  6. H

    [SOLVED] Route specific trafic when host have multiple public IPs

    Hi, I purchased a second IP for my dedicated and would like to route web trafic through it. So far I can ping the second IP but cannot get to Caddy reverse proxy. I would like all VM and CT to be masquerated as IP_1 currently but Caddy CT should be on IP_2 both way. Thanks. auto lo iface lo...