1 | 1 | simandl | # query-interval in seconds. |
2 | | | # |
3 | | | INTERVAL="60" |
4 | | | |
5 | | | # set type of diagrams (whatever you like best ... Thanx M. Renner! :) ) |
6 | | | # classic (default) -> shade ranges for min, avg, max in different colors |
7 | | | # simple -> only shade area between min and max in light blue |
8 | | | # |
9 | | | TYPE="classic" |
10 | | | |
11 | | | # set diagram scaling |
12 | | | # log -> set logarithmic scaling (default) |
13 | | | # lin -> set linear scaling |
14 | | | # |
15 | | | SCALE="log" |
16 | | | |
17 | | | # set diagram initial upper border in milliseconds (for better graph comparison) |
18 | | | # UPPER="10" sets all diagrams upper border to 10ms |
19 | | | # UPPER="0.01" sets all diagrams upper border to 100us |
20 | | | # |
21 | | | UPPER="0.01" |
22 | | | |
23 | | | # how many ping processes shall be done in parallel. Reducing the number |
24 | | | # causes the process to run longer, but keeps your system load a bit lower. |
25 | | | # |
26 | | | PARALLEL="2" |
27 | | | |
28 | | | # use system's "ping" command instead of perl library. This is useful when not |
29 | | | # running as root. Fallback is implemented in case Net::Ping is not installed |
30 | | | # on your system |
31 | | | # |
32 | | | # SYSPING="0" use Net::Ping library (default) |
33 | | | # SYSPING="1" use system command |
34 | | | # |
35 | | | SYSPING="1" |
36 | | | |
37 | | | # If SYSPING is set to "0", then you may specify the protocol used to ping all |
38 | | | # hosts. Valid are "icmp" (the default) and "tcp". If you run HotSaNIC without |
39 | | | # root privileges, you should use "tcp" - but note, that some hosts don't reply |
40 | | | # to tcp ping packages! |
41 | | | # |
42 | | | # PROTOCOL="icmp" |
43 | | | # |
44 | | | PROTOCOL="icmp" |
45 | | | |
46 | | | # configure multiple destinations of the form: |
47 | | | # HOST=<host>,<description> |
48 | | | |
49 | 27 | simandl | HOST=jablonka,jablonka |
50 | | | HOST=10.33.11.5,jabtv |
51 | 15 | simandl | HOST=10.33.0.11,jabu |
52 | 27 | simandl | HOST=10.33.11.9,dashboard |
53 | | | HOST=10.33.0.52,jabap |
54 | | | HOST=10.33.0.22,hasit |
55 | | | HOST=10.33.200.1,dvb-t1 |
56 | | | HOST=10.33.200.2,dvb-t2 |
57 | | | HOST=10.33.200.3,dvb-t3 |
58 | | | HOST=r-man,Rman |
59 | | | HOST=kasik,Kasik |
60 | | | HOST=kozel,Kozel |
61 | | | HOST=asistent,asistent |
62 | | | HOST=bratrk,Bratrk |
63 | | | HOST=sitelka,sitelka |
64 | | | HOST=10.33.2.6,makovec |
65 | | | HOST=10.32.0.132,jipe |
66 | | | HOST=10.32.0.131,pospa |
67 | | | HOST=10.32.0.138,jelin |
68 | | | HOST=10.32.0.140,jark |
69 | | | HOST=10.32.0.135,looser |
70 | | | HOST=10.32.0.157,duch |
71 | | | HOST=10.32.0.147,kyselova |
72 | | | HOST=10.33.58.129,piseksz |
73 | | | HOST=10.33.2.74,libor |
74 | | | HOST=www.seznam.cz,www.seznam.cz |
75 | | | HOST=10.33.0.25,jgw |
76 | | | HOST=10.33.30.204,pohanka |
77 | | | HOST=10.33.30.67,polansky |
78 | | | HOST=czela.net,czela.net |
79 | | | HOST=10.33.12.15,vpn-server |
80 | | | HOST=10.33.30.16,simlin |
81 | | | HOST=10.11.1.1,brevnov |
82 | | | HOST=10.33.11.4,molekula |
83 | | | HOST=10.33.25.93,jgw |
84 | | | HOST=10.33.23.2,brevnov-peer |
85 | | | HOST=10.11.10.14,hostalkova-2hop |
86 | | | HOST=10.11.30.212,hostalkova-1hop |
87 | | | HOST=10.11.162.170,hostalkova |
88 | | | HOST=10.87.0.1,smlh75 |
89 | | | HOST=10.33.23.114,smlh75bgplink |
90 | | | HOST=10.87.1.1,smlh75lan |
91 | 30 | simandl | HOST=192.168.44.128,skylinkA |
92 | | | HOST=192.168.55.6,skylinkB |
93 | | | HOST=192.168.66.2,skylinkBond |
94 | 15 | simandl | |