#!/bin/bash
#

## Firewall Script
#  01-07-26  by Erik Wegner
#  icmp-local 
#

# Pfad zu IPTables
if test -z $IPTABLES ; then
	IPTABLES=/usr/sbin/iptables
fi

## Ports
#  Nicht-privilegierte = 1024-65535
P_HIGH=1024:65535

echo -e "\n# ICMP-Output "
echo "$IPTABLES -A OUTPUT -p ICMP --icmp-type echo-request -j ACCEPT"

