reorganisation of sample configuration files
[svn/Prometheus-QoS/.git] / sample-configuration / prometheus.conf
CommitLineData
a4f661fc 1#==========================================================================
2#
3# Prometheus QoS - steal fire from your ISP !
4# "fair-per-IP" quality of service utility
5# requires Linux kernel with HTB qdisc enabled
6# GNUpyright(G)2007 Michael xChaos Polak, x@n.cz
7# Credits: CZFree.Net / Freegate / Deu / d@n.cz
8# ...and Martin Devera for his HTB, of course ;-)
9#
10#==========================================================================
11#Path to external utilities required to run iGW Prometheus:
12#--------------------------------------------------------------------------
13tc /sbin/tc
14iptables /sbin/iptables
15#==========================================================================
16#Filename of /etc/hosts - style IP address configuration file
17#--------------------------------------------------------------------------
e1614f4e 18hosts /etc/prometheus/hosts
a4f661fc 19#==========================================================================
20#Keywords found in /etc/host comments - syntax KEYWORD-MIN-MAX
21#Eg.: 192.168.1.2 mypc #via-prometheus-256-512
22#sets HTB rate for 192.168.1.2 to 256 kbps and HTB ceil to 512 kbps
23#--------------------------------------------------------------------------
24keyword wifi-normal
25keyword wifi-plus
26keyword backbone-normal
27keyword backbone-plus
28keyword backbone-bezfup
29#==========================================================================
30#LAN (local, downstream) and WAN (isp, internet, upstream) interface names
31#didn't work well with only one interface - two interfaces are required now
32#--------------------------------------------------------------------------
33lan-interface eth0 #Linux network interface name
34wan-interface eth1 #Linux network interface name
35#==========================================================================
36#LAN and WAN medium definition (100Mbit, 10Mbit - use 2Mbit for Wi-Fi)
37#--------------------------------------------------------------------------
38lan-medium 100Mbit #Mbit|kbit
39wan-medium 100Mbit #Mbit|kbit
40#==========================================================================
41#guranted upload and download bandwidth FROM your ISP (in kbps, please!)
42#asymetry settings will be automaticaly calculated from these values
43#--------------------------------------------------------------------------
e1614f4e 44wan-download 40000 #kbps
45wan-upload 40000 #kbps
a4f661fc 46#==========================================================================
47#special QoS free zone (eg. free CZFree tranzit, etc.)
48#Apply QoS on HTTP proxy IP addres/port
49#Set HTB rate and HTB ceil for address undefined in hosts file
50#--------------------------------------------------------------------------
51qos-free-zone 10.0.0.0/8 #0=disable|subnet eg. 192.168.0.0/16
52qos-free-delay 14400 #seconds to wait before applying QoS
53qos-proxy-enable 0 #1=yes|0=no
54qos-proxy-ip 10.11.10.1/32 #eg. IP of our LAN interface
55qos-proxy-port 3128 #squid port
56free-rate 64 #kbps - by Vitex kuli testovani dashboardu
57free-ceil 128 #kbps
58digital-divide-weirdness-ratio 1 #can be 1, 2, 3, maybe even more...
59#==========================================================================
60#Asymetric line settings - this allows setup of ADSL-style ISP service
61#asymetry-rate 2 means upload is limited to 50% of the rate of download
62#asymetry-treshold 64 means upload will be 64 kbps slower then download
63#--------------------------------------------------------------------------
64#These settings are keyword-derived ! (see "keyword" section)
65#--------------------------------------------------------------------------
66wifi-normal-asymetry-ratio 1 #2,4,etc. for relative upload shaping
67wifi-normal-asymetry-treshold 0 #kbps
68wifi-plus-asymetry-ratio 1
69wifi-plus-asymetry-treshold 0
70backbone-normal-asymetry-ratio 1
71backbone-normal-asymetry-treshold 0
72backbone-plus-asymetry-ratio 1
73backbone-plus-asymetry-treshold 0
74backbone-bezfup-asymetry-ratio 1
75backbone-bezfup-asymetry-treshold 0
76#==========================================================================
77#HTB fine tuning part I - common settings
78#--------------------------------------------------------------------------
79htb-nesting-limit 3 #0..4: HTB seems to have built-in limit
80htb-burst 32 #kbit
81htb-leaf-discipline sfq perturb 5
82#==========================================================================
83#magic-include-upload - is data counter sum of upload and download ?
84#magic-priorities - prioty levels are used by magic-relative-prio
85#magic-treshold - heaviest downloader: htb-rate, 2nd: htb-rate+magic-treshold
86#==========================================================================
87magic-include-upload 1 #1=yes|0=no
88magic-priorities 8 #number of priority levels - 2
89magic-treshold 2 #kbps
90#--------------------------------------------------------------------------
91#Magic data limit based od guaranted bandwidth in kbps fine tunes HTB ceil:
92#(magic-relative-limit)*(min bandwidth kbps) = limit for given time period
93#eg. value 8 gives 512 MB limit to 64 kbps HTB rates, 1024 MB to 128'ers...
94#magic-fixed-limit is fixed data limit in MB (megabytes), 0=no limit
95#HTB ceil will be reduced to (HTB rate) for the most unfair-users
96#other offenders get (HTB rate)+(magic-treshold)
97#magic-relative-prio and magic-fixed-prio work exactly the same way as
98#limit, except that they reduce HTB priority instead of HTB ceil
99#--------------------------------------------------------------------------
100#These settings are keyword-derived ! (see "keyword" section)
101#--------------------------------------------------------------------------
102wifi-normal-magic-relative-limit 8 #*kb/sec->MB/day
103wifi-normal-magic-relative-prio 6 #*kb/sec->MB/day
104wifi-normal-magic-fixed-limit 0 #MB, less then
105wifi-normal-magic-fixed-prio 0 #MB, less then
106wifi-plus-magic-relative-limit 12
107wifi-plus-magic-relative-prio 8
108wifi-plus-magic-fixed-limit 0
109wifi-plus-magic-fixed-prio 0
110backbone-normal-magic-relative-limit 12
111backbone-normal-magic-relative-prio 8
112backbone-normal-magic-fixed-limit 0
113backbone-normal-magic-fixed-prio 0
114backbone-plus-magic-relative-limit 16
115backbone-plus-magic-relative-prio 12
116backbone-plus-magic-fixed-limit 0
117backbone-plus-magic-fixed-prio 0
118backbone-bezfup-magic-relative-limit 0
119backbone-bezfup-magic-relative-prio 8
120backbone-bezfup-magic-fixed-limit 0
121backbone-bezfup-magic-fixed-prio 0
122#==========================================================================
123#HTB fine tuning part II - keyword dependent settings
124#--------------------------------------------------------------------------
125#These settings are keyword-derived ! (see "keyword" section)
126#--------------------------------------------------------------------------
127wifi-normal-htb-default-prio 1 #can be 1...magic-priorities-2
128wifi-normal-htb-rate-bonus 0 #kbps
129wifi-normal-htb-ceil-malus 0 #kbps
130wifi-plus-htb-default-prio 1
131wifi-plus-htb-rate-bonus 16
132wifi-plus-htb-ceil-malus 0
133backbone-normal-htb-default-prio 1
134backbone-normal-htb-rate-bonus 16
135backbone-normal-htb-ceil-malus 0
136backbone-plus-htb-default-prio 1
137backbone-plus-htb-rate-bonus 32
138backbone-plus-htb-ceil-malus 0
139backbone-bezfup-htb-default-prio 2
140backbone-bezfup-htb-rate-bonus 0
141backbone-bezfup-htb-ceil-malus 0
142#==========================================================================
143#Credit file settings - stores unused credit from previous runs
144#--------------------------------------------------------------------------
145credit-filename /var/run/prometheus.credit
146credit-enable 1 #1=yes|0=no
147#==========================================================================
148#Log file names and directories
149#--------------------------------------------------------------------------
150log-filename /var/log/prometheus
151log-traffic-directory /var/www/logs/
152log-traffic-url-path logs/
153#==========================================================================
154#Hall of Fame - Greatest Suckers settings
155#--------------------------------------------------------------------------
156hall-of-fame-enable 1 #1=yes|0=no
157hall-of-fame-filename /var/www/traffic.html
158hall-of-fame-preview /var/www/preview.html
159hall-of-fame-title Hall of Fame - Greatest Suckers
160#==========================================================================
161#Hall of Fame - Color settings (for FUP data limit display)
162#--------------------------------------------------------------------------
163#These settings are keyword-derived ! (see "keyword" section)
164#--------------------------------------------------------------------------
165wifi-normal-html-color 609000 #RRGGBB html hexa
166wifi-plus-html-color 008000
167backbone-normal-html-color 600090
168backbone-plus-html-color 000080
169backbone-bezfup-html-color A06000
170#==========================================================================
171#That's all, folks. Now just run /usr/local/sbin/prometheus every day...
This page took 0.300447 seconds and 4 git commands to generate.