~ubuntu-branches/ubuntu/warty/orca/warty

« back to all changes in this revision

Viewing changes to src/orca.conf

  • Committer: Bazaar Package Importer
  • Author(s): Jesus Climent
  • Date: 2003-07-14 15:08:58 UTC
  • Revision ID: james.westby@ubuntu.com-20030714150858-te4hexppwx79qcnu
Tags: 0.2.2.1
* NMU.
* The "I want to listen to the SEAT MAKINERO song again" release.
* make runs in error mode.
* Updated to use librrd0-dev as build-dep (Closes: #182707)
* Cleans and rebuild libutils since it was delivered as i386 binary.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
# -*- config -*-
 
3
 
 
4
# Configuration file for ORCA.
 
5
# Written by Abraham van der Merwe <abz@blio.com>
 
6
# Last updated: 10 August 2002
 
7
 
 
8
# Comments:
 
9
#
 
10
# 1. This is a standard libconfig configuration file (see documentation that
 
11
#    ships with libconfig), so the same rules apply.
 
12
#
 
13
# 2. ``timeout'', ``retries'', and ``ignore_admin_down'' settings can be
 
14
#    overrided in the router sections.
 
15
#
 
16
# 3. The ``host'' settings can be either an ip address or domain name,
 
17
#    iff ORCA was compiled with the GETHOSTBYNAME flag. If ORCA was
 
18
#    compiled without this flag, only ip addresses can be specified.
 
19
#    ip addresses should also be specified as strings.
 
20
#
 
21
# 4. The (optional) ``port'' settings can be either a service as specified
 
22
#    in /etc/services or it can be a port number iff ORCA was compiled with
 
23
#    the GETSERVBYNAME flag. If ORCA was compiled without this flag, only
 
24
#    port numbers can be specified. Services should be specified as strings.
 
25
#
 
26
# 5. The (optional) ``order'' array specifies the preferred displayed order
 
27
#    of interfaces. Omitted interfaces start after the listed ones.
 
28
#
 
29
# 6. The (optional) ``alias'' array overrides interface aliases. The order
 
30
#    is very important here. It is the same as the displayed order. In other
 
31
#    words, if you ignore interfaces and/or change their order using keywords
 
32
#    above, that _does_ affect the order of the ``alias'' keyword. Because it
 
33
#    is so easy to get this wrong (esp if you have ignore_admin_down enabled
 
34
#    and the admin status of the interfaces change later on), you should try
 
35
#    to avoid using this. However, it is useful if you have equipment that
 
36
#    doesn't support ifAlias (e.g. BayStack switches).
 
37
#
 
38
# 7. ORCA don't need any special priviledges, so feel free to run it as a
 
39
#    user/group that can cause no damage whatsoever. Just make sure that
 
40
#    the graphs/html generated can be accessed by your web server.
 
41
 
 
42
# Location where RRD databases should be stored.
 
43
database = "/var/lib/orca"
 
44
 
 
45
# Location where the html and graphs should be generated.
 
46
htdocs = "/var/www/orca"
 
47
 
 
48
# Path relative to htdocs which should be used in urls in
 
49
# generated html. If not specified, it is assumed that the
 
50
# htdocs directory points to the document root.
 
51
#documentroot = "/stats"
 
52
 
 
53
# Timeout in seconds between operations. This setting affects
 
54
# how long the manager waits for the agent to respond to queries.
 
55
timeout = 15
 
56
 
 
57
# Number of times that the manager will try to resend queries to
 
58
# the agent. Any number of retries between 0 and 65535 is allowed.
 
59
retries = 3
 
60
 
 
61
# The user name or uid of the user to run ORCA as.
 
62
user = "www-data"
 
63
 
 
64
# The group name or gid of the user to run ORCA as.
 
65
group = "www-data"
 
66
 
 
67
# The file in which the server should record its process identification
 
68
# number when it starts. This file is only created if ORCA is started
 
69
# as a daemon.
 
70
pidfile = "/var/run/orca.pid"
 
71
 
 
72
# If this is true, we don't graph interfaces that are administratively
 
73
# down. Either true of false
 
74
ignore_admin_down = true
 
75
 
 
76
# Home WAN border gateway: Cisco 805
 
77
lindsey =
 
78
{
 
79
        host = "lindsey.frogfoot.net"
 
80
    #port = "snmp"
 
81
        community = "public"
 
82
        #ignore = { }
 
83
        order = { "Serial0", "Ethernet0" }
 
84
        #alias = { }
 
85
}
 
86
 
 
87
# Frogfoot main router: Cisco 4500-M
 
88
anura =
 
89
{
 
90
        host = "anura.frogfoot.net"
 
91
        #port = "snmp"
 
92
        community = "public"
 
93
        #ignore = { }
 
94
        #order = { }
 
95
        #alias = { }
 
96
}
 
97
 
 
98
# Frogfoot newlands datacenter border gateway: Cisco 2611
 
99
aki =
 
100
{
 
101
        host = "aki.frogfoot.net"
 
102
        #port = "snmp"
 
103
        community = "public"
 
104
        #ignore = { }
 
105
        #order = { }
 
106
        #alias = { }
 
107
}
 
108
 
 
109
# Stellenbosch POP router: Cisco 2503
 
110
tadpole =
 
111
{
 
112
        host = "tadpole.frogfoot.net"
 
113
        #port = "snmp"
 
114
        community = "public"
 
115
        #ignore = { }
 
116
        order = { "Serial0", "Ethernet0" }
 
117
        #alias = { }
 
118
}
 
119
 
 
120
# Stellenbosch POP manageable switch: BayStack 350FHD
 
121
hopper =
 
122
{
 
123
        host = "hopper.frogfoot.net"
 
124
        #port = "snmp"
 
125
        community = "public"
 
126
        #ignore = { }
 
127
        #order = { }
 
128
        alias = { "Toad", "Generation Trading 5", "Cape PC Services", "V.C.S. (Vodashop Neelsie)" }
 
129
        retries = 5
 
130
}
 
131
 
 
132
# Bergvliet border gateway: Cisco 1720
 
133
yoda =
 
134
{
 
135
        host = "yoda.frogfoot.net"
 
136
        #port = "snmp"
 
137
        community = "public"
 
138
        #ignore = { }
 
139
        order = { "Serial0", "FastEthernet0" }
 
140
        #alias = { }
 
141
}
 
142
 
 
143
# Gen5 SDSL router in Stellenbosch POP: Zyxel Prestige-681 SDSL
 
144
gen5_ourside =
 
145
{
 
146
    host = "66.8.28.86"
 
147
        #port = "snmp"
 
148
        community = "public"
 
149
        ignore = { "fr0" }
 
150
        #order = { }
 
151
        #alias = { }
 
152
}
 
153
 
 
154
# Gen5 SDSL router at Gen5 premises: Zyxel Prestige-681 SDSL
 
155
gen5_theirside =
 
156
{
 
157
    host = "66.8.28.145"
 
158
        #port = "snmp"
 
159
        community = "public"
 
160
        ignore = { "fr0" }
 
161
        order = { "sdsl00", "enet0" }
 
162
        #alias = { }
 
163
}
 
164
 
 
165
# E.C.S. Intel router at Newlands Datacenter: Intel Express 8100 FR/X.25
 
166
ecs_ourside =
 
167
{
 
168
        host = "66.8.28.30"
 
169
        #port = "snmp"
 
170
        community = "public"
 
171
        #ignore = { }
 
172
        #order = { }
 
173
        #alias = { }
 
174
}
 
175
 
 
176
# E.C.S. Intel router at E.C.S. Premises: Intel Express 8100 FR/X.25
 
177
ecs_theirside =
 
178
{
 
179
        host = "66.8.28.9"
 
180
        #port = "snmp"
 
181
        community = "public"
 
182
        #ignore = { }
 
183
        order = { "PPP Leased Line", "WAN Port", "WAN", "LAN" }
 
184
        #alias = { }
 
185
}
 
186
 
 
187
# 2d3D border gateway: Cisco 1603
 
188
_2d3d =
 
189
{
 
190
        host = "gw.2d3d.co.za"
 
191
        #port = "snmp"
 
192
        community = "public"
 
193
        #ignore = { }
 
194
        order = { "Serial0", "Ethernet0", "Dialer1" }
 
195
        #alias = { }
 
196
}
 
197
 
 
198
# web/mail/dns server: Pentium 200MMX Debian/GNU Linux
 
199
swim =
 
200
{
 
201
        host = "swim.frogfoot.net"
 
202
        #port = "snmp"
 
203
        community = "public"
 
204
        #ignore = { }
 
205
        order = { "eth0", "lo" }
 
206
        #alias = { }
 
207
}
 
208
 
 
209
# stellenbosch ppp server: Pentium 166 Debian/GNU Linux
 
210
toad =
 
211
{
 
212
        host = "toad.frogfoot.net"
 
213
        #port = "snmp"
 
214
        community = "public"
 
215
        ignore = { "ppp0", "ppp1" }
 
216
        order = { "eth0", "lo" }
 
217
        #alias = { }
 
218
}
 
219
 
 
220
# secondary name server: Intel 486 DX/2 66 Debian/GNU Linux (don't ask)
 
221
newt =
 
222
{
 
223
        host = "newt.frogfoot.net"
 
224
        #port = "snmp"
 
225
        community = "public"
 
226
        #ignore = { }
 
227
        order = { "eth0", "lo" }
 
228
        #alias = { }
 
229
}
 
230