en:linux:firewall:iptables_einrichten

Approved 2024/01/28 13:09 by psycore (version: 1) | Approver: psycore

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/firewall/iptables_einrichten.txt
  • Last modified: 2024/01/28 13:07
  • by psycore