#!/bin/sh
#	antispoofppp-down-iptables 0.01
#
#	Quitar del cortafuegos regla antispoof a la IP dinamica asignada al PPP
#	Remove from firewall antispoof rule to the dynamic IP asigned to PPP
#
PATH=/usr/lib/firewall-easy:/sbin:/usr/sbin:/bin:/usr/bin

IFACE_INET=$PPP_IFACE
IP_DINAMICA=$PPP_LOCAL


# QUITAR LA REGLA 1 ANTISPOOF DE IP DINAMICA ASIGNADA POR PROVEEDOR ISP
# No aceptar entradas de inet reclamando ser "la IP asignada" (spoof)

# Remove input rule       denying in PPP iface   from PPP IP    to ANYWHERE
echorun iptables -D IN -j DROPLOG -i $IFACE_INET -s $IP_DINAMICA
