You are not logged in.
I am not able to get my ufw rules working. As far as I understand, the default behavior is to deny all incoming connections thus the command
ufw allow from 192.168.0.101 to any port http
should enable incoming http connections for the specific ip. However, the requests are blocked by the firewall. I've also tried to explicitly deny and then allow but it isn't working either.
The output of ufw status verbose is
To Action From
-- ------ ----
631/tcp ALLOW IN Anywhere
22 ALLOW IN Anywhere
80 ALLOW IN 192.168.0.101
631/tcp (v6) ALLOW IN Anywhere (v6)
22 (v6) ALLOW IN Anywhere (v6)
Offline
sanity check - have you got a service running on port 80 and granted access permission to more than localhost?
[edit: typo]
Last edited by paulkerry (2017-05-18 19:21:42)
Offline
Uhm, i have nginx running and there is only one server directive that listens to port 80.
Offline
As mentioned on https://wiki.archlinux.org/index.php/Un … d_Firewall post...
ufw show raw
and
iptables -S
Offline