Basic iptables usage

Iptables is a program that allows you to configure Linux's built-in firewall. By default, no rules are set, meaning the firewall will accept all connections. This guide covers the basics of working with iptables. To execute any of the below commands, you will need to be logged in to your VPS via SSH.

To list all current iptables rules:

# iptables -L

To flush/clear all current firewall rules:

# iptables -F

 

To stop/disable iptables temporarily:

# service iptables save

# service iptables stop

 

To restart the iptables service:

# service iptables restart

or

# /etc/rc.d/init.d/iptables restart

(Usage: /etc/rc.d/init.d/iptables start|stop|restart|condrestart|status|panic|save)

 
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Installing CSF (ConfigServer Firewall) on a server

This guide will walk you through installing CSF on a VPS/Dedicated server. Preparing the...

How to SSH into your VPS?

After receiving your VPS login details, the first thing you'll want to do is log in to the VPS....

How to install Python with mod_wsgi on a CentOS VPS or Server with cPanel?

The world knows that cPanel/WHM is not too Django, or python friendly. However, this is a step...

How to Find the folder with most files / inodes?

To find the folder with most files or inodes run the following command:find / -xdev -printf...

How do I upload files large or small to my VPS server?

We don't do posting and going to data centre anymore to upload files.Also uploading via any of...