Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > dca483b59ba61f3fa092de932ddd570e > files > 990

nuface-2.0.14-2mdv2009.1.i586.rpm

+++++++++++++++++++++++++++++
NuFace: Locale iptables rules
+++++++++++++++++++++++++++++

Since NuFace 2.0.0, it's possible to define your own iptables rules using
/var/lib/nuface/local_rules.d/ directory.

Filename format is "TABLE*.rules" (pre) or "TABLE*.rules.post" (post),
where "*" means "any string" and TABLE is one of the Netfilter table:

 - filter: INPUT, OUTPUT, FORWARD
 - nat: PREROUTING, POSTROUTING, OUTPUT
 - mangle: PREROUTING, INPUT, FORWARD, OUTPUT, POSTROUTING

Examples of complete filenames:

  /var/lib/nuface/local_rules.d/filter_https.rules
  /var/lib/nuface/local_rules.d/nat-masquerading.rules

File format is iptables-restore: it's like calling iptables but without the
"iptables " prefix. Example, to get this rules before any other NuFace rules: ::

   iptables -A OUTPUT -p tcp --dport 80 -d 192.168.0.4 -j ACCEPT
   iptables -A OUTPUT -p tcp --dport 8080 -d 192.168.0.5 -j ACCEPT

create the file /var/lib/nuface/local_rules.d/filter_http.rules: ::

   -A OUTPUT -p tcp --dport 80 -d 192.168.0.4 -j ACCEPT
   -A OUTPUT -p tcp --dport 8080 -d 192.168.0.5 -j ACCEPT