File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / miniupnpd / netfilter / ip6tables_init.sh
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Mon Jul 22 00:32:35 2013 UTC (10 years, 11 months ago) by misho
Branches: elwix, MAIN
CVS tags: v1_8p0, v1_8, HEAD
1.8

    1: #! /bin/sh
    2: # $Id: ip6tables_init.sh,v 1.1.1.1 2013/07/22 00:32:35 misho Exp $
    3: IPTABLES=/sbin/ip6tables
    4: 
    5: #change this parameters :
    6: EXTIF=eth0
    7: 
    8: #adding the MINIUPNPD chain for filter
    9: $IPTABLES -t filter -N MINIUPNPD
   10: #adding the rule to MINIUPNPD
   11: $IPTABLES -t filter -A FORWARD -i $EXTIF ! -o $EXTIF -j MINIUPNPD
   12: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>