Different system developments and workrelated stuff in progress.
This is mainly for dumping complete systems, non-specific code and configs.
Iptables
Blocking an IP out from at system.
iptables -I INPUT -s xxx.xxx.xxx.xxx -j DROP
To remove the block again, use -D insted of -I in the above command. |