#!/bin/bash
#
# This file contains the user variable definitions.
#
# Curt Rebelein, Junior
# fw@rebby.com
#

########################
### binary locations ###
########################

IPT="/sbin/iptables"            # where iptables lives
IFCONFIG="/sbin/ifconfig"       # where ifconfig lives
ECHO="/bin/echo"                # where echo lives

#############################
### interface information ###
#############################

# External interface name
#    This is the name of your external interface (as gathered by ifconfig).
EXTIF="eth0"

###########################
### network information ###
###########################

# List of networks
#    This is a list of networks (space delimited) that you would like to
#    monitory bandwidth/packet count on.
#    note - to monitor a single host use /32
NETWORKS="208.254.31.0/26 208.254.31.64/28 208.254.31.80/29 208.254.31.224/27 208.254.31.88/29 208.254.31.96/29 208.254.31.104/29"

#####################
### other options ###
#####################

# iptables options for a status check
#    these are the options that you will to pass to iptables in addition
#    to -L when doing an `rFW -status`. do a `man iptables` to see
#    your options.
IPT_OPTS="nv"

# we're done!!! :-)
