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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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`