#!/bin/sh
#
# Debian System
#
# Author: Rafal Rajs <elessar1@poczta.wp.pl>

############################################################################################
# network interfaces

ZEW=eth0 #external interface
WEW=eth1 #internal interface

LAN="10.1.1.0/24"	# internal network IP range
IP_ZEW="192.168.254.15"	# External IP address

# general defs
###

MAX_UPLOAD=280
MAX_DOWNLOAD=4400

MARK_START=0
MAX_RESERVE=20

MAX_CONNS=40

###


L_USERS=3 # the number of users in the network + server's external IP address 

USER_IP[1]="10.1.1.50"
USER_IP[2]="10.1.1.60"

USER_IP[3]=$IP_ZEW  # this is the address of the server external network interface

###

IPTABLES=/sbin/iptables
TC=/sbin/tc

#
############################################################################################


