Recent content by bobw2

  1. B

    ACME certs with DNS plugin

    I had originally used quotes in the file used for --data, expecting it to be evaluated by the shell. But instead it is read and split on "=" without any further processing. Check the output of pvenode acme plugin config ... to make sure the data values are as you expect. Using acmedns, my...
  2. B

    Routed Configuration Port Forwarding

    The problem was that your DNAT rules were matching traffic coming in the bridge: -i vmbr0 where you should have matched on the WAN-facing interface: eno1 post-up iptables -t nat -A PREROUTING -i eno1 -p tcp --dport 1194 -j DNAT --to 10.10.10.20:1194 etc.