This is a subsystem for working with network packages, which passes through its filter all connections on the server. Let’s take a closer look at the IPTables configuration.
General information
IPTables is already built into the main Linux kernel by default, but the tools for working with it in many distributions are not available by default, so let’s use the command to install the utility.
Debian / Ubuntu
CentOS [Fedora]
Setting
After installing the utility, we will proceed to its detailed configuration.
Arguments
Opening port(s)
First, let’s check our list of rules:
Let’s try to open oneTCP-порт 80 for входящих соединений:
Let’s check the list again...
Now let’s try to open the UDP port range from 25565 to 25570 for outgoing connections:
Let’s check the result.
Want to close all inbound connections for TCP 250? No problem.
Rule removal
Now try to remove the rule that allows inbound connections for TCP 80:
Deletion of all rules
To do this, use the command
Preservation of established rules
By default, all the rules that have been created are applied until the next reboot and will be deleted during it. To avoid this, let’s save the IPTables rules that we created. To do this, use the appropriate command.
It worked. The rules are saved and will be active even after restarting our server!
Last updated