en:linux:iptables_einrichten

Draft Newest approved | Approver: psycore

This is an old revision of the document!


Set up iptables

The following command lists all valid rules for iptables:

iptables -L
apt-get update
apt-get install iptables-persistent
nano /etc/iptables.test.rules
^O
^X

The iptables.test.rules file can now be edited.

iptable rules can now be defined accordingly.

iptables-save > /etc/iptables.up.rules
nano /etc/network/if-pre-up.d/iptables
^O
^X

The file /etc/network/if-pre-up.d/iptables is executed at system startup and loads the corresponding firewall rules. The following lines must be inserted here:

#!/bin/bash
 /sbin/iptables-restore < /etc/iptables.up.rules

Now make the file executable and that's it:

chmod +x /etc/network/if-pre-up.d/iptables
  • en/linux/iptables_einrichten.1707078814.txt.gz
  • Last modified: 2024/02/04 21:33
  • by 135.181.140.143