#!/bin/sh
#
# System Debian Potato
#
# Autor: Rafal Rajs <elessar1@poczta.wp.pl>

############################################################################################
# definiujemy interfejsy

ZEW=eth1 #
WEW=eth0 #LAN

LAN="172.16.1.0/24"
IP_ZEW="10.1.1.100"

# definicje ogolne

L_USERS=5 #liczba userow w sieci!
USER_IP[1]="172.16.1.2"
USER_IP[2]="172.16.1.10"
USER_IP[3]="172.16.1.11"
USER_IP[4]="172.16.1.12"
USER_IP[5]=$IP_ZEW  # ostatni adres to adres zewnetrzengo interfejsu serwera

###

IPTABLES=/sbin/iptables
TC=/sbin/tc

#
############################################################################################
