blocking ip and undoing it

This commit is contained in:
Morgan
2019-10-12 14:19:55 +02:00
committed by GitHub
parent ebc8533f05
commit 4ca85015ae

View File

@ -2,3 +2,9 @@
* `curl ifconfig.co`
* `curl ident.me`
### Block an IP with `iptables`
* `iptables -A INPUT -s 35.196.128.87 -j DROP`
### Undo the previous rule
* `iptables -D INPUT -s 35.196.128.87 -j DROP`