Report this

What is the reason for this report?

how to write iptable block rule in the /etc/iptables/rules.v4?

Posted on January 23, 2015

I can block some ip to link my vps in command line : sudo iptables -A INPUT -s [IP ADDRESS] -j DROP

how to write the iptable block rule in the /etc/iptables/rules.v4?



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

It may not be the easiest way / best way, but I use iptables-persistent to do so Once installed, launch sudo dpkg-reconfigure iptables-persistent to save your iptables

You can run the following command to save the current rules in /etc/iptables/rules.v4 and /etc/iptables/rules.v6:

sudo service iptables-persistent save

root@change:~# sudo iptables -A INPUT -s 193.201.224.186 -j DROP root@change:~# cat /etc/iptables/rules.v4

Generated by iptables-save v1.4.14 on Fri Jan 23 12:42:00 2015

*filter :INPUT ACCEPT [415:61359] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [398:101696] COMMIT

Completed on Fri Jan 23 12:42:00 2015

root@change:~#

Why there is no 193.201.224.186 in the file /etc/iptables/rules.v4?

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.