diff options
author | Gaurav Sinha <gaurav.sinha@vyatta.com> | 2012-06-06 21:05:04 -0700 |
---|---|---|
committer | Gaurav Sinha <gaurav.sinha@vyatta.com> | 2012-06-06 21:05:04 -0700 |
commit | 875b72509d5396a67d803d24f25aad7ab811d256 (patch) | |
tree | 6359218be398d6faed884786a769e0d153740307 /scripts | |
parent | 2bee06facb9aaccd68793f5d32ba383489c7b543 (diff) | |
parent | fcd91bbdc7cfcc87830d8fec6c3e4adfb78cdcfc (diff) | |
download | vyatta-cfg-firewall-875b72509d5396a67d803d24f25aad7ab811d256.tar.gz vyatta-cfg-firewall-875b72509d5396a67d803d24f25aad7ab811d256.zip |
Merge branch 'user_space_helpers' into pacifica
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/firewall/firewall.init.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/firewall/firewall.init.in b/scripts/firewall/firewall.init.in index 49991d8..d7364fe 100644 --- a/scripts/firewall/firewall.init.in +++ b/scripts/firewall/firewall.init.in @@ -52,6 +52,11 @@ start () { # conection tracking timeout chain iptables -t raw -N VYATTA_CT_TIMEOUT iptables -t raw -A VYATTA_CT_TIMEOUT -j RETURN + + # user space helpers chain, enables helpers using iptables --helper. + # FTP, sip and h323 to use this chain later on. + iptables -t raw -N VYATTA_CT_HELPER + iptables -t raw -A VYATTA_CT_HELPER -j RETURN # setup vrrp backup transition chain # we need to filter traffic to the vrrp mac addresses |