You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First create a ipfilters firewall file. Call it ipfilter.firewall.rules for example. Here's an example: http://library.linode.com/securing-your-server#sph_creating-a-firewall
5
+
6
+
* -A means append the rule to the end of the table with the table specified, such as INPUT.
7
+
* -j means perform this action on matching the rule, REJECT for example.
8
+
* -i specifies the interface to listen on.
9
+
* -d specifies the destination including the network mask.
0 commit comments