1 | 1 | simandl | # Which kind of legend shall be used |
2 | | | # set STYLE="bytes" to display all values in bytes/s |
3 | | | # set STYLE="bits" to display all values in bits/s |
4 | | | # |
5 | | | STYLE="bits" |
6 | | | STYLETOTAL="bytes" |
7 | | | |
8 | | | # Shall input and output traffic be swaped ? |
9 | | | # (possible values for "yes" are: "yes" "true" "1") |
10 | | | # |
11 | | | SWAPIO="no" |
12 | | | |
13 | | | # Use fixed-scale or dynamically scaled graphs. This affects ALL diagrams! |
14 | | | # set SCALE="-1000" to use dynamically scaing with a minimum scale of |
15 | | | # 1000 bytes/s (default) |
16 | | | # set SCALE="12345" to set the fixed scale of the graphs to 12345 bytes/s |
17 | | | # |
18 | | | # If nothing is defined here, the defaults (dynamic scaling with a minimum |
19 | | | # scale of 1000 bytes/s) will be used |
20 | | | # |
21 | 27 | simandl | #SCALE="2500000" |
22 | 15 | simandl | SCALE="-1000" |
23 | 1 | simandl | |
24 | | | # Configure one line for each device that shall be sampled: |
25 | | | # |
26 | | | # DEV=<device>,<max bytes/s input>,<max bytes/s output>,<description> |
27 | | | # |
28 | | | # <device> is the network-device you like to sample |
29 | | | # |
30 | | | # for SNMP queries the <device> entry has the following format: |
31 | | | # |
32 | | | # SNMP:<host>:<community>:<interface> |
33 | | | # |
34 | | | # <host> is the name or the IP of the host you want to query |
35 | | | # |
36 | | | # <community> self explaining (for newbies: the community acts almost |
37 | | | # like a "password" for SNMP) |
38 | | | # |
39 | | | # <interface> the name of the interface on the remote-host |
40 | | | # |
41 | 4 | simandl | # RRCP:<host>:<authkey>:<interface> |
42 | | | # |
43 | | | # <host> is the MAC of the host you want to query |
44 | | | # |
45 | | | # <authkey> self explaining (for newbies: the authkey acts almost |
46 | | | # like a "password" for RRCP and default is 2379) |
47 | | | # |
48 | | | # <interface> the port number of the interface on the remote-host |
49 | | | # |
50 | 1 | simandl | # Examples: |
51 | | | # |
52 | 27 | simandl | # DEV="eth0,125000000,125000000,100 MBit ethernet" |
53 | | | # DEV="SNMP:192.168.1.1:public:eth0,125000000,125000000,100 MBit ethernet via SNMP" |
54 | 4 | simandl | # DEV="RRCP:6a.61.62.00.00.03:2379:25,125000000,125000000,1 Gbit eth via RRCP" |
55 | 1 | simandl | # |
56 | 4 | simandl | RTLBIN="/usr/local/bin/rtl83xx_repotec_g3224x" |
57 | 1 | simandl | # |
58 | 27 | simandl | DEV="eth00,12500000000,12500000000,10g Mbit lokalni sit" |
59 | | | DEV="eth01,12500000000,12500000000,10g Mbit lokalni sit" |
60 | | | DEV="eth02,12500000000,12500000000,10g Mbit lokalni sit" |
61 | | | DEV="eth03,12500000000,12500000000,10g Mbit lokalni sit" |
62 | 30 | simandl | DEV="br0,12500000000,12500000000,10g Mbit lokalni sit" |
63 | | | DEV="virbr0,12500000000,12500000000,10g Mbit lokalni sit" |
64 | 27 | simandl | |
65 | | | |