You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On macOS, Invoker uses PF to set up forwarding rules (80 -> 23401, 443 -> 23402)*. Sometimes this setup conflicts with other applications that manage firewall rules, such as some VPN apps and Docker Desktop.
These applications set the PF option set skip on lo0 which skips any processing on the loopback interface, effectively disabling Invoker's forwarding rules. The way you can check if you're affected by this exact issue is:
On macOS, Invoker uses PF to set up forwarding rules (80 -> 23401, 443 -> 23402)*. Sometimes this setup conflicts with other applications that manage firewall rules, such as some VPN apps and Docker Desktop.
These applications set the PF option
set skip on lo0
which skips any processing on the loopback interface, effectively disabling Invoker's forwarding rules. The way you can check if you're affected by this exact issue is:If it says just
lo0
, forwarding should work. If it sayslo0 (skip)
then the forwarding rules will not work.Workaround: reset PF options by running
sudo pfctl -O -f /etc/pf.conf
.A possible solution is to switch to userspace forwarding, like the
socat
-based solution Invoker uses on Linux.* Ports are set dynamically during setup depending on port availability, you might have different target ports.
The text was updated successfully, but these errors were encountered: