Replies: 2 comments 9 replies
-
Hi @Bogdan107 , Your rule to allow everything from that user is correct, but the daemon only intercepts TCP, UDP and UDPLITE, so if the DefaultAction is deny, the rest of the protocols are denied. In order to allow ICMP for example, your opensnitch/daemon/system-fw.json Line 156 in 7347afd And there should be a rule added to the nftables ruleset: $ sudo nft list ruleset
table inet mangle {
chain prerouting {
type filter hook prerouting priority mangle; policy accept;
}
chain output {
type filter hook output priority mangle; policy accept;
>>>>>>>> icmp type { echo-reply, echo-request } accept
ct state related,new queue flags bypass to 0 |
Beta Was this translation helpful? Give feedback.
-
How to enable |
Beta Was this translation helpful? Give feedback.
-
I have config:
I have next rule:
But commands, like
ping 1.1.1.1
andmtr -t 8.8.8.8
are fails.The only one trigger - is rules:
If I remove it
nft delete table ip mangle && nft delete table ip6 mangle
, thenping
andmtr
are worked.But them work less than a minute.
After maximum of one minute - opensnitch re-add this
mangle
rules andping
/mtr
commands stop working.I have
Preferences/Nodes/Default action when GUI is disconnected = deny
, but this option has no effect -ping
/mtr
are blocked in any position of this option.How to really enable full access to network for a specified user?
Beta Was this translation helpful? Give feedback.
All reactions