Downtown Doug Brown Wiki

Thoughts from a combined Apple/Linux/Windows geek

User Tools

Site Tools


ubuntu:iptables_rules

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
ubuntu:iptables_rules [2014/08/12 20:29] dougubuntu:iptables_rules [2019/05/27 13:31] (current) doug
Line 3: Line 3:
 Here's how I set up a firewall on a server. This is confirmed to work in Ubuntu 10.04, 12.04, and 14.04. Here's how I set up a firewall on a server. This is confirmed to work in Ubuntu 10.04, 12.04, and 14.04.
  
-First of all, ''sudo ''''iptables''''-L''''-n''''-v'' will probably show no rules. Right?+First of all, ''sudo ''''iptables ''''-L ''''-n ''''-v'' will probably show no rules. Right?
  
 Let's create some rules, starting with this template: Let's create some rules, starting with this template:
Line 39: Line 39:
 ''sudo vi /etc/network/if-pre-up.d/iptables'' ''sudo vi /etc/network/if-pre-up.d/iptables''
  
-Put the following into it:+Put the following into it (replace eth0 with the name of your network interface):
  
 <file> <file>
 #!/bin/sh #!/bin/sh
-/sbin/iptables-restore </etc/iptables.rules+if [ "${IFACE}" = eth0 ]; then 
 +    /sbin/iptables-restore < /etc/iptables.rules 
 +fi
 </file> </file>
  
Line 51: Line 53:
  
 That should do the trick! Confirm that your firewall rules come up correctly on boot. That should do the trick! Confirm that your firewall rules come up correctly on boot.
 +
  
ubuntu/iptables_rules.1407900556.txt.gz · Last modified: 2014/08/12 20:29 by doug