crossroad |
|||
crossroad implements a set of firewall rules,
based on a specific configuration, using iptables.
It implements
The basic reason of existence of crossroad, compared to other scripts that do the same things, is the fact that it is easy to specify the configuration. This is because the configuration file allows grouping of iptables rules in a logical manner. You can specify a rule in the config file to forward four ports and two protocols coming in over two external interfaces in one rule. crossroad will resolve this into 4 * 2 * 2 = 16 iptables rules. A sample rule might be $DNAT{"DNAT WWW traffic"} = { "in-interface" => "ext", proto => "tcp", dport => "http https", "to-destination" => "192.168.1.2" };This rules performs dnat on packets coming in from the external interface to the http and https ports of the destination.
The latest source release of crossroad is 0.1.2 (2003-04-15). |
|||
Even bums don't not got a website |