Commit e2f1246a authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Tests - Tools - Firewall Agent:

- Update example commands
parent 3b14aafe
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -9,6 +9,10 @@
## Example Commands:

```bash

# WORKS to block traffic:
sudo nft insert rule ip filter FORWARD iifname "enp0s3" tcp dport 85 drop

sudo nft add table ip filter
sudo nft add chain ip filter input  {type filter hook input priority filter ; policy accept; }
sudo nft add chain ip filter output {type filter hook output priority filter; policy accept; }