1SMOKEPING_CONFIG(5)                SmokePing               SMOKEPING_CONFIG(5)
2
3
4

NAME

6       smokeping_config - Reference for the SmokePing Config File
7

OVERVIEW

9       SmokePing takes its configuration from a single central configuration
10       file.  Its location must be hardcoded in the smokeping script and
11       smokeping.cgi.
12
13       The contents of this manual is generated directly from the
14       configuration file parser.
15
16       The Parser for the Configuration file is written using David Schweikers
17       Config::Grammar module. Read all about it in Config::Grammar.
18
19       The Configuration file has a tree-like structure with section headings
20       at various levels. It also contains variable assignments and tables.
21
22       Warning: this manual is rather long. See smokeping_examples for simple
23       configuration examples.
24

REFERENCE

26   GENERAL SYNTAX
27       The text below describes the general syntax of the SmokePing
28       configuration file.  It was copied from the Config::Grammar
29       documentation.
30
31       '#' denotes a comment up to the end-of-line, empty lines are allowed
32       and space at the beginning and end of lines is trimmed.
33
34       '\' at the end of the line marks a continued line on the next line. A
35       single space will be inserted between the concatenated lines.
36
37       '@include filename' is used to include another file.
38
39       '@define a some value' will replace all occurences of 'a' in the
40       following text with 'some value'.
41
42       Fields in tables that contain white space can be enclosed in either "'"
43       or """.  Whitespace can also be escaped with "\". Quotes inside quotes
44       are allowed but must be escaped with a backslash as well.
45
46   SPECIFIC SYNTAX
47       The text below describes the specific syntax of the SmokePing
48       configuration file.
49
50   *** General *** (mandatory section)
51       General configuration values valid for the whole SmokePing setup.
52
53       The following variables can be set in this section:
54
55       owner (mandatory setting)
56           Name of the person responsible for this smokeping installation.
57
58       imgcache (mandatory setting)
59           A directory which is visible on your webserver where SmokePing can
60           cache graphs.
61
62       imgurl (mandatory setting)
63           Either an absolute URL to the imgcache directory or one relative to
64           the directory where you keep the SmokePing cgi.
65
66       datadir (mandatory setting)
67           The directory where SmokePing can keep its rrd files.
68
69       dyndir
70           The base directory where SmokePing keeps the files related to the
71           DYNAMIC function.  This directory must be writeable by the WWW
72           server. It is also used for temporary storage of slave polling
73           results by the master in the master/slave mode.
74
75           If this variable is not specified, the value of "datadir" will be
76           used instead.
77
78       pagedir
79           Directory to store static representations of pages.
80
81       piddir (mandatory setting)
82           The directory where SmokePing keeps its pid when daemonised.
83
84       sendmail
85           Path to your sendmail binary. It will be used for sending mails in
86           connection with the support of DYNAMIC addresses.
87
88       offset
89           If you run many instances of smokeping you may want to prevent them
90           from hitting your network all at the same time. Using the offset
91           parameter you can change the point in time when the probes are run.
92           Offset is specified in % of total interval, or alternatively as
93           'random'. I recommend to use 'random'. Note that this does NOT
94           influence the rrds itself, it is just a matter of when data
95           acqusition is initiated.  The default offset is 'random'.
96
97       smokemail (mandatory setting)
98           Path to the mail template for DYNAMIC hosts. This mail template
99           must contain keywords of the form <##keyword##>. There is a sample
100           template included with SmokePing.
101
102       cgiurl (mandatory setting)
103           Complete URL path of the SmokePing.cgi
104
105       mailhost
106           Instead of using sendmail, you can specify the name of an smtp
107           server and use perl's Net::SMTP module to send mail (for alerts and
108           DYNAMIC client script). Several comma separated mailhosts can be
109           specified. SmokePing will try one after the other if one does not
110           answer for 5 seconds.
111
112       mailuser
113           username on mailhost, SmokePing will use this user to send mail
114           (Net::SMTP).
115
116       mailpass
117           password of username on mailhost, SmokePing will use this password
118           to send mail (Net::SMTP).
119
120       snpphost
121           If you have a SNPP (Simple Network Pager Protocol) server at hand,
122           you can have alerts sent there too. Use the syntax snpp:someaddress
123           to use a snpp address in any place where you can use a mail address
124           otherwhise.
125
126       contact (mandatory setting)
127           Mail address of the person responsible for this smokeping
128           installation.
129
130       display_name
131           What should the master host be called when working in master/slave
132           mode. This is used in the overview graph for example.
133
134       syslogfacility
135           The syslog facility to use, eg. local0...local7.  Note: syslog
136           logging is only used if you specify this.
137
138       syslogpriority
139           The syslog priority to use, eg. debug, notice or info.  Default is
140           info.
141
142       concurrentprobes
143           If you use multiple probes or multiple instances of the same probe
144           and you want them to run concurrently in separate processes, set
145           this to 'yes'. This gives you the possibility to specify probe-
146           specific step and offset parameters (see the 'Probes' section) for
147           each probe and makes the probes unable to block each other in cases
148           of service outages. The default is 'yes', but if you for some
149           reason want the old behaviour you can set this to 'no'.
150
151       changeprocessnames
152           When using 'concurrentprobes' (see above), this controls whether
153           the probe subprocesses should change their argv string to indicate
154           their probe in the process name.  If set to 'yes' (the default),
155           the probe name will be appended to the process name as '[probe]',
156           eg.  '/usr/bin/smokeping [FPing]'. If you don't like this
157           behaviour, set this variable to 'no'.  If 'concurrentprobes' is not
158           set to 'yes', this variable has no effect.
159
160           Default value: changeprocessnames = yes
161
162       tmail
163           Path to your tSmoke HTML mail template file. See the tSmoke
164           documentation for details.
165
166       changecgiprogramname
167           Usually the Smokeping CGI tries to log any possible errors with an
168           extended program name that includes the IP address of the remote
169           client for easier debugging. If this variable is set to 'no', the
170           program name will not be modified. The only reason you would want
171           this is if you have a very old version of the CGI::Carp module. See
172           the installation document for details.
173
174           Default value: changecgiprogramname = yes
175
176       linkstyle
177           How the CGI self-referring links are created. The possible values
178           are
179
180           absolute
181               Full hostname and path derived from the 'cgiurl' variable
182
183               <a href="http://hostname/path/smokeping.cgi?foo=bar">
184
185           relative
186               Only the parameter part is specified
187
188               <a href="?foo=bar">
189
190           original
191               The way the links were generated before Smokeping version
192               2.0.4: no hostname, only the path
193
194               <a href="/path/smokeping.cgi?foo=bar">
195
196           The default is "relative", which hopefully works for everybody.
197
198           Default value: linkstyle = relative
199
200       precreateperms
201           If this variable is set, the Smokeping daemon will create its
202           directory hierarchy under 'dyndir' (the CGI-writable tree) at
203           startup with the specified directory permission bits. The value is
204           interpreted as an octal value, eg. 775 for rwxrwxr-x etc.
205
206           If unset, the directories will be created dynamically with umask
207           022.
208
209           Example: precreateperms = 2755
210
211   *** Database *** (mandatory section)
212       Describes the properties of the round robin database for storing the
213       SmokePing data. Note that it is not possible to edit existing RRDs by
214       changing the entries in the cfg file.
215
216       The following variables can be set in this section:
217
218       step (mandatory setting)
219           Duration of the base operation interval of SmokePing in seconds.
220           SmokePing will venture out every step seconds to ping your target
221           hosts.  If 'concurrentprobes' is set to 'yes' (see above), this
222           variable can be overridden by each probe. Note that the step in the
223           RRD files is fixed when they are originally generated, and if you
224           change the step parameter afterwards, you'll have to delete the old
225           RRD files or somehow convert them.
226
227       pings (mandatory setting)
228           How many pings should be sent to each target. Suggested: 20 pings.
229           Minimum value: 3 pings.  This can be overridden by each probe. Some
230           probes (those derived from basefork.pm, ie. most except the FPing
231           variants) will even let this be overridden target-specifically.
232           Note that the number of pings in the RRD files is fixed when they
233           are originally generated, and if you change this parameter
234           afterwards, you'll have to delete the old RRD files or somehow
235           convert them.
236
237       This section also contains a table describing the setup of the
238       SmokePing database. Below are reasonable defaults. Only change them if
239       you know rrdtool and its workings. Each row in the table describes one
240       RRA.
241
242        # cons   xff steps rows
243        AVERAGE  0.5   1   1008
244        AVERAGE  0.5  12   4320
245            MIN  0.5  12   4320
246            MAX  0.5  12   4320
247        AVERAGE  0.5 144    720
248            MAX  0.5 144    720
249            MIN  0.5 144    720
250
251       column 0
252           Consolidation method.
253
254       column 1
255           What part of the consolidated intervals must be known to warrant a
256           known entry.
257
258       column 2
259           How many steps to consolidate into for each RRA entry.
260
261       column 3
262           How many rows this RRA should have.
263
264   *** Presentation *** (mandatory section)
265       Defines how the SmokePing data should be presented.
266
267       The following variables can be set in this section:
268
269       template (mandatory setting)
270           The webpage template must contain keywords of the form
271           <##keyword##>. There is a sample template included with SmokePing;
272           use it as the basis for your experiments. Default template contains
273           a pointer to the SmokePing counter and homepage. I would be glad if
274           you would not remove this as it gives me an indication as to how
275           widely used the tool is.
276
277       charset
278           By default, SmokePing assumes the 'utf-8' character set. If you use
279           something else, this is the place to speak up.
280
281       htmltitle
282           By default, SmokePing will render the title of the graph in the
283           image, when set to 'yes' the title is inserted in the html page.
284
285       graphborders
286           By default, SmokePing will render gray border on a light gray
287           background, if set to 'no' borders will be hidden and the
288           background and canvas will be transparent.
289
290       The following sections are valid on level 1:
291
292       +overview (mandatory section)
293           The Overview section defines how the Overview graphs should look.
294
295           The following variables can be set in this section:
296
297           width (mandatory setting)
298               Width of the Overview Graphs.
299
300           height (mandatory setting)
301               Height of the Overview Graphs.
302
303           range
304               How much time should be depicted in the Overview graph. Time
305               must be specified as a number followed by a letter which
306               specifies the unit of time. Known units are: seconds, minutes,
307               hours, ddays, weeks, years.
308
309           max_rtt
310               Any roundtrip time larger than this value will cropped in the
311               overview graph
312
313           median_color
314               By default the median line is drawn in red. Override it here
315               with a hex color in the format rrggbb. Note that if you work
316               with slaves, the slaves medians will be drawn in the slave
317               color in the overview graph.
318
319           strftime
320               Use posix strftime to format the timestamp in the left hand
321               lower corner of the overview graph
322
323       +detail (mandatory section)
324           The following variables can be set in this section:
325
326           width (mandatory setting)
327               How many pixels wide should detail graphs be
328
329           height (mandatory setting)
330               How many pixels high should detail graphs be
331
332           loss_background
333               Should the graphs be shown with a background showing loss data
334               for emphasis (yes/no)?
335
336               If this option is enabled, uptime data is no longer displayed
337               in the graph background.
338
339           logarithmic
340               should the graphs be shown in a logarithmic scale (yes/no)
341
342           unison_tolerance
343               if a graph is more than this factor of the median 'max' it
344               drops out of the unison scaling algorithm. A factor of two
345               would mean that any graph with a max either less than half or
346               more than twice the median 'max' will be dropped from unison
347               scaling
348
349           max_rtt
350               Any roundtrip time larger than this value will cropped in the
351               detail graph
352
353           strftime
354               Use posix strftime to format the timestamp in the left hand
355               lower corner of the detail graph
356
357           nodata_color
358               Paint the graph background in a special color when there is no
359               data for this period because smokeping has not been running
360               (#rrggbb)
361
362           The detailed display can contain several graphs of different
363           resolution. In this table you can specify the resolution of each
364           graph.
365
366           Example:
367
368            "Last 3 Hours"    3h
369            "Last 30 Hours"   30h
370            "Last 10 Days"    10d
371            "Last 400 Days"   400d
372
373           column 0
374               Description of the particular resolution.
375
376           column 1
377               How much time should be depicted. The format is the same as for
378               the age  parameter of the Overview section.
379
380           The following sections are valid on level 2:
381
382           ++loss_colors
383               In the Detail view, the color of the median line depends the
384               amount of lost packets. SmokePing comes with a reasonable
385               default setting, but you may choose to disagree. The table
386               below lets you specify your own coloring.
387
388               Example:
389
390                Loss Color   Legend
391                1    00ff00    "<1"
392                3    0000ff    "<3"
393                1000 ff0000    ">=3"
394
395               column 0
396                   Activate when the number of losst pings is larger or equal
397                   to this number
398
399               column 1
400                   Color for this range.
401
402               column 2
403                   Description for this range.
404
405           ++uptime_colors
406               When monitoring a host with DYNAMIC addressing, SmokePing will
407               keep track of how long the machine is able to keep the same IP
408               address. This time is plotted as a color in the graphs
409               background. SmokePing comes with a reasonable default setting,
410               but you may choose to disagree. The table below lets you
411               specify your own coloring
412
413               Example:
414
415                # Uptime      Color     Legend
416                3600          00ff00   "<1h"
417                86400         0000ff   "<1d"
418                604800        ff0000   "<1w"
419                1000000000000 ffff00   ">1w"
420
421               Uptime is in days!
422
423               column 0
424                   Activate when uptime in days is larger of equal to this
425                   number
426
427               column 1
428                   Color for this uptime range.
429
430               column 2
431                   Description for this range.
432
433       +charts
434           The SmokePing Charts feature allow you to have Top X lists created
435           according to various criteria.
436
437           Each type of Chart must live in its own subsection.
438
439            + charts
440            menu = Charts
441            title = The most interesting destinations
442            ++ median
443            sorter = Median(entries=>10)
444            title = Sorted by Median Roundtrip Time
445            menu = Top Median RTT
446            format = Median RTT %e s
447
448           The following variables can be set in this section:
449
450           menu (mandatory setting)
451               Menu entry for the Charts Section.
452
453           title (mandatory setting)
454               Page title for the Charts Section.
455
456           The following sections are valid on level 2:
457
458           ++/[-_0-9a-zA-Z]+/
459               The following variables can be set in this section:
460
461               menu (mandatory setting)
462                   Menu entry
463
464               title (mandatory setting)
465                   Page title
466
467               sorter (mandatory setting)
468                   sorter for this charts sections
469
470               format
471                   sprintf format string to format curent value
472
473       +multihost
474           Settings for the multihost graphs. At the moment this is only used
475           for the color setting. Check the documentation on the host property
476           of the target section for more.
477
478           The following variables can be set in this section:
479
480           colors
481               Space separated list of colors for multihost graphs
482
483               Example: colors = ff0000 00ff00 0000ff
484
485       +hierarchies
486           Provide an alternative presentation hierarchy for your smokeping
487           data. After setting up a hierarchy in this section. You can use it
488           in each tagets parent property. A drop-down menu in the smokeping
489           website lets the user switch presentation hierarchy.
490
491           The following sections are valid on level 2:
492
493           ++/[-_0-9a-zA-Z]+/
494               Identifier of the hierarchie. Use this as prefix in the targets
495               parent property
496
497               The following variables can be set in this section:
498
499               title (mandatory setting)
500                   Title for this hierarchy
501
502   *** Probes *** (mandatory section)
503       The Probes Section configures Probe modules. Probe modules integrate an
504       external ping command into SmokePing. Check the documentation of each
505       module for more information about it.
506
507       The following sections are valid on level 1:
508
509       +/[-_0-9a-zA-Z]+/
510           Each module can take specific configuration information from this
511           area. The jumble of letters above is a regular expression defining
512           legal module names.
513
514           See the documentation of each module for details about its
515           variables.
516
517           The grammar of this section is dynamically modified based on its
518           name.
519
520           The following sections are valid on level 2:
521
522           ++/[-_0-9a-zA-Z]+/
523               You can define multiple instances of the same probe with
524               subsections.  These instances can have different values for
525               their variables, so you can eg. have one instance of the FPing
526               probe with packet size 1000 and step 300 and another instance
527               with packet size 64 and step 30.  The name of the subsection
528               determines what the probe will be called, so you can write
529               descriptive names for the probes.
530
531               If there are any subsections defined, the main section for this
532               probe will just provide default parameter values for the probe
533               instances, ie.  it will not become a probe instance itself.
534
535               The example above would be written like this:
536
537                *** Probes ***
538
539                + FPing
540                # this value is common for the two subprobes
541                binary = /usr/bin/fping
542
543                ++ FPingLarge
544                packetsize = 1000
545                step = 300
546
547                ++ FPingSmall
548                packetsize = 64
549                step = 30
550
551           Dynamical grammar changes for example instances of this section:
552
553           AnotherCurl: (See the separate module documentation for details
554           about each variable.)
555               The following new variables are valid:
556
557               binary
558                   see above
559
560                   Default value: binary = /usr/bin/curl
561
562               forks
563                   see above
564
565                   Default value: forks = 5
566
567               offset
568                   see above
569
570               step
571                   see above
572
573               agent
574                   (This variable can be overridden target-specifically in the
575                   Targets section.)
576
577               extraargs
578                   (This variable can be overridden target-specifically in the
579                   Targets section.)
580
581               extrare
582                   (This variable can be overridden target-specifically in the
583                   Targets section.)
584
585                   Default value: extrare = / /
586
587               follow_redirects
588                   (This variable can be overridden target-specifically in the
589                   Targets section.)
590
591                   Default value: follow_redirects = no
592
593               include_redirects
594                   (This variable can be overridden target-specifically in the
595                   Targets section.)
596
597                   Default value: include_redirects = no
598
599               insecure_ssl
600                   (This variable can be overridden target-specifically in the
601                   Targets section.)
602
603               interface
604                   (This variable can be overridden target-specifically in the
605                   Targets section.)
606
607               pings
608                   (This variable can be overridden target-specifically in the
609                   Targets section.)
610
611               ssl2
612                   (This variable can be overridden target-specifically in the
613                   Targets section.)
614
615               timeout
616                   (This variable can be overridden target-specifically in the
617                   Targets section.)
618
619                   Default value: timeout = 10
620
621               urlformat
622                   (This variable can be overridden target-specifically in the
623                   Targets section.)
624
625                   This variable dynamically modifies the grammar based on its
626                   value.
627
628               write_out
629                   (This variable can be overridden target-specifically in the
630                   Targets section.)
631
632               Syntax changes for subsection /[-_0-9a-zA-Z]+/
633
634                   The following new variables are valid:
635
636                   binary
637                       see above
638
639                       This variable inherits its value from the parent
640                       section if nothing is specified here.
641
642                       Default value: binary = /usr/bin/curl
643
644                   forks
645                       see above
646
647                       This variable inherits its value from the parent
648                       section if nothing is specified here.
649
650                       Default value: forks = 5
651
652                   offset
653                       see above
654
655                       This variable inherits its value from the parent
656                       section if nothing is specified here.
657
658                   step
659                       see above
660
661                       This variable inherits its value from the parent
662                       section if nothing is specified here.
663
664                   agent
665                       This variable inherits its value from the parent
666                       section if nothing is specified here.
667
668                   extraargs
669                       This variable inherits its value from the parent
670                       section if nothing is specified here.
671
672                   extrare
673                       This variable inherits its value from the parent
674                       section if nothing is specified here.
675
676                       Default value: extrare = / /
677
678                   follow_redirects
679                       This variable inherits its value from the parent
680                       section if nothing is specified here.
681
682                       Default value: follow_redirects = no
683
684                   include_redirects
685                       This variable inherits its value from the parent
686                       section if nothing is specified here.
687
688                       Default value: include_redirects = no
689
690                   insecure_ssl
691                       This variable inherits its value from the parent
692                       section if nothing is specified here.
693
694                   interface
695                       This variable inherits its value from the parent
696                       section if nothing is specified here.
697
698                   pings
699                       This variable inherits its value from the parent
700                       section if nothing is specified here.
701
702                   ssl2
703                       This variable inherits its value from the parent
704                       section if nothing is specified here.
705
706                   timeout
707                       This variable inherits its value from the parent
708                       section if nothing is specified here.
709
710                       Default value: timeout = 10
711
712                   urlformat
713                       This variable inherits its value from the parent
714                       section if nothing is specified here.
715
716                   write_out
717                       This variable inherits its value from the parent
718                       section if nothing is specified here.
719
720               (End of dynamical grammar changes for example instance
721               "AnotherCurl".)
722
723           AnotherDNS: (See the separate module documentation for details
724           about each variable.)
725               The following new variables are valid:
726
727               forks
728                   see above
729
730                   Default value: forks = 5
731
732               offset
733                   see above
734
735               step
736                   see above
737
738               authoritative
739                   (This variable can be overridden target-specifically in the
740                   Targets section.)
741
742               ipversion
743                   (This variable can be overridden target-specifically in the
744                   Targets section.)
745
746                   Default value: ipversion = 4
747
748               lookup
749                   (This variable can be overridden target-specifically in the
750                   Targets section.)
751
752               mininterval
753                   (This variable can be overridden target-specifically in the
754                   Targets section.)
755
756                   Default value: mininterval = 0.5
757
758               pings
759                   (This variable can be overridden target-specifically in the
760                   Targets section.)
761
762               port
763                   (This variable can be overridden target-specifically in the
764                   Targets section.)
765
766                   Default value: port = 53
767
768               protocol
769                   (This variable can be overridden target-specifically in the
770                   Targets section.)
771
772                   Default value: protocol = udp
773
774               recordtype
775                   (This variable can be overridden target-specifically in the
776                   Targets section.)
777
778                   Default value: recordtype = A
779
780               require_answers
781                   (This variable can be overridden target-specifically in the
782                   Targets section.)
783
784               require_noerror
785                   (This variable can be overridden target-specifically in the
786                   Targets section.)
787
788               timeout
789                   (This variable can be overridden target-specifically in the
790                   Targets section.)
791
792                   Default value: timeout = 5
793
794               Syntax changes for subsection /[-_0-9a-zA-Z]+/
795
796                   The following new variables are valid:
797
798                   forks
799                       see above
800
801                       This variable inherits its value from the parent
802                       section if nothing is specified here.
803
804                       Default value: forks = 5
805
806                   offset
807                       see above
808
809                       This variable inherits its value from the parent
810                       section if nothing is specified here.
811
812                   step
813                       see above
814
815                       This variable inherits its value from the parent
816                       section if nothing is specified here.
817
818                   authoritative
819                       This variable inherits its value from the parent
820                       section if nothing is specified here.
821
822                   ipversion
823                       This variable inherits its value from the parent
824                       section if nothing is specified here.
825
826                       Default value: ipversion = 4
827
828                   lookup
829                       This variable inherits its value from the parent
830                       section if nothing is specified here.
831
832                   mininterval
833                       This variable inherits its value from the parent
834                       section if nothing is specified here.
835
836                       Default value: mininterval = 0.5
837
838                   pings
839                       This variable inherits its value from the parent
840                       section if nothing is specified here.
841
842                   port
843                       This variable inherits its value from the parent
844                       section if nothing is specified here.
845
846                       Default value: port = 53
847
848                   protocol
849                       This variable inherits its value from the parent
850                       section if nothing is specified here.
851
852                       Default value: protocol = udp
853
854                   recordtype
855                       This variable inherits its value from the parent
856                       section if nothing is specified here.
857
858                       Default value: recordtype = A
859
860                   require_answers
861                       This variable inherits its value from the parent
862                       section if nothing is specified here.
863
864                   require_noerror
865                       This variable inherits its value from the parent
866                       section if nothing is specified here.
867
868                   timeout
869                       This variable inherits its value from the parent
870                       section if nothing is specified here.
871
872                       Default value: timeout = 5
873
874               (End of dynamical grammar changes for example instance
875               "AnotherDNS".)
876
877           AnotherSSH: (See the separate module documentation for details
878           about each variable.)
879               The following new variables are valid:
880
881               forks
882                   see above
883
884                   Default value: forks = 5
885
886               offset
887                   see above
888
889               step
890                   see above
891
892               greeting
893                   (This variable can be overridden target-specifically in the
894                   Targets section.)
895
896                   Default value: greeting = SSH-Latency-Measurement-Sorry-
897                   for-this-logmessage
898
899               interval
900                   (This variable can be overridden target-specifically in the
901                   Targets section.)
902
903                   Default value: interval = established
904
905               mininterval
906                   (This variable can be overridden target-specifically in the
907                   Targets section.)
908
909                   Default value: mininterval = 0.5
910
911               pings
912                   (This variable can be overridden target-specifically in the
913                   Targets section.)
914
915               port
916                   (This variable can be overridden target-specifically in the
917                   Targets section.)
918
919                   Default value: port = 22
920
921               timeout
922                   (This variable can be overridden target-specifically in the
923                   Targets section.)
924
925                   Default value: timeout = 5
926
927               Syntax changes for subsection /[-_0-9a-zA-Z]+/
928
929                   The following new variables are valid:
930
931                   forks
932                       see above
933
934                       This variable inherits its value from the parent
935                       section if nothing is specified here.
936
937                       Default value: forks = 5
938
939                   offset
940                       see above
941
942                       This variable inherits its value from the parent
943                       section if nothing is specified here.
944
945                   step
946                       see above
947
948                       This variable inherits its value from the parent
949                       section if nothing is specified here.
950
951                   greeting
952                       This variable inherits its value from the parent
953                       section if nothing is specified here.
954
955                       Default value: greeting = SSH-Latency-Measurement-
956                       Sorry-for-this-logmessage
957
958                   interval
959                       This variable inherits its value from the parent
960                       section if nothing is specified here.
961
962                       Default value: interval = established
963
964                   mininterval
965                       This variable inherits its value from the parent
966                       section if nothing is specified here.
967
968                       Default value: mininterval = 0.5
969
970                   pings
971                       This variable inherits its value from the parent
972                       section if nothing is specified here.
973
974                   port
975                       This variable inherits its value from the parent
976                       section if nothing is specified here.
977
978                       Default value: port = 22
979
980                   timeout
981                       This variable inherits its value from the parent
982                       section if nothing is specified here.
983
984                       Default value: timeout = 5
985
986               (End of dynamical grammar changes for example instance
987               "AnotherSSH".)
988
989           CiscoRTTMonDNS: (See the separate module documentation for details
990           about each variable.)
991               The following new variables are valid:
992
993               forks
994                   see above
995
996                   Default value: forks = 5
997
998               offset
999                   see above
1000
1001               step
1002                   see above
1003
1004               ioshost
1005                   (This variable can be overridden target-specifically in the
1006                   Targets section.)
1007
1008                   This variable dynamically modifies the grammar based on its
1009                   value.
1010
1011               iosint
1012                   (This variable can be overridden target-specifically in the
1013                   Targets section.)
1014
1015               name
1016                   (This variable can be overridden target-specifically in the
1017                   Targets section.)
1018
1019                   This variable dynamically modifies the grammar based on its
1020                   value.
1021
1022               pings
1023                   (This variable can be overridden target-specifically in the
1024                   Targets section.)
1025
1026               timeout
1027                   (This variable can be overridden target-specifically in the
1028                   Targets section.)
1029
1030                   Default value: timeout = 15
1031
1032               Syntax changes for subsection /[-_0-9a-zA-Z]+/
1033
1034                   The following new variables are valid:
1035
1036                   forks
1037                       see above
1038
1039                       This variable inherits its value from the parent
1040                       section if nothing is specified here.
1041
1042                       Default value: forks = 5
1043
1044                   offset
1045                       see above
1046
1047                       This variable inherits its value from the parent
1048                       section if nothing is specified here.
1049
1050                   step
1051                       see above
1052
1053                       This variable inherits its value from the parent
1054                       section if nothing is specified here.
1055
1056                   ioshost
1057                       This variable inherits its value from the parent
1058                       section if nothing is specified here.
1059
1060                   iosint
1061                       This variable inherits its value from the parent
1062                       section if nothing is specified here.
1063
1064                   name
1065                       This variable inherits its value from the parent
1066                       section if nothing is specified here.
1067
1068                   pings
1069                       This variable inherits its value from the parent
1070                       section if nothing is specified here.
1071
1072                   timeout
1073                       This variable inherits its value from the parent
1074                       section if nothing is specified here.
1075
1076                       Default value: timeout = 15
1077
1078               (End of dynamical grammar changes for example instance
1079               "CiscoRTTMonDNS".)
1080
1081           CiscoRTTMonEchoICMP: (See the separate module documentation for
1082           details about each variable.)
1083               The following new variables are valid:
1084
1085               forks
1086                   see above
1087
1088                   Default value: forks = 5
1089
1090               offset
1091                   see above
1092
1093               step
1094                   see above
1095
1096               ioshost
1097                   (This variable can be overridden target-specifically in the
1098                   Targets section.)
1099
1100                   This variable dynamically modifies the grammar based on its
1101                   value.
1102
1103               iosint
1104                   (This variable can be overridden target-specifically in the
1105                   Targets section.)
1106
1107               packetsize
1108                   (This variable can be overridden target-specifically in the
1109                   Targets section.)
1110
1111                   Default value: packetsize = 56
1112
1113               pings
1114                   (This variable can be overridden target-specifically in the
1115                   Targets section.)
1116
1117               timeout
1118                   (This variable can be overridden target-specifically in the
1119                   Targets section.)
1120
1121                   Default value: timeout = 15
1122
1123               tos (This variable can be overridden target-specifically in the
1124                   Targets section.)
1125
1126               vrf (This variable can be overridden target-specifically in the
1127                   Targets section.)
1128
1129               Syntax changes for subsection /[-_0-9a-zA-Z]+/
1130
1131                   The following new variables are valid:
1132
1133                   forks
1134                       see above
1135
1136                       This variable inherits its value from the parent
1137                       section if nothing is specified here.
1138
1139                       Default value: forks = 5
1140
1141                   offset
1142                       see above
1143
1144                       This variable inherits its value from the parent
1145                       section if nothing is specified here.
1146
1147                   step
1148                       see above
1149
1150                       This variable inherits its value from the parent
1151                       section if nothing is specified here.
1152
1153                   ioshost
1154                       This variable inherits its value from the parent
1155                       section if nothing is specified here.
1156
1157                   iosint
1158                       This variable inherits its value from the parent
1159                       section if nothing is specified here.
1160
1161                   packetsize
1162                       This variable inherits its value from the parent
1163                       section if nothing is specified here.
1164
1165                       Default value: packetsize = 56
1166
1167                   pings
1168                       This variable inherits its value from the parent
1169                       section if nothing is specified here.
1170
1171                   timeout
1172                       This variable inherits its value from the parent
1173                       section if nothing is specified here.
1174
1175                       Default value: timeout = 15
1176
1177                   tos This variable inherits its value from the parent
1178                       section if nothing is specified here.
1179
1180                   vrf This variable inherits its value from the parent
1181                       section if nothing is specified here.
1182
1183               (End of dynamical grammar changes for example instance
1184               "CiscoRTTMonEchoICMP".)
1185
1186           CiscoRTTMonTcpConnect: (See the separate module documentation for
1187           details about each variable.)
1188               The following new variables are valid:
1189
1190               forks
1191                   see above
1192
1193                   Default value: forks = 5
1194
1195               offset
1196                   see above
1197
1198               step
1199                   see above
1200
1201               ioshost
1202                   (This variable can be overridden target-specifically in the
1203                   Targets section.)
1204
1205                   This variable dynamically modifies the grammar based on its
1206                   value.
1207
1208               iosint
1209                   (This variable can be overridden target-specifically in the
1210                   Targets section.)
1211
1212               pings
1213                   (This variable can be overridden target-specifically in the
1214                   Targets section.)
1215
1216               port
1217                   (This variable can be overridden target-specifically in the
1218                   Targets section.)
1219
1220                   Default value: port = 80
1221
1222               timeout
1223                   (This variable can be overridden target-specifically in the
1224                   Targets section.)
1225
1226                   Default value: timeout = 15
1227
1228               tos (This variable can be overridden target-specifically in the
1229                   Targets section.)
1230
1231               Syntax changes for subsection /[-_0-9a-zA-Z]+/
1232
1233                   The following new variables are valid:
1234
1235                   forks
1236                       see above
1237
1238                       This variable inherits its value from the parent
1239                       section if nothing is specified here.
1240
1241                       Default value: forks = 5
1242
1243                   offset
1244                       see above
1245
1246                       This variable inherits its value from the parent
1247                       section if nothing is specified here.
1248
1249                   step
1250                       see above
1251
1252                       This variable inherits its value from the parent
1253                       section if nothing is specified here.
1254
1255                   ioshost
1256                       This variable inherits its value from the parent
1257                       section if nothing is specified here.
1258
1259                   iosint
1260                       This variable inherits its value from the parent
1261                       section if nothing is specified here.
1262
1263                   pings
1264                       This variable inherits its value from the parent
1265                       section if nothing is specified here.
1266
1267                   port
1268                       This variable inherits its value from the parent
1269                       section if nothing is specified here.
1270
1271                       Default value: port = 80
1272
1273                   timeout
1274                       This variable inherits its value from the parent
1275                       section if nothing is specified here.
1276
1277                       Default value: timeout = 15
1278
1279                   tos This variable inherits its value from the parent
1280                       section if nothing is specified here.
1281
1282               (End of dynamical grammar changes for example instance
1283               "CiscoRTTMonTcpConnect".)
1284
1285           Curl: (See the separate module documentation for details about each
1286           variable.)
1287               The following new variables are valid:
1288
1289               binary
1290                   see above
1291
1292                   Default value: binary = /usr/bin/curl
1293
1294               forks
1295                   see above
1296
1297                   Default value: forks = 5
1298
1299               offset
1300                   see above
1301
1302               step
1303                   see above
1304
1305               agent
1306                   (This variable can be overridden target-specifically in the
1307                   Targets section.)
1308
1309               expect
1310                   (This variable can be overridden target-specifically in the
1311                   Targets section.)
1312
1313               extraargs
1314                   (This variable can be overridden target-specifically in the
1315                   Targets section.)
1316
1317               extrare
1318                   (This variable can be overridden target-specifically in the
1319                   Targets section.)
1320
1321                   Default value: extrare = / /
1322
1323               follow_redirects
1324                   (This variable can be overridden target-specifically in the
1325                   Targets section.)
1326
1327                   Default value: follow_redirects = no
1328
1329               include_redirects
1330                   (This variable can be overridden target-specifically in the
1331                   Targets section.)
1332
1333                   Default value: include_redirects = no
1334
1335               insecure_ssl
1336                   (This variable can be overridden target-specifically in the
1337                   Targets section.)
1338
1339               interface
1340                   (This variable can be overridden target-specifically in the
1341                   Targets section.)
1342
1343               pings
1344                   (This variable can be overridden target-specifically in the
1345                   Targets section.)
1346
1347               require_zero_status
1348                   (This variable can be overridden target-specifically in the
1349                   Targets section.)
1350
1351                   Default value: require_zero_status = no
1352
1353               ssl2
1354                   (This variable can be overridden target-specifically in the
1355                   Targets section.)
1356
1357               timeout
1358                   (This variable can be overridden target-specifically in the
1359                   Targets section.)
1360
1361                   Default value: timeout = 10
1362
1363               urlformat
1364                   (This variable can be overridden target-specifically in the
1365                   Targets section.)
1366
1367                   This variable dynamically modifies the grammar based on its
1368                   value.
1369
1370               Syntax changes for subsection /[-_0-9a-zA-Z]+/
1371
1372                   The following new variables are valid:
1373
1374                   binary
1375                       see above
1376
1377                       This variable inherits its value from the parent
1378                       section if nothing is specified here.
1379
1380                       Default value: binary = /usr/bin/curl
1381
1382                   forks
1383                       see above
1384
1385                       This variable inherits its value from the parent
1386                       section if nothing is specified here.
1387
1388                       Default value: forks = 5
1389
1390                   offset
1391                       see above
1392
1393                       This variable inherits its value from the parent
1394                       section if nothing is specified here.
1395
1396                   step
1397                       see above
1398
1399                       This variable inherits its value from the parent
1400                       section if nothing is specified here.
1401
1402                   agent
1403                       This variable inherits its value from the parent
1404                       section if nothing is specified here.
1405
1406                   expect
1407                       This variable inherits its value from the parent
1408                       section if nothing is specified here.
1409
1410                   extraargs
1411                       This variable inherits its value from the parent
1412                       section if nothing is specified here.
1413
1414                   extrare
1415                       This variable inherits its value from the parent
1416                       section if nothing is specified here.
1417
1418                       Default value: extrare = / /
1419
1420                   follow_redirects
1421                       This variable inherits its value from the parent
1422                       section if nothing is specified here.
1423
1424                       Default value: follow_redirects = no
1425
1426                   include_redirects
1427                       This variable inherits its value from the parent
1428                       section if nothing is specified here.
1429
1430                       Default value: include_redirects = no
1431
1432                   insecure_ssl
1433                       This variable inherits its value from the parent
1434                       section if nothing is specified here.
1435
1436                   interface
1437                       This variable inherits its value from the parent
1438                       section if nothing is specified here.
1439
1440                   pings
1441                       This variable inherits its value from the parent
1442                       section if nothing is specified here.
1443
1444                   require_zero_status
1445                       This variable inherits its value from the parent
1446                       section if nothing is specified here.
1447
1448                       Default value: require_zero_status = no
1449
1450                   ssl2
1451                       This variable inherits its value from the parent
1452                       section if nothing is specified here.
1453
1454                   timeout
1455                       This variable inherits its value from the parent
1456                       section if nothing is specified here.
1457
1458                       Default value: timeout = 10
1459
1460                   urlformat
1461                       This variable inherits its value from the parent
1462                       section if nothing is specified here.
1463
1464               (End of dynamical grammar changes for example instance "Curl".)
1465
1466           DNS: (See the separate module documentation for details about each
1467           variable.)
1468               The following new variables are valid:
1469
1470               binary (mandatory setting)
1471                   see above
1472
1473               forks
1474                   see above
1475
1476                   Default value: forks = 5
1477
1478               offset
1479                   see above
1480
1481               step
1482                   see above
1483
1484               timeout
1485                   see above
1486
1487                   Default value: timeout = 5
1488
1489               lookup
1490                   (This variable can be overridden target-specifically in the
1491                   Targets section.)
1492
1493               pings
1494                   (This variable can be overridden target-specifically in the
1495                   Targets section.)
1496
1497               server
1498                   (This variable can be overridden target-specifically in the
1499                   Targets section.)
1500
1501               Syntax changes for subsection /[-_0-9a-zA-Z]+/
1502
1503                   The following new variables are valid:
1504
1505                   binary (mandatory setting)
1506                       see above
1507
1508                       This variable inherits its value from the parent
1509                       section if nothing is specified here.
1510
1511                   forks
1512                       see above
1513
1514                       This variable inherits its value from the parent
1515                       section if nothing is specified here.
1516
1517                       Default value: forks = 5
1518
1519                   offset
1520                       see above
1521
1522                       This variable inherits its value from the parent
1523                       section if nothing is specified here.
1524
1525                   step
1526                       see above
1527
1528                       This variable inherits its value from the parent
1529                       section if nothing is specified here.
1530
1531                   timeout
1532                       see above
1533
1534                       This variable inherits its value from the parent
1535                       section if nothing is specified here.
1536
1537                       Default value: timeout = 5
1538
1539                   lookup
1540                       This variable inherits its value from the parent
1541                       section if nothing is specified here.
1542
1543                   pings
1544                       This variable inherits its value from the parent
1545                       section if nothing is specified here.
1546
1547                   server
1548                       This variable inherits its value from the parent
1549                       section if nothing is specified here.
1550
1551               (End of dynamical grammar changes for example instance "DNS".)
1552
1553           DismanPing: (See the separate module documentation for details
1554           about each variable.)
1555               The following new variables are valid:
1556
1557               offset
1558                   see above
1559
1560               pings
1561                   see above
1562
1563                   Default value: pings = 15
1564
1565               step
1566                   see above
1567
1568               ownerindex
1569                   (This variable can be overridden target-specifically in the
1570                   Targets section.)
1571
1572               packetsize
1573                   (This variable can be overridden target-specifically in the
1574                   Targets section.)
1575
1576                   Default value: packetsize = 56
1577
1578               pinghost
1579                   (This variable can be overridden target-specifically in the
1580                   Targets section.)
1581
1582                   This variable dynamically modifies the grammar based on its
1583                   value.
1584
1585               pingsrc
1586                   (This variable can be overridden target-specifically in the
1587                   Targets section.)
1588
1589               Syntax changes for subsection /[-_0-9a-zA-Z]+/
1590
1591                   The following new variables are valid:
1592
1593                   offset
1594                       see above
1595
1596                       This variable inherits its value from the parent
1597                       section if nothing is specified here.
1598
1599                   pings
1600                       see above
1601
1602                       This variable inherits its value from the parent
1603                       section if nothing is specified here.
1604
1605                       Default value: pings = 15
1606
1607                   step
1608                       see above
1609
1610                       This variable inherits its value from the parent
1611                       section if nothing is specified here.
1612
1613                   ownerindex
1614                       This variable inherits its value from the parent
1615                       section if nothing is specified here.
1616
1617                   packetsize
1618                       This variable inherits its value from the parent
1619                       section if nothing is specified here.
1620
1621                       Default value: packetsize = 56
1622
1623                   pinghost
1624                       This variable inherits its value from the parent
1625                       section if nothing is specified here.
1626
1627                   pingsrc
1628                       This variable inherits its value from the parent
1629                       section if nothing is specified here.
1630
1631               (End of dynamical grammar changes for example instance
1632               "DismanPing".)
1633
1634           EchoPing: (See the separate module documentation for details about
1635           each variable.)
1636               The following new variables are valid:
1637
1638               binary
1639                   see above
1640
1641                   Default value: binary = /usr/bin/echoping
1642
1643               forks
1644                   see above
1645
1646                   Default value: forks = 5
1647
1648               offset
1649                   see above
1650
1651               step
1652                   see above
1653
1654               extraopts
1655                   (This variable can be overridden target-specifically in the
1656                   Targets section.)
1657
1658               fill
1659                   (This variable can be overridden target-specifically in the
1660                   Targets section.)
1661
1662               ipversion
1663                   (This variable can be overridden target-specifically in the
1664                   Targets section.)
1665
1666               pings
1667                   (This variable can be overridden target-specifically in the
1668                   Targets section.)
1669
1670               priority
1671                   (This variable can be overridden target-specifically in the
1672                   Targets section.)
1673
1674               size
1675                   (This variable can be overridden target-specifically in the
1676                   Targets section.)
1677
1678               timeout
1679                   (This variable can be overridden target-specifically in the
1680                   Targets section.)
1681
1682                   Default value: timeout = 5
1683
1684               tos (This variable can be overridden target-specifically in the
1685                   Targets section.)
1686
1687               udp (This variable can be overridden target-specifically in the
1688                   Targets section.)
1689
1690               waittime
1691                   (This variable can be overridden target-specifically in the
1692                   Targets section.)
1693
1694               Syntax changes for subsection /[-_0-9a-zA-Z]+/
1695
1696                   The following new variables are valid:
1697
1698                   binary
1699                       see above
1700
1701                       This variable inherits its value from the parent
1702                       section if nothing is specified here.
1703
1704                       Default value: binary = /usr/bin/echoping
1705
1706                   forks
1707                       see above
1708
1709                       This variable inherits its value from the parent
1710                       section if nothing is specified here.
1711
1712                       Default value: forks = 5
1713
1714                   offset
1715                       see above
1716
1717                       This variable inherits its value from the parent
1718                       section if nothing is specified here.
1719
1720                   step
1721                       see above
1722
1723                       This variable inherits its value from the parent
1724                       section if nothing is specified here.
1725
1726                   extraopts
1727                       This variable inherits its value from the parent
1728                       section if nothing is specified here.
1729
1730                   fill
1731                       This variable inherits its value from the parent
1732                       section if nothing is specified here.
1733
1734                   ipversion
1735                       This variable inherits its value from the parent
1736                       section if nothing is specified here.
1737
1738                   pings
1739                       This variable inherits its value from the parent
1740                       section if nothing is specified here.
1741
1742                   priority
1743                       This variable inherits its value from the parent
1744                       section if nothing is specified here.
1745
1746                   size
1747                       This variable inherits its value from the parent
1748                       section if nothing is specified here.
1749
1750                   timeout
1751                       This variable inherits its value from the parent
1752                       section if nothing is specified here.
1753
1754                       Default value: timeout = 5
1755
1756                   tos This variable inherits its value from the parent
1757                       section if nothing is specified here.
1758
1759                   udp This variable inherits its value from the parent
1760                       section if nothing is specified here.
1761
1762                   waittime
1763                       This variable inherits its value from the parent
1764                       section if nothing is specified here.
1765
1766               (End of dynamical grammar changes for example instance
1767               "EchoPing".)
1768
1769           EchoPingChargen: (See the separate module documentation for details
1770           about each variable.)
1771               The following new variables are valid:
1772
1773               binary
1774                   see above
1775
1776                   Default value: binary = /usr/bin/echoping
1777
1778               forks
1779                   see above
1780
1781                   Default value: forks = 5
1782
1783               offset
1784                   see above
1785
1786               step
1787                   see above
1788
1789               extraopts
1790                   (This variable can be overridden target-specifically in the
1791                   Targets section.)
1792
1793               fill
1794                   (This variable can be overridden target-specifically in the
1795                   Targets section.)
1796
1797               ipversion
1798                   (This variable can be overridden target-specifically in the
1799                   Targets section.)
1800
1801               pings
1802                   (This variable can be overridden target-specifically in the
1803                   Targets section.)
1804
1805               priority
1806                   (This variable can be overridden target-specifically in the
1807                   Targets section.)
1808
1809               size
1810                   (This variable can be overridden target-specifically in the
1811                   Targets section.)
1812
1813               timeout
1814                   (This variable can be overridden target-specifically in the
1815                   Targets section.)
1816
1817                   Default value: timeout = 5
1818
1819               tos (This variable can be overridden target-specifically in the
1820                   Targets section.)
1821
1822               waittime
1823                   (This variable can be overridden target-specifically in the
1824                   Targets section.)
1825
1826               Syntax changes for subsection /[-_0-9a-zA-Z]+/
1827
1828                   The following new variables are valid:
1829
1830                   binary
1831                       see above
1832
1833                       This variable inherits its value from the parent
1834                       section if nothing is specified here.
1835
1836                       Default value: binary = /usr/bin/echoping
1837
1838                   forks
1839                       see above
1840
1841                       This variable inherits its value from the parent
1842                       section if nothing is specified here.
1843
1844                       Default value: forks = 5
1845
1846                   offset
1847                       see above
1848
1849                       This variable inherits its value from the parent
1850                       section if nothing is specified here.
1851
1852                   step
1853                       see above
1854
1855                       This variable inherits its value from the parent
1856                       section if nothing is specified here.
1857
1858                   extraopts
1859                       This variable inherits its value from the parent
1860                       section if nothing is specified here.
1861
1862                   fill
1863                       This variable inherits its value from the parent
1864                       section if nothing is specified here.
1865
1866                   ipversion
1867                       This variable inherits its value from the parent
1868                       section if nothing is specified here.
1869
1870                   pings
1871                       This variable inherits its value from the parent
1872                       section if nothing is specified here.
1873
1874                   priority
1875                       This variable inherits its value from the parent
1876                       section if nothing is specified here.
1877
1878                   size
1879                       This variable inherits its value from the parent
1880                       section if nothing is specified here.
1881
1882                   timeout
1883                       This variable inherits its value from the parent
1884                       section if nothing is specified here.
1885
1886                       Default value: timeout = 5
1887
1888                   tos This variable inherits its value from the parent
1889                       section if nothing is specified here.
1890
1891                   waittime
1892                       This variable inherits its value from the parent
1893                       section if nothing is specified here.
1894
1895               (End of dynamical grammar changes for example instance
1896               "EchoPingChargen".)
1897
1898           EchoPingDNS: (See the separate module documentation for details
1899           about each variable.)
1900               The following new variables are valid:
1901
1902               binary
1903                   see above
1904
1905                   Default value: binary = /usr/bin/echoping
1906
1907               forks
1908                   see above
1909
1910                   Default value: forks = 5
1911
1912               offset
1913                   see above
1914
1915               step
1916                   see above
1917
1918               dns_request
1919                   (This variable can be overridden target-specifically in the
1920                   Targets section.)
1921
1922                   This variable dynamically modifies the grammar based on its
1923                   value.
1924
1925               dns_tcp
1926                   (This variable can be overridden target-specifically in the
1927                   Targets section.)
1928
1929               dns_type
1930                   (This variable can be overridden target-specifically in the
1931                   Targets section.)
1932
1933                   Default value: dns_type = A
1934
1935               extraopts
1936                   (This variable can be overridden target-specifically in the
1937                   Targets section.)
1938
1939               ipversion
1940                   (This variable can be overridden target-specifically in the
1941                   Targets section.)
1942
1943               pings
1944                   (This variable can be overridden target-specifically in the
1945                   Targets section.)
1946
1947               plugin
1948                   (This variable can be overridden target-specifically in the
1949                   Targets section.)
1950
1951                   Default value: plugin = dns
1952
1953               pluginargs
1954                   (This variable can be overridden target-specifically in the
1955                   Targets section.)
1956
1957               priority
1958                   (This variable can be overridden target-specifically in the
1959                   Targets section.)
1960
1961               timeout
1962                   (This variable can be overridden target-specifically in the
1963                   Targets section.)
1964
1965                   Default value: timeout = 5
1966
1967               tos (This variable can be overridden target-specifically in the
1968                   Targets section.)
1969
1970               waittime
1971                   (This variable can be overridden target-specifically in the
1972                   Targets section.)
1973
1974               Syntax changes for subsection /[-_0-9a-zA-Z]+/
1975
1976                   The following new variables are valid:
1977
1978                   binary
1979                       see above
1980
1981                       This variable inherits its value from the parent
1982                       section if nothing is specified here.
1983
1984                       Default value: binary = /usr/bin/echoping
1985
1986                   forks
1987                       see above
1988
1989                       This variable inherits its value from the parent
1990                       section if nothing is specified here.
1991
1992                       Default value: forks = 5
1993
1994                   offset
1995                       see above
1996
1997                       This variable inherits its value from the parent
1998                       section if nothing is specified here.
1999
2000                   step
2001                       see above
2002
2003                       This variable inherits its value from the parent
2004                       section if nothing is specified here.
2005
2006                   dns_request
2007                       This variable inherits its value from the parent
2008                       section if nothing is specified here.
2009
2010                   dns_tcp
2011                       This variable inherits its value from the parent
2012                       section if nothing is specified here.
2013
2014                   dns_type
2015                       This variable inherits its value from the parent
2016                       section if nothing is specified here.
2017
2018                       Default value: dns_type = A
2019
2020                   extraopts
2021                       This variable inherits its value from the parent
2022                       section if nothing is specified here.
2023
2024                   ipversion
2025                       This variable inherits its value from the parent
2026                       section if nothing is specified here.
2027
2028                   pings
2029                       This variable inherits its value from the parent
2030                       section if nothing is specified here.
2031
2032                   plugin
2033                       This variable inherits its value from the parent
2034                       section if nothing is specified here.
2035
2036                       Default value: plugin = dns
2037
2038                   pluginargs
2039                       This variable inherits its value from the parent
2040                       section if nothing is specified here.
2041
2042                   priority
2043                       This variable inherits its value from the parent
2044                       section if nothing is specified here.
2045
2046                   timeout
2047                       This variable inherits its value from the parent
2048                       section if nothing is specified here.
2049
2050                       Default value: timeout = 5
2051
2052                   tos This variable inherits its value from the parent
2053                       section if nothing is specified here.
2054
2055                   waittime
2056                       This variable inherits its value from the parent
2057                       section if nothing is specified here.
2058
2059               (End of dynamical grammar changes for example instance
2060               "EchoPingDNS".)
2061
2062           EchoPingDiscard: (See the separate module documentation for details
2063           about each variable.)
2064               The following new variables are valid:
2065
2066               binary
2067                   see above
2068
2069                   Default value: binary = /usr/bin/echoping
2070
2071               forks
2072                   see above
2073
2074                   Default value: forks = 5
2075
2076               offset
2077                   see above
2078
2079               step
2080                   see above
2081
2082               extraopts
2083                   (This variable can be overridden target-specifically in the
2084                   Targets section.)
2085
2086               fill
2087                   (This variable can be overridden target-specifically in the
2088                   Targets section.)
2089
2090               ipversion
2091                   (This variable can be overridden target-specifically in the
2092                   Targets section.)
2093
2094               pings
2095                   (This variable can be overridden target-specifically in the
2096                   Targets section.)
2097
2098               priority
2099                   (This variable can be overridden target-specifically in the
2100                   Targets section.)
2101
2102               size
2103                   (This variable can be overridden target-specifically in the
2104                   Targets section.)
2105
2106               timeout
2107                   (This variable can be overridden target-specifically in the
2108                   Targets section.)
2109
2110                   Default value: timeout = 5
2111
2112               tos (This variable can be overridden target-specifically in the
2113                   Targets section.)
2114
2115               udp (This variable can be overridden target-specifically in the
2116                   Targets section.)
2117
2118               waittime
2119                   (This variable can be overridden target-specifically in the
2120                   Targets section.)
2121
2122               Syntax changes for subsection /[-_0-9a-zA-Z]+/
2123
2124                   The following new variables are valid:
2125
2126                   binary
2127                       see above
2128
2129                       This variable inherits its value from the parent
2130                       section if nothing is specified here.
2131
2132                       Default value: binary = /usr/bin/echoping
2133
2134                   forks
2135                       see above
2136
2137                       This variable inherits its value from the parent
2138                       section if nothing is specified here.
2139
2140                       Default value: forks = 5
2141
2142                   offset
2143                       see above
2144
2145                       This variable inherits its value from the parent
2146                       section if nothing is specified here.
2147
2148                   step
2149                       see above
2150
2151                       This variable inherits its value from the parent
2152                       section if nothing is specified here.
2153
2154                   extraopts
2155                       This variable inherits its value from the parent
2156                       section if nothing is specified here.
2157
2158                   fill
2159                       This variable inherits its value from the parent
2160                       section if nothing is specified here.
2161
2162                   ipversion
2163                       This variable inherits its value from the parent
2164                       section if nothing is specified here.
2165
2166                   pings
2167                       This variable inherits its value from the parent
2168                       section if nothing is specified here.
2169
2170                   priority
2171                       This variable inherits its value from the parent
2172                       section if nothing is specified here.
2173
2174                   size
2175                       This variable inherits its value from the parent
2176                       section if nothing is specified here.
2177
2178                   timeout
2179                       This variable inherits its value from the parent
2180                       section if nothing is specified here.
2181
2182                       Default value: timeout = 5
2183
2184                   tos This variable inherits its value from the parent
2185                       section if nothing is specified here.
2186
2187                   udp This variable inherits its value from the parent
2188                       section if nothing is specified here.
2189
2190                   waittime
2191                       This variable inherits its value from the parent
2192                       section if nothing is specified here.
2193
2194               (End of dynamical grammar changes for example instance
2195               "EchoPingDiscard".)
2196
2197           EchoPingHttp: (See the separate module documentation for details
2198           about each variable.)
2199               The following new variables are valid:
2200
2201               binary
2202                   see above
2203
2204                   Default value: binary = /usr/bin/echoping
2205
2206               forks
2207                   see above
2208
2209                   Default value: forks = 5
2210
2211               offset
2212                   see above
2213
2214               step
2215                   see above
2216
2217               accept_redirects
2218                   (This variable can be overridden target-specifically in the
2219                   Targets section.)
2220
2221               extraopts
2222                   (This variable can be overridden target-specifically in the
2223                   Targets section.)
2224
2225               ignore_cache
2226                   (This variable can be overridden target-specifically in the
2227                   Targets section.)
2228
2229               ipversion
2230                   (This variable can be overridden target-specifically in the
2231                   Targets section.)
2232
2233               pings
2234                   (This variable can be overridden target-specifically in the
2235                   Targets section.)
2236
2237               port
2238                   (This variable can be overridden target-specifically in the
2239                   Targets section.)
2240
2241               priority
2242                   (This variable can be overridden target-specifically in the
2243                   Targets section.)
2244
2245               revalidate_data
2246                   (This variable can be overridden target-specifically in the
2247                   Targets section.)
2248
2249               timeout
2250                   (This variable can be overridden target-specifically in the
2251                   Targets section.)
2252
2253                   Default value: timeout = 10
2254
2255               tos (This variable can be overridden target-specifically in the
2256                   Targets section.)
2257
2258               url (This variable can be overridden target-specifically in the
2259                   Targets section.)
2260
2261                   Default value: url = /
2262
2263               waittime
2264                   (This variable can be overridden target-specifically in the
2265                   Targets section.)
2266
2267               Syntax changes for subsection /[-_0-9a-zA-Z]+/
2268
2269                   The following new variables are valid:
2270
2271                   binary
2272                       see above
2273
2274                       This variable inherits its value from the parent
2275                       section if nothing is specified here.
2276
2277                       Default value: binary = /usr/bin/echoping
2278
2279                   forks
2280                       see above
2281
2282                       This variable inherits its value from the parent
2283                       section if nothing is specified here.
2284
2285                       Default value: forks = 5
2286
2287                   offset
2288                       see above
2289
2290                       This variable inherits its value from the parent
2291                       section if nothing is specified here.
2292
2293                   step
2294                       see above
2295
2296                       This variable inherits its value from the parent
2297                       section if nothing is specified here.
2298
2299                   accept_redirects
2300                       This variable inherits its value from the parent
2301                       section if nothing is specified here.
2302
2303                   extraopts
2304                       This variable inherits its value from the parent
2305                       section if nothing is specified here.
2306
2307                   ignore_cache
2308                       This variable inherits its value from the parent
2309                       section if nothing is specified here.
2310
2311                   ipversion
2312                       This variable inherits its value from the parent
2313                       section if nothing is specified here.
2314
2315                   pings
2316                       This variable inherits its value from the parent
2317                       section if nothing is specified here.
2318
2319                   port
2320                       This variable inherits its value from the parent
2321                       section if nothing is specified here.
2322
2323                   priority
2324                       This variable inherits its value from the parent
2325                       section if nothing is specified here.
2326
2327                   revalidate_data
2328                       This variable inherits its value from the parent
2329                       section if nothing is specified here.
2330
2331                   timeout
2332                       This variable inherits its value from the parent
2333                       section if nothing is specified here.
2334
2335                       Default value: timeout = 10
2336
2337                   tos This variable inherits its value from the parent
2338                       section if nothing is specified here.
2339
2340                   url This variable inherits its value from the parent
2341                       section if nothing is specified here.
2342
2343                       Default value: url = /
2344
2345                   waittime
2346                       This variable inherits its value from the parent
2347                       section if nothing is specified here.
2348
2349               (End of dynamical grammar changes for example instance
2350               "EchoPingHttp".)
2351
2352           EchoPingHttps: (See the separate module documentation for details
2353           about each variable.)
2354               The following new variables are valid:
2355
2356               binary
2357                   see above
2358
2359                   Default value: binary = /usr/bin/echoping
2360
2361               forks
2362                   see above
2363
2364                   Default value: forks = 5
2365
2366               offset
2367                   see above
2368
2369               step
2370                   see above
2371
2372               accept_redirects
2373                   (This variable can be overridden target-specifically in the
2374                   Targets section.)
2375
2376               extraopts
2377                   (This variable can be overridden target-specifically in the
2378                   Targets section.)
2379
2380               ignore_cache
2381                   (This variable can be overridden target-specifically in the
2382                   Targets section.)
2383
2384               ipversion
2385                   (This variable can be overridden target-specifically in the
2386                   Targets section.)
2387
2388               pings
2389                   (This variable can be overridden target-specifically in the
2390                   Targets section.)
2391
2392               port
2393                   (This variable can be overridden target-specifically in the
2394                   Targets section.)
2395
2396               priority
2397                   (This variable can be overridden target-specifically in the
2398                   Targets section.)
2399
2400               prot
2401                   (This variable can be overridden target-specifically in the
2402                   Targets section.)
2403
2404                   Default value: prot = 443
2405
2406               revalidate_data
2407                   (This variable can be overridden target-specifically in the
2408                   Targets section.)
2409
2410               timeout
2411                   (This variable can be overridden target-specifically in the
2412                   Targets section.)
2413
2414                   Default value: timeout = 10
2415
2416               tos (This variable can be overridden target-specifically in the
2417                   Targets section.)
2418
2419               url (This variable can be overridden target-specifically in the
2420                   Targets section.)
2421
2422                   Default value: url = /
2423
2424               waittime
2425                   (This variable can be overridden target-specifically in the
2426                   Targets section.)
2427
2428               Syntax changes for subsection /[-_0-9a-zA-Z]+/
2429
2430                   The following new variables are valid:
2431
2432                   binary
2433                       see above
2434
2435                       This variable inherits its value from the parent
2436                       section if nothing is specified here.
2437
2438                       Default value: binary = /usr/bin/echoping
2439
2440                   forks
2441                       see above
2442
2443                       This variable inherits its value from the parent
2444                       section if nothing is specified here.
2445
2446                       Default value: forks = 5
2447
2448                   offset
2449                       see above
2450
2451                       This variable inherits its value from the parent
2452                       section if nothing is specified here.
2453
2454                   step
2455                       see above
2456
2457                       This variable inherits its value from the parent
2458                       section if nothing is specified here.
2459
2460                   accept_redirects
2461                       This variable inherits its value from the parent
2462                       section if nothing is specified here.
2463
2464                   extraopts
2465                       This variable inherits its value from the parent
2466                       section if nothing is specified here.
2467
2468                   ignore_cache
2469                       This variable inherits its value from the parent
2470                       section if nothing is specified here.
2471
2472                   ipversion
2473                       This variable inherits its value from the parent
2474                       section if nothing is specified here.
2475
2476                   pings
2477                       This variable inherits its value from the parent
2478                       section if nothing is specified here.
2479
2480                   port
2481                       This variable inherits its value from the parent
2482                       section if nothing is specified here.
2483
2484                   priority
2485                       This variable inherits its value from the parent
2486                       section if nothing is specified here.
2487
2488                   prot
2489                       This variable inherits its value from the parent
2490                       section if nothing is specified here.
2491
2492                       Default value: prot = 443
2493
2494                   revalidate_data
2495                       This variable inherits its value from the parent
2496                       section if nothing is specified here.
2497
2498                   timeout
2499                       This variable inherits its value from the parent
2500                       section if nothing is specified here.
2501
2502                       Default value: timeout = 10
2503
2504                   tos This variable inherits its value from the parent
2505                       section if nothing is specified here.
2506
2507                   url This variable inherits its value from the parent
2508                       section if nothing is specified here.
2509
2510                       Default value: url = /
2511
2512                   waittime
2513                       This variable inherits its value from the parent
2514                       section if nothing is specified here.
2515
2516               (End of dynamical grammar changes for example instance
2517               "EchoPingHttps".)
2518
2519           EchoPingIcp: (See the separate module documentation for details
2520           about each variable.)
2521               The following new variables are valid:
2522
2523               binary
2524                   see above
2525
2526                   Default value: binary = /usr/bin/echoping
2527
2528               forks
2529                   see above
2530
2531                   Default value: forks = 5
2532
2533               offset
2534                   see above
2535
2536               step
2537                   see above
2538
2539               extraopts
2540                   (This variable can be overridden target-specifically in the
2541                   Targets section.)
2542
2543               ipversion
2544                   (This variable can be overridden target-specifically in the
2545                   Targets section.)
2546
2547               pings
2548                   (This variable can be overridden target-specifically in the
2549                   Targets section.)
2550
2551               priority
2552                   (This variable can be overridden target-specifically in the
2553                   Targets section.)
2554
2555               timeout
2556                   (This variable can be overridden target-specifically in the
2557                   Targets section.)
2558
2559                   Default value: timeout = 5
2560
2561               tos (This variable can be overridden target-specifically in the
2562                   Targets section.)
2563
2564               url (This variable can be overridden target-specifically in the
2565                   Targets section.)
2566
2567                   This variable dynamically modifies the grammar based on its
2568                   value.
2569
2570               waittime
2571                   (This variable can be overridden target-specifically in the
2572                   Targets section.)
2573
2574               Syntax changes for subsection /[-_0-9a-zA-Z]+/
2575
2576                   The following new variables are valid:
2577
2578                   binary
2579                       see above
2580
2581                       This variable inherits its value from the parent
2582                       section if nothing is specified here.
2583
2584                       Default value: binary = /usr/bin/echoping
2585
2586                   forks
2587                       see above
2588
2589                       This variable inherits its value from the parent
2590                       section if nothing is specified here.
2591
2592                       Default value: forks = 5
2593
2594                   offset
2595                       see above
2596
2597                       This variable inherits its value from the parent
2598                       section if nothing is specified here.
2599
2600                   step
2601                       see above
2602
2603                       This variable inherits its value from the parent
2604                       section if nothing is specified here.
2605
2606                   extraopts
2607                       This variable inherits its value from the parent
2608                       section if nothing is specified here.
2609
2610                   ipversion
2611                       This variable inherits its value from the parent
2612                       section if nothing is specified here.
2613
2614                   pings
2615                       This variable inherits its value from the parent
2616                       section if nothing is specified here.
2617
2618                   priority
2619                       This variable inherits its value from the parent
2620                       section if nothing is specified here.
2621
2622                   timeout
2623                       This variable inherits its value from the parent
2624                       section if nothing is specified here.
2625
2626                       Default value: timeout = 5
2627
2628                   tos This variable inherits its value from the parent
2629                       section if nothing is specified here.
2630
2631                   url This variable inherits its value from the parent
2632                       section if nothing is specified here.
2633
2634                   waittime
2635                       This variable inherits its value from the parent
2636                       section if nothing is specified here.
2637
2638               (End of dynamical grammar changes for example instance
2639               "EchoPingIcp".)
2640
2641           EchoPingLDAP: (See the separate module documentation for details
2642           about each variable.)
2643               The following new variables are valid:
2644
2645               binary
2646                   see above
2647
2648                   Default value: binary = /usr/bin/echoping
2649
2650               forks
2651                   see above
2652
2653                   Default value: forks = 5
2654
2655               offset
2656                   see above
2657
2658               step
2659                   see above
2660
2661               extraopts
2662                   (This variable can be overridden target-specifically in the
2663                   Targets section.)
2664
2665               ipversion
2666                   (This variable can be overridden target-specifically in the
2667                   Targets section.)
2668
2669               ldap_base
2670                   (This variable can be overridden target-specifically in the
2671                   Targets section.)
2672
2673               ldap_request
2674                   (This variable can be overridden target-specifically in the
2675                   Targets section.)
2676
2677               ldap_scope
2678                   (This variable can be overridden target-specifically in the
2679                   Targets section.)
2680
2681               pings
2682                   (This variable can be overridden target-specifically in the
2683                   Targets section.)
2684
2685               plugin
2686                   (This variable can be overridden target-specifically in the
2687                   Targets section.)
2688
2689                   Default value: plugin = ldap
2690
2691               pluginargs
2692                   (This variable can be overridden target-specifically in the
2693                   Targets section.)
2694
2695               priority
2696                   (This variable can be overridden target-specifically in the
2697                   Targets section.)
2698
2699               timeout
2700                   (This variable can be overridden target-specifically in the
2701                   Targets section.)
2702
2703                   Default value: timeout = 5
2704
2705               tos (This variable can be overridden target-specifically in the
2706                   Targets section.)
2707
2708               waittime
2709                   (This variable can be overridden target-specifically in the
2710                   Targets section.)
2711
2712               Syntax changes for subsection /[-_0-9a-zA-Z]+/
2713
2714                   The following new variables are valid:
2715
2716                   binary
2717                       see above
2718
2719                       This variable inherits its value from the parent
2720                       section if nothing is specified here.
2721
2722                       Default value: binary = /usr/bin/echoping
2723
2724                   forks
2725                       see above
2726
2727                       This variable inherits its value from the parent
2728                       section if nothing is specified here.
2729
2730                       Default value: forks = 5
2731
2732                   offset
2733                       see above
2734
2735                       This variable inherits its value from the parent
2736                       section if nothing is specified here.
2737
2738                   step
2739                       see above
2740
2741                       This variable inherits its value from the parent
2742                       section if nothing is specified here.
2743
2744                   extraopts
2745                       This variable inherits its value from the parent
2746                       section if nothing is specified here.
2747
2748                   ipversion
2749                       This variable inherits its value from the parent
2750                       section if nothing is specified here.
2751
2752                   ldap_base
2753                       This variable inherits its value from the parent
2754                       section if nothing is specified here.
2755
2756                   ldap_request
2757                       This variable inherits its value from the parent
2758                       section if nothing is specified here.
2759
2760                   ldap_scope
2761                       This variable inherits its value from the parent
2762                       section if nothing is specified here.
2763
2764                   pings
2765                       This variable inherits its value from the parent
2766                       section if nothing is specified here.
2767
2768                   plugin
2769                       This variable inherits its value from the parent
2770                       section if nothing is specified here.
2771
2772                       Default value: plugin = ldap
2773
2774                   pluginargs
2775                       This variable inherits its value from the parent
2776                       section if nothing is specified here.
2777
2778                   priority
2779                       This variable inherits its value from the parent
2780                       section if nothing is specified here.
2781
2782                   timeout
2783                       This variable inherits its value from the parent
2784                       section if nothing is specified here.
2785
2786                       Default value: timeout = 5
2787
2788                   tos This variable inherits its value from the parent
2789                       section if nothing is specified here.
2790
2791                   waittime
2792                       This variable inherits its value from the parent
2793                       section if nothing is specified here.
2794
2795               (End of dynamical grammar changes for example instance
2796               "EchoPingLDAP".)
2797
2798           EchoPingPlugin: (See the separate module documentation for details
2799           about each variable.)
2800               The following new variables are valid:
2801
2802               binary
2803                   see above
2804
2805                   Default value: binary = /usr/bin/echoping
2806
2807               forks
2808                   see above
2809
2810                   Default value: forks = 5
2811
2812               offset
2813                   see above
2814
2815               step
2816                   see above
2817
2818               extraopts
2819                   (This variable can be overridden target-specifically in the
2820                   Targets section.)
2821
2822               ipversion
2823                   (This variable can be overridden target-specifically in the
2824                   Targets section.)
2825
2826               pings
2827                   (This variable can be overridden target-specifically in the
2828                   Targets section.)
2829
2830               plugin
2831                   (This variable can be overridden target-specifically in the
2832                   Targets section.)
2833
2834                   This variable dynamically modifies the grammar based on its
2835                   value.
2836
2837               pluginargs
2838                   (This variable can be overridden target-specifically in the
2839                   Targets section.)
2840
2841               priority
2842                   (This variable can be overridden target-specifically in the
2843                   Targets section.)
2844
2845               timeout
2846                   (This variable can be overridden target-specifically in the
2847                   Targets section.)
2848
2849                   Default value: timeout = 5
2850
2851               tos (This variable can be overridden target-specifically in the
2852                   Targets section.)
2853
2854               waittime
2855                   (This variable can be overridden target-specifically in the
2856                   Targets section.)
2857
2858               Syntax changes for subsection /[-_0-9a-zA-Z]+/
2859
2860                   The following new variables are valid:
2861
2862                   binary
2863                       see above
2864
2865                       This variable inherits its value from the parent
2866                       section if nothing is specified here.
2867
2868                       Default value: binary = /usr/bin/echoping
2869
2870                   forks
2871                       see above
2872
2873                       This variable inherits its value from the parent
2874                       section if nothing is specified here.
2875
2876                       Default value: forks = 5
2877
2878                   offset
2879                       see above
2880
2881                       This variable inherits its value from the parent
2882                       section if nothing is specified here.
2883
2884                   step
2885                       see above
2886
2887                       This variable inherits its value from the parent
2888                       section if nothing is specified here.
2889
2890                   extraopts
2891                       This variable inherits its value from the parent
2892                       section if nothing is specified here.
2893
2894                   ipversion
2895                       This variable inherits its value from the parent
2896                       section if nothing is specified here.
2897
2898                   pings
2899                       This variable inherits its value from the parent
2900                       section if nothing is specified here.
2901
2902                   plugin
2903                       This variable inherits its value from the parent
2904                       section if nothing is specified here.
2905
2906                   pluginargs
2907                       This variable inherits its value from the parent
2908                       section if nothing is specified here.
2909
2910                   priority
2911                       This variable inherits its value from the parent
2912                       section if nothing is specified here.
2913
2914                   timeout
2915                       This variable inherits its value from the parent
2916                       section if nothing is specified here.
2917
2918                       Default value: timeout = 5
2919
2920                   tos This variable inherits its value from the parent
2921                       section if nothing is specified here.
2922
2923                   waittime
2924                       This variable inherits its value from the parent
2925                       section if nothing is specified here.
2926
2927               (End of dynamical grammar changes for example instance
2928               "EchoPingPlugin".)
2929
2930           EchoPingSmtp: (See the separate module documentation for details
2931           about each variable.)
2932               The following new variables are valid:
2933
2934               binary
2935                   see above
2936
2937                   Default value: binary = /usr/bin/echoping
2938
2939               forks
2940                   see above
2941
2942                   Default value: forks = 5
2943
2944               offset
2945                   see above
2946
2947               step
2948                   see above
2949
2950               extraopts
2951                   (This variable can be overridden target-specifically in the
2952                   Targets section.)
2953
2954               ipversion
2955                   (This variable can be overridden target-specifically in the
2956                   Targets section.)
2957
2958               pings
2959                   (This variable can be overridden target-specifically in the
2960                   Targets section.)
2961
2962               priority
2963                   (This variable can be overridden target-specifically in the
2964                   Targets section.)
2965
2966               timeout
2967                   (This variable can be overridden target-specifically in the
2968                   Targets section.)
2969
2970                   Default value: timeout = 5
2971
2972               tos (This variable can be overridden target-specifically in the
2973                   Targets section.)
2974
2975               waittime
2976                   (This variable can be overridden target-specifically in the
2977                   Targets section.)
2978
2979               Syntax changes for subsection /[-_0-9a-zA-Z]+/
2980
2981                   The following new variables are valid:
2982
2983                   binary
2984                       see above
2985
2986                       This variable inherits its value from the parent
2987                       section if nothing is specified here.
2988
2989                       Default value: binary = /usr/bin/echoping
2990
2991                   forks
2992                       see above
2993
2994                       This variable inherits its value from the parent
2995                       section if nothing is specified here.
2996
2997                       Default value: forks = 5
2998
2999                   offset
3000                       see above
3001
3002                       This variable inherits its value from the parent
3003                       section if nothing is specified here.
3004
3005                   step
3006                       see above
3007
3008                       This variable inherits its value from the parent
3009                       section if nothing is specified here.
3010
3011                   extraopts
3012                       This variable inherits its value from the parent
3013                       section if nothing is specified here.
3014
3015                   ipversion
3016                       This variable inherits its value from the parent
3017                       section if nothing is specified here.
3018
3019                   pings
3020                       This variable inherits its value from the parent
3021                       section if nothing is specified here.
3022
3023                   priority
3024                       This variable inherits its value from the parent
3025                       section if nothing is specified here.
3026
3027                   timeout
3028                       This variable inherits its value from the parent
3029                       section if nothing is specified here.
3030
3031                       Default value: timeout = 5
3032
3033                   tos This variable inherits its value from the parent
3034                       section if nothing is specified here.
3035
3036                   waittime
3037                       This variable inherits its value from the parent
3038                       section if nothing is specified here.
3039
3040               (End of dynamical grammar changes for example instance
3041               "EchoPingSmtp".)
3042
3043           EchoPingWhois: (See the separate module documentation for details
3044           about each variable.)
3045               The following new variables are valid:
3046
3047               binary
3048                   see above
3049
3050                   Default value: binary = /usr/bin/echoping
3051
3052               forks
3053                   see above
3054
3055                   Default value: forks = 5
3056
3057               offset
3058                   see above
3059
3060               step
3061                   see above
3062
3063               extraopts
3064                   (This variable can be overridden target-specifically in the
3065                   Targets section.)
3066
3067               ipversion
3068                   (This variable can be overridden target-specifically in the
3069                   Targets section.)
3070
3071               pings
3072                   (This variable can be overridden target-specifically in the
3073                   Targets section.)
3074
3075               plugin
3076                   (This variable can be overridden target-specifically in the
3077                   Targets section.)
3078
3079                   Default value: plugin = whois
3080
3081               pluginargs
3082                   (This variable can be overridden target-specifically in the
3083                   Targets section.)
3084
3085               priority
3086                   (This variable can be overridden target-specifically in the
3087                   Targets section.)
3088
3089               timeout
3090                   (This variable can be overridden target-specifically in the
3091                   Targets section.)
3092
3093                   Default value: timeout = 5
3094
3095               tos (This variable can be overridden target-specifically in the
3096                   Targets section.)
3097
3098               waittime
3099                   (This variable can be overridden target-specifically in the
3100                   Targets section.)
3101
3102               whois_request
3103                   (This variable can be overridden target-specifically in the
3104                   Targets section.)
3105
3106                   This variable dynamically modifies the grammar based on its
3107                   value.
3108
3109               Syntax changes for subsection /[-_0-9a-zA-Z]+/
3110
3111                   The following new variables are valid:
3112
3113                   binary
3114                       see above
3115
3116                       This variable inherits its value from the parent
3117                       section if nothing is specified here.
3118
3119                       Default value: binary = /usr/bin/echoping
3120
3121                   forks
3122                       see above
3123
3124                       This variable inherits its value from the parent
3125                       section if nothing is specified here.
3126
3127                       Default value: forks = 5
3128
3129                   offset
3130                       see above
3131
3132                       This variable inherits its value from the parent
3133                       section if nothing is specified here.
3134
3135                   step
3136                       see above
3137
3138                       This variable inherits its value from the parent
3139                       section if nothing is specified here.
3140
3141                   extraopts
3142                       This variable inherits its value from the parent
3143                       section if nothing is specified here.
3144
3145                   ipversion
3146                       This variable inherits its value from the parent
3147                       section if nothing is specified here.
3148
3149                   pings
3150                       This variable inherits its value from the parent
3151                       section if nothing is specified here.
3152
3153                   plugin
3154                       This variable inherits its value from the parent
3155                       section if nothing is specified here.
3156
3157                       Default value: plugin = whois
3158
3159                   pluginargs
3160                       This variable inherits its value from the parent
3161                       section if nothing is specified here.
3162
3163                   priority
3164                       This variable inherits its value from the parent
3165                       section if nothing is specified here.
3166
3167                   timeout
3168                       This variable inherits its value from the parent
3169                       section if nothing is specified here.
3170
3171                       Default value: timeout = 5
3172
3173                   tos This variable inherits its value from the parent
3174                       section if nothing is specified here.
3175
3176                   waittime
3177                       This variable inherits its value from the parent
3178                       section if nothing is specified here.
3179
3180                   whois_request
3181                       This variable inherits its value from the parent
3182                       section if nothing is specified here.
3183
3184               (End of dynamical grammar changes for example instance
3185               "EchoPingWhois".)
3186
3187           FPing: (See the separate module documentation for details about
3188           each variable.)
3189               The following new variables are valid:
3190
3191               binary (mandatory setting)
3192                   see above
3193
3194               blazemode
3195                   see above
3196
3197               hostinterval
3198                   see above
3199
3200               mininterval
3201                   see above
3202
3203                   Default value: mininterval = 0.01
3204
3205               offset
3206                   see above
3207
3208               packetsize
3209                   see above
3210
3211               pings
3212                   see above
3213
3214               protocol
3215                   see above
3216
3217                   Default value: protocol = 4
3218
3219               sourceaddress
3220                   see above
3221
3222               step
3223                   see above
3224
3225               timeout
3226                   see above
3227
3228               tos see above
3229
3230               usestdout
3231                   see above
3232
3233               Syntax changes for subsection /[-_0-9a-zA-Z]+/
3234
3235                   The following new variables are valid:
3236
3237                   binary (mandatory setting)
3238                       see above
3239
3240                       This variable inherits its value from the parent
3241                       section if nothing is specified here.
3242
3243                   blazemode
3244                       see above
3245
3246                       This variable inherits its value from the parent
3247                       section if nothing is specified here.
3248
3249                   hostinterval
3250                       see above
3251
3252                       This variable inherits its value from the parent
3253                       section if nothing is specified here.
3254
3255                   mininterval
3256                       see above
3257
3258                       This variable inherits its value from the parent
3259                       section if nothing is specified here.
3260
3261                       Default value: mininterval = 0.01
3262
3263                   offset
3264                       see above
3265
3266                       This variable inherits its value from the parent
3267                       section if nothing is specified here.
3268
3269                   packetsize
3270                       see above
3271
3272                       This variable inherits its value from the parent
3273                       section if nothing is specified here.
3274
3275                   pings
3276                       see above
3277
3278                       This variable inherits its value from the parent
3279                       section if nothing is specified here.
3280
3281                   protocol
3282                       see above
3283
3284                       This variable inherits its value from the parent
3285                       section if nothing is specified here.
3286
3287                       Default value: protocol = 4
3288
3289                   sourceaddress
3290                       see above
3291
3292                       This variable inherits its value from the parent
3293                       section if nothing is specified here.
3294
3295                   step
3296                       see above
3297
3298                       This variable inherits its value from the parent
3299                       section if nothing is specified here.
3300
3301                   timeout
3302                       see above
3303
3304                       This variable inherits its value from the parent
3305                       section if nothing is specified here.
3306
3307                   tos see above
3308
3309                       This variable inherits its value from the parent
3310                       section if nothing is specified here.
3311
3312                   usestdout
3313                       see above
3314
3315                       This variable inherits its value from the parent
3316                       section if nothing is specified here.
3317
3318               (End of dynamical grammar changes for example instance
3319               "FPing".)
3320
3321           FPing6: (See the separate module documentation for details about
3322           each variable.)
3323               The following new variables are valid:
3324
3325               binary (mandatory setting)
3326                   see above
3327
3328               blazemode
3329                   see above
3330
3331               hostinterval
3332                   see above
3333
3334               mininterval
3335                   see above
3336
3337                   Default value: mininterval = 0.01
3338
3339               offset
3340                   see above
3341
3342               packetsize
3343                   see above
3344
3345               pings
3346                   see above
3347
3348               protocol
3349                   see above
3350
3351                   Default value: protocol = 6
3352
3353               sourceaddress
3354                   see above
3355
3356               step
3357                   see above
3358
3359               timeout
3360                   see above
3361
3362               tos see above
3363
3364               usestdout
3365                   see above
3366
3367               Syntax changes for subsection /[-_0-9a-zA-Z]+/
3368
3369                   The following new variables are valid:
3370
3371                   binary (mandatory setting)
3372                       see above
3373
3374                       This variable inherits its value from the parent
3375                       section if nothing is specified here.
3376
3377                   blazemode
3378                       see above
3379
3380                       This variable inherits its value from the parent
3381                       section if nothing is specified here.
3382
3383                   hostinterval
3384                       see above
3385
3386                       This variable inherits its value from the parent
3387                       section if nothing is specified here.
3388
3389                   mininterval
3390                       see above
3391
3392                       This variable inherits its value from the parent
3393                       section if nothing is specified here.
3394
3395                       Default value: mininterval = 0.01
3396
3397                   offset
3398                       see above
3399
3400                       This variable inherits its value from the parent
3401                       section if nothing is specified here.
3402
3403                   packetsize
3404                       see above
3405
3406                       This variable inherits its value from the parent
3407                       section if nothing is specified here.
3408
3409                   pings
3410                       see above
3411
3412                       This variable inherits its value from the parent
3413                       section if nothing is specified here.
3414
3415                   protocol
3416                       see above
3417
3418                       This variable inherits its value from the parent
3419                       section if nothing is specified here.
3420
3421                       Default value: protocol = 6
3422
3423                   sourceaddress
3424                       see above
3425
3426                       This variable inherits its value from the parent
3427                       section if nothing is specified here.
3428
3429                   step
3430                       see above
3431
3432                       This variable inherits its value from the parent
3433                       section if nothing is specified here.
3434
3435                   timeout
3436                       see above
3437
3438                       This variable inherits its value from the parent
3439                       section if nothing is specified here.
3440
3441                   tos see above
3442
3443                       This variable inherits its value from the parent
3444                       section if nothing is specified here.
3445
3446                   usestdout
3447                       see above
3448
3449                       This variable inherits its value from the parent
3450                       section if nothing is specified here.
3451
3452               (End of dynamical grammar changes for example instance
3453               "FPing6".)
3454
3455           FPingContinuous: (See the separate module documentation for details
3456           about each variable.)
3457               The following new variables are valid:
3458
3459               binary (mandatory setting)
3460                   see above
3461
3462               hostinterval
3463                   see above
3464
3465               offset
3466                   see above
3467
3468               packetsize
3469                   see above
3470
3471               pings
3472                   see above
3473
3474               sourceaddress
3475                   see above
3476
3477               step
3478                   see above
3479
3480               timeout
3481                   see above
3482
3483               tos see above
3484
3485               usestdout
3486                   see above
3487
3488               Syntax changes for subsection /[-_0-9a-zA-Z]+/
3489
3490                   The following new variables are valid:
3491
3492                   binary (mandatory setting)
3493                       see above
3494
3495                       This variable inherits its value from the parent
3496                       section if nothing is specified here.
3497
3498                   hostinterval
3499                       see above
3500
3501                       This variable inherits its value from the parent
3502                       section if nothing is specified here.
3503
3504                   offset
3505                       see above
3506
3507                       This variable inherits its value from the parent
3508                       section if nothing is specified here.
3509
3510                   packetsize
3511                       see above
3512
3513                       This variable inherits its value from the parent
3514                       section if nothing is specified here.
3515
3516                   pings
3517                       see above
3518
3519                       This variable inherits its value from the parent
3520                       section if nothing is specified here.
3521
3522                   sourceaddress
3523                       see above
3524
3525                       This variable inherits its value from the parent
3526                       section if nothing is specified here.
3527
3528                   step
3529                       see above
3530
3531                       This variable inherits its value from the parent
3532                       section if nothing is specified here.
3533
3534                   timeout
3535                       see above
3536
3537                       This variable inherits its value from the parent
3538                       section if nothing is specified here.
3539
3540                   tos see above
3541
3542                       This variable inherits its value from the parent
3543                       section if nothing is specified here.
3544
3545                   usestdout
3546                       see above
3547
3548                       This variable inherits its value from the parent
3549                       section if nothing is specified here.
3550
3551               (End of dynamical grammar changes for example instance
3552               "FPingContinuous".)
3553
3554           FTPtransfer: (See the separate module documentation for details
3555           about each variable.)
3556               The following new variables are valid:
3557
3558               destfile
3559                   see above
3560
3561               forks
3562                   see above
3563
3564                   Default value: forks = 5
3565
3566               min_interval
3567                   see above
3568
3569                   Default value: min_interval = 1
3570
3571               mode (mandatory setting)
3572                   see above
3573
3574               offset
3575                   see above
3576
3577               passwordfile
3578                   see above
3579
3580               srcfile (mandatory setting)
3581                   see above
3582
3583               step
3584                   see above
3585
3586               localaddr
3587                   (This variable can be overridden target-specifically in the
3588                   Targets section.)
3589
3590               passive
3591                   (This variable can be overridden target-specifically in the
3592                   Targets section.)
3593
3594               password
3595                   (This variable can be overridden target-specifically in the
3596                   Targets section.)
3597
3598               pings
3599                   (This variable can be overridden target-specifically in the
3600                   Targets section.)
3601
3602               port
3603                   (This variable can be overridden target-specifically in the
3604                   Targets section.)
3605
3606               timeout (mandatory setting)
3607                   (This variable can be overridden target-specifically in the
3608                   Targets section.)
3609
3610               username
3611                   (This variable can be overridden target-specifically in the
3612                   Targets section.)
3613
3614               Syntax changes for subsection /[-_0-9a-zA-Z]+/
3615
3616                   The following new variables are valid:
3617
3618                   destfile
3619                       see above
3620
3621                       This variable inherits its value from the parent
3622                       section if nothing is specified here.
3623
3624                   forks
3625                       see above
3626
3627                       This variable inherits its value from the parent
3628                       section if nothing is specified here.
3629
3630                       Default value: forks = 5
3631
3632                   min_interval
3633                       see above
3634
3635                       This variable inherits its value from the parent
3636                       section if nothing is specified here.
3637
3638                       Default value: min_interval = 1
3639
3640                   mode (mandatory setting)
3641                       see above
3642
3643                       This variable inherits its value from the parent
3644                       section if nothing is specified here.
3645
3646                   offset
3647                       see above
3648
3649                       This variable inherits its value from the parent
3650                       section if nothing is specified here.
3651
3652                   passwordfile
3653                       see above
3654
3655                       This variable inherits its value from the parent
3656                       section if nothing is specified here.
3657
3658                   srcfile (mandatory setting)
3659                       see above
3660
3661                       This variable inherits its value from the parent
3662                       section if nothing is specified here.
3663
3664                   step
3665                       see above
3666
3667                       This variable inherits its value from the parent
3668                       section if nothing is specified here.
3669
3670                   localaddr
3671                       This variable inherits its value from the parent
3672                       section if nothing is specified here.
3673
3674                   passive
3675                       This variable inherits its value from the parent
3676                       section if nothing is specified here.
3677
3678                   password
3679                       This variable inherits its value from the parent
3680                       section if nothing is specified here.
3681
3682                   pings
3683                       This variable inherits its value from the parent
3684                       section if nothing is specified here.
3685
3686                   port
3687                       This variable inherits its value from the parent
3688                       section if nothing is specified here.
3689
3690                   timeout (mandatory setting)
3691                       This variable inherits its value from the parent
3692                       section if nothing is specified here.
3693
3694                   username
3695                       This variable inherits its value from the parent
3696                       section if nothing is specified here.
3697
3698               (End of dynamical grammar changes for example instance
3699               "FTPtransfer".)
3700
3701           IOSPing: (See the separate module documentation for details about
3702           each variable.)
3703               The following new variables are valid:
3704
3705               binary (mandatory setting)
3706                   see above
3707
3708               forks
3709                   see above
3710
3711                   Default value: forks = 5
3712
3713               offset
3714                   see above
3715
3716               packetsize
3717                   see above
3718
3719                   Default value: packetsize = 56
3720
3721               step
3722                   see above
3723
3724               timeout
3725                   see above
3726
3727                   Default value: timeout = 5
3728
3729               ioshost
3730                   (This variable can be overridden target-specifically in the
3731                   Targets section.)
3732
3733                   This variable dynamically modifies the grammar based on its
3734                   value.
3735
3736               iosint
3737                   (This variable can be overridden target-specifically in the
3738                   Targets section.)
3739
3740               iosuser
3741                   (This variable can be overridden target-specifically in the
3742                   Targets section.)
3743
3744               pings
3745                   (This variable can be overridden target-specifically in the
3746                   Targets section.)
3747
3748               Syntax changes for subsection /[-_0-9a-zA-Z]+/
3749
3750                   The following new variables are valid:
3751
3752                   binary (mandatory setting)
3753                       see above
3754
3755                       This variable inherits its value from the parent
3756                       section if nothing is specified here.
3757
3758                   forks
3759                       see above
3760
3761                       This variable inherits its value from the parent
3762                       section if nothing is specified here.
3763
3764                       Default value: forks = 5
3765
3766                   offset
3767                       see above
3768
3769                       This variable inherits its value from the parent
3770                       section if nothing is specified here.
3771
3772                   packetsize
3773                       see above
3774
3775                       This variable inherits its value from the parent
3776                       section if nothing is specified here.
3777
3778                       Default value: packetsize = 56
3779
3780                   step
3781                       see above
3782
3783                       This variable inherits its value from the parent
3784                       section if nothing is specified here.
3785
3786                   timeout
3787                       see above
3788
3789                       This variable inherits its value from the parent
3790                       section if nothing is specified here.
3791
3792                       Default value: timeout = 5
3793
3794                   ioshost
3795                       This variable inherits its value from the parent
3796                       section if nothing is specified here.
3797
3798                   iosint
3799                       This variable inherits its value from the parent
3800                       section if nothing is specified here.
3801
3802                   iosuser
3803                       This variable inherits its value from the parent
3804                       section if nothing is specified here.
3805
3806                   pings
3807                       This variable inherits its value from the parent
3808                       section if nothing is specified here.
3809
3810               (End of dynamical grammar changes for example instance
3811               "IOSPing".)
3812
3813           IRTT: (See the separate module documentation for details about each
3814           variable.)
3815               The following new variables are valid:
3816
3817               binary (mandatory setting)
3818                   see above
3819
3820                   Default value: binary = /usr/bin/irtt
3821
3822               forks
3823                   see above
3824
3825                   Default value: forks = 5
3826
3827               offset
3828                   see above
3829
3830               step
3831                   see above
3832
3833               timeout
3834                   see above
3835
3836                   Default value: timeout = 5
3837
3838               tmpdir
3839                   see above
3840
3841                   Default value: tmpdir = /tmp/smokeping-irtt
3842
3843               dscp
3844                   (This variable can be overridden target-specifically in the
3845                   Targets section.)
3846
3847               extraargs
3848                   (This variable can be overridden target-specifically in the
3849                   Targets section.)
3850
3851               fill
3852                   (This variable can be overridden target-specifically in the
3853                   Targets section.)
3854
3855               hmac
3856                   (This variable can be overridden target-specifically in the
3857                   Targets section.)
3858
3859               interval
3860                   (This variable can be overridden target-specifically in the
3861                   Targets section.)
3862
3863                   Default value: interval = 1
3864
3865               ipversion
3866                   (This variable can be overridden target-specifically in the
3867                   Targets section.)
3868
3869               length
3870                   (This variable can be overridden target-specifically in the
3871                   Targets section.)
3872
3873               localaddr
3874                   (This variable can be overridden target-specifically in the
3875                   Targets section.)
3876
3877               metric
3878                   (This variable can be overridden target-specifically in the
3879                   Targets section.)
3880
3881                   Default value: metric = rtt
3882
3883               pings
3884                   (This variable can be overridden target-specifically in the
3885                   Targets section.)
3886
3887               readfrom
3888                   (This variable can be overridden target-specifically in the
3889                   Targets section.)
3890
3891               readfrompollinterval
3892                   (This variable can be overridden target-specifically in the
3893                   Targets section.)
3894
3895                   Default value: readfrompollinterval = 5
3896
3897               serverfill
3898                   (This variable can be overridden target-specifically in the
3899                   Targets section.)
3900
3901               sleep
3902                   (This variable can be overridden target-specifically in the
3903                   Targets section.)
3904
3905               writeto
3906                   (This variable can be overridden target-specifically in the
3907                   Targets section.)
3908
3909               Syntax changes for subsection /[-_0-9a-zA-Z]+/
3910
3911                   The following new variables are valid:
3912
3913                   binary (mandatory setting)
3914                       see above
3915
3916                       This variable inherits its value from the parent
3917                       section if nothing is specified here.
3918
3919                       Default value: binary = /usr/bin/irtt
3920
3921                   forks
3922                       see above
3923
3924                       This variable inherits its value from the parent
3925                       section if nothing is specified here.
3926
3927                       Default value: forks = 5
3928
3929                   offset
3930                       see above
3931
3932                       This variable inherits its value from the parent
3933                       section if nothing is specified here.
3934
3935                   step
3936                       see above
3937
3938                       This variable inherits its value from the parent
3939                       section if nothing is specified here.
3940
3941                   timeout
3942                       see above
3943
3944                       This variable inherits its value from the parent
3945                       section if nothing is specified here.
3946
3947                       Default value: timeout = 5
3948
3949                   tmpdir
3950                       see above
3951
3952                       This variable inherits its value from the parent
3953                       section if nothing is specified here.
3954
3955                       Default value: tmpdir = /tmp/smokeping-irtt
3956
3957                   dscp
3958                       This variable inherits its value from the parent
3959                       section if nothing is specified here.
3960
3961                   extraargs
3962                       This variable inherits its value from the parent
3963                       section if nothing is specified here.
3964
3965                   fill
3966                       This variable inherits its value from the parent
3967                       section if nothing is specified here.
3968
3969                   hmac
3970                       This variable inherits its value from the parent
3971                       section if nothing is specified here.
3972
3973                   interval
3974                       This variable inherits its value from the parent
3975                       section if nothing is specified here.
3976
3977                       Default value: interval = 1
3978
3979                   ipversion
3980                       This variable inherits its value from the parent
3981                       section if nothing is specified here.
3982
3983                   length
3984                       This variable inherits its value from the parent
3985                       section if nothing is specified here.
3986
3987                   localaddr
3988                       This variable inherits its value from the parent
3989                       section if nothing is specified here.
3990
3991                   metric
3992                       This variable inherits its value from the parent
3993                       section if nothing is specified here.
3994
3995                       Default value: metric = rtt
3996
3997                   pings
3998                       This variable inherits its value from the parent
3999                       section if nothing is specified here.
4000
4001                   readfrom
4002                       This variable inherits its value from the parent
4003                       section if nothing is specified here.
4004
4005                   readfrompollinterval
4006                       This variable inherits its value from the parent
4007                       section if nothing is specified here.
4008
4009                       Default value: readfrompollinterval = 5
4010
4011                   serverfill
4012                       This variable inherits its value from the parent
4013                       section if nothing is specified here.
4014
4015                   sleep
4016                       This variable inherits its value from the parent
4017                       section if nothing is specified here.
4018
4019                   writeto
4020                       This variable inherits its value from the parent
4021                       section if nothing is specified here.
4022
4023               (End of dynamical grammar changes for example instance "IRTT".)
4024
4025           LDAP: (See the separate module documentation for details about each
4026           variable.)
4027               The following new variables are valid:
4028
4029               forks
4030                   see above
4031
4032                   Default value: forks = 5
4033
4034               offset
4035                   see above
4036
4037               passwordfile
4038                   see above
4039
4040               step
4041                   see above
4042
4043               attrs
4044                   (This variable can be overridden target-specifically in the
4045                   Targets section.)
4046
4047               base
4048                   (This variable can be overridden target-specifically in the
4049                   Targets section.)
4050
4051               binddn
4052                   (This variable can be overridden target-specifically in the
4053                   Targets section.)
4054
4055               filter
4056                   (This variable can be overridden target-specifically in the
4057                   Targets section.)
4058
4059                   This variable dynamically modifies the grammar based on its
4060                   value.
4061
4062               mininterval
4063                   (This variable can be overridden target-specifically in the
4064                   Targets section.)
4065
4066                   Default value: mininterval = 1
4067
4068               password
4069                   (This variable can be overridden target-specifically in the
4070                   Targets section.)
4071
4072               pings
4073                   (This variable can be overridden target-specifically in the
4074                   Targets section.)
4075
4076               port
4077                   (This variable can be overridden target-specifically in the
4078                   Targets section.)
4079
4080               scheme
4081                   (This variable can be overridden target-specifically in the
4082                   Targets section.)
4083
4084                   Default value: scheme = ldap
4085
4086               scope
4087                   (This variable can be overridden target-specifically in the
4088                   Targets section.)
4089
4090                   Default value: scope = sub
4091
4092               start_tls
4093                   (This variable can be overridden target-specifically in the
4094                   Targets section.)
4095
4096               timeout
4097                   (This variable can be overridden target-specifically in the
4098                   Targets section.)
4099
4100                   Default value: timeout = 5
4101
4102               verify
4103                   (This variable can be overridden target-specifically in the
4104                   Targets section.)
4105
4106                   Default value: verify = require
4107
4108               version
4109                   (This variable can be overridden target-specifically in the
4110                   Targets section.)
4111
4112               Syntax changes for subsection /[-_0-9a-zA-Z]+/
4113
4114                   The following new variables are valid:
4115
4116                   forks
4117                       see above
4118
4119                       This variable inherits its value from the parent
4120                       section if nothing is specified here.
4121
4122                       Default value: forks = 5
4123
4124                   offset
4125                       see above
4126
4127                       This variable inherits its value from the parent
4128                       section if nothing is specified here.
4129
4130                   passwordfile
4131                       see above
4132
4133                       This variable inherits its value from the parent
4134                       section if nothing is specified here.
4135
4136                   step
4137                       see above
4138
4139                       This variable inherits its value from the parent
4140                       section if nothing is specified here.
4141
4142                   attrs
4143                       This variable inherits its value from the parent
4144                       section if nothing is specified here.
4145
4146                   base
4147                       This variable inherits its value from the parent
4148                       section if nothing is specified here.
4149
4150                   binddn
4151                       This variable inherits its value from the parent
4152                       section if nothing is specified here.
4153
4154                   filter
4155                       This variable inherits its value from the parent
4156                       section if nothing is specified here.
4157
4158                   mininterval
4159                       This variable inherits its value from the parent
4160                       section if nothing is specified here.
4161
4162                       Default value: mininterval = 1
4163
4164                   password
4165                       This variable inherits its value from the parent
4166                       section if nothing is specified here.
4167
4168                   pings
4169                       This variable inherits its value from the parent
4170                       section if nothing is specified here.
4171
4172                   port
4173                       This variable inherits its value from the parent
4174                       section if nothing is specified here.
4175
4176                   scheme
4177                       This variable inherits its value from the parent
4178                       section if nothing is specified here.
4179
4180                       Default value: scheme = ldap
4181
4182                   scope
4183                       This variable inherits its value from the parent
4184                       section if nothing is specified here.
4185
4186                       Default value: scope = sub
4187
4188                   start_tls
4189                       This variable inherits its value from the parent
4190                       section if nothing is specified here.
4191
4192                   timeout
4193                       This variable inherits its value from the parent
4194                       section if nothing is specified here.
4195
4196                       Default value: timeout = 5
4197
4198                   verify
4199                       This variable inherits its value from the parent
4200                       section if nothing is specified here.
4201
4202                       Default value: verify = require
4203
4204                   version
4205                       This variable inherits its value from the parent
4206                       section if nothing is specified here.
4207
4208               (End of dynamical grammar changes for example instance "LDAP".)
4209
4210           NFSping: (See the separate module documentation for details about
4211           each variable.)
4212               The following new variables are valid:
4213
4214               binary (mandatory setting)
4215                   see above
4216
4217               blazemode
4218                   see above
4219
4220               hostinterval
4221                   see above
4222
4223               mininterval
4224                   see above
4225
4226                   Default value: mininterval = 0.01
4227
4228               offset
4229                   see above
4230
4231               pings
4232                   see above
4233
4234               step
4235                   see above
4236
4237               tcp see above
4238
4239               timeout
4240                   see above
4241
4242               Syntax changes for subsection /[-_0-9a-zA-Z]+/
4243
4244                   The following new variables are valid:
4245
4246                   binary (mandatory setting)
4247                       see above
4248
4249                       This variable inherits its value from the parent
4250                       section if nothing is specified here.
4251
4252                   blazemode
4253                       see above
4254
4255                       This variable inherits its value from the parent
4256                       section if nothing is specified here.
4257
4258                   hostinterval
4259                       see above
4260
4261                       This variable inherits its value from the parent
4262                       section if nothing is specified here.
4263
4264                   mininterval
4265                       see above
4266
4267                       This variable inherits its value from the parent
4268                       section if nothing is specified here.
4269
4270                       Default value: mininterval = 0.01
4271
4272                   offset
4273                       see above
4274
4275                       This variable inherits its value from the parent
4276                       section if nothing is specified here.
4277
4278                   pings
4279                       see above
4280
4281                       This variable inherits its value from the parent
4282                       section if nothing is specified here.
4283
4284                   step
4285                       see above
4286
4287                       This variable inherits its value from the parent
4288                       section if nothing is specified here.
4289
4290                   tcp see above
4291
4292                       This variable inherits its value from the parent
4293                       section if nothing is specified here.
4294
4295                   timeout
4296                       see above
4297
4298                       This variable inherits its value from the parent
4299                       section if nothing is specified here.
4300
4301               (End of dynamical grammar changes for example instance
4302               "NFSping".)
4303
4304           OpenSSHEOSPing: (See the separate module documentation for details
4305           about each variable.)
4306               The following new variables are valid:
4307
4308               forks
4309                   see above
4310
4311                   Default value: forks = 5
4312
4313               offset
4314                   see above
4315
4316               packetsize
4317                   see above
4318
4319                   Default value: packetsize = 100
4320
4321               step
4322                   see above
4323
4324               timeout
4325                   see above
4326
4327                   Default value: timeout = 5
4328
4329               eospass
4330                   (This variable can be overridden target-specifically in the
4331                   Targets section.)
4332
4333                   This variable dynamically modifies the grammar based on its
4334                   value.
4335
4336               eosuser
4337                   (This variable can be overridden target-specifically in the
4338                   Targets section.)
4339
4340                   This variable dynamically modifies the grammar based on its
4341                   value.
4342
4343               pings
4344                   (This variable can be overridden target-specifically in the
4345                   Targets section.)
4346
4347               psource
4348                   (This variable can be overridden target-specifically in the
4349                   Targets section.)
4350
4351               source
4352                   (This variable can be overridden target-specifically in the
4353                   Targets section.)
4354
4355                   This variable dynamically modifies the grammar based on its
4356                   value.
4357
4358               unpriv
4359                   (This variable can be overridden target-specifically in the
4360                   Targets section.)
4361
4362               Syntax changes for subsection /[-_0-9a-zA-Z]+/
4363
4364                   The following new variables are valid:
4365
4366                   forks
4367                       see above
4368
4369                       This variable inherits its value from the parent
4370                       section if nothing is specified here.
4371
4372                       Default value: forks = 5
4373
4374                   offset
4375                       see above
4376
4377                       This variable inherits its value from the parent
4378                       section if nothing is specified here.
4379
4380                   packetsize
4381                       see above
4382
4383                       This variable inherits its value from the parent
4384                       section if nothing is specified here.
4385
4386                       Default value: packetsize = 100
4387
4388                   step
4389                       see above
4390
4391                       This variable inherits its value from the parent
4392                       section if nothing is specified here.
4393
4394                   timeout
4395                       see above
4396
4397                       This variable inherits its value from the parent
4398                       section if nothing is specified here.
4399
4400                       Default value: timeout = 5
4401
4402                   eospass
4403                       This variable inherits its value from the parent
4404                       section if nothing is specified here.
4405
4406                   eosuser
4407                       This variable inherits its value from the parent
4408                       section if nothing is specified here.
4409
4410                   pings
4411                       This variable inherits its value from the parent
4412                       section if nothing is specified here.
4413
4414                   psource
4415                       This variable inherits its value from the parent
4416                       section if nothing is specified here.
4417
4418                   source
4419                       This variable inherits its value from the parent
4420                       section if nothing is specified here.
4421
4422                   unpriv
4423                       This variable inherits its value from the parent
4424                       section if nothing is specified here.
4425
4426               (End of dynamical grammar changes for example instance
4427               "OpenSSHEOSPing".)
4428
4429           OpenSSHJunOSPing: (See the separate module documentation for
4430           details about each variable.)
4431               The following new variables are valid:
4432
4433               forks
4434                   see above
4435
4436                   Default value: forks = 5
4437
4438               offset
4439                   see above
4440
4441               packetsize
4442                   see above
4443
4444                   Default value: packetsize = 100
4445
4446               step
4447                   see above
4448
4449               timeout
4450                   see above
4451
4452                   Default value: timeout = 5
4453
4454               tos see above
4455
4456               junospass
4457                   (This variable can be overridden target-specifically in the
4458                   Targets section.)
4459
4460                   This variable dynamically modifies the grammar based on its
4461                   value.
4462
4463               junosuser
4464                   (This variable can be overridden target-specifically in the
4465                   Targets section.)
4466
4467                   This variable dynamically modifies the grammar based on its
4468                   value.
4469
4470               pings
4471                   (This variable can be overridden target-specifically in the
4472                   Targets section.)
4473
4474               psource
4475                   (This variable can be overridden target-specifically in the
4476                   Targets section.)
4477
4478               source
4479                   (This variable can be overridden target-specifically in the
4480                   Targets section.)
4481
4482                   This variable dynamically modifies the grammar based on its
4483                   value.
4484
4485               Syntax changes for subsection /[-_0-9a-zA-Z]+/
4486
4487                   The following new variables are valid:
4488
4489                   forks
4490                       see above
4491
4492                       This variable inherits its value from the parent
4493                       section if nothing is specified here.
4494
4495                       Default value: forks = 5
4496
4497                   offset
4498                       see above
4499
4500                       This variable inherits its value from the parent
4501                       section if nothing is specified here.
4502
4503                   packetsize
4504                       see above
4505
4506                       This variable inherits its value from the parent
4507                       section if nothing is specified here.
4508
4509                       Default value: packetsize = 100
4510
4511                   step
4512                       see above
4513
4514                       This variable inherits its value from the parent
4515                       section if nothing is specified here.
4516
4517                   timeout
4518                       see above
4519
4520                       This variable inherits its value from the parent
4521                       section if nothing is specified here.
4522
4523                       Default value: timeout = 5
4524
4525                   tos see above
4526
4527                       This variable inherits its value from the parent
4528                       section if nothing is specified here.
4529
4530                   junospass
4531                       This variable inherits its value from the parent
4532                       section if nothing is specified here.
4533
4534                   junosuser
4535                       This variable inherits its value from the parent
4536                       section if nothing is specified here.
4537
4538                   pings
4539                       This variable inherits its value from the parent
4540                       section if nothing is specified here.
4541
4542                   psource
4543                       This variable inherits its value from the parent
4544                       section if nothing is specified here.
4545
4546                   source
4547                       This variable inherits its value from the parent
4548                       section if nothing is specified here.
4549
4550               (End of dynamical grammar changes for example instance
4551               "OpenSSHJunOSPing".)
4552
4553           Qstat: (See the separate module documentation for details about
4554           each variable.)
4555               The following new variables are valid:
4556
4557               binary (mandatory setting)
4558                   see above
4559
4560               forks
4561                   see above
4562
4563                   Default value: forks = 5
4564
4565               game
4566                   see above
4567
4568                   Default value: game = q3s
4569
4570               mininterval
4571                   see above
4572
4573                   Default value: mininterval = 0.5
4574
4575               offset
4576                   see above
4577
4578               port
4579                   see above
4580
4581               sourceaddress
4582                   see above
4583
4584               sourceport
4585                   see above
4586
4587               step
4588                   see above
4589
4590               timeout
4591                   see above
4592
4593                   Default value: timeout = 5
4594
4595               pings
4596                   (This variable can be overridden target-specifically in the
4597                   Targets section.)
4598
4599               Syntax changes for subsection /[-_0-9a-zA-Z]+/
4600
4601                   The following new variables are valid:
4602
4603                   binary (mandatory setting)
4604                       see above
4605
4606                       This variable inherits its value from the parent
4607                       section if nothing is specified here.
4608
4609                   forks
4610                       see above
4611
4612                       This variable inherits its value from the parent
4613                       section if nothing is specified here.
4614
4615                       Default value: forks = 5
4616
4617                   game
4618                       see above
4619
4620                       This variable inherits its value from the parent
4621                       section if nothing is specified here.
4622
4623                       Default value: game = q3s
4624
4625                   mininterval
4626                       see above
4627
4628                       This variable inherits its value from the parent
4629                       section if nothing is specified here.
4630
4631                       Default value: mininterval = 0.5
4632
4633                   offset
4634                       see above
4635
4636                       This variable inherits its value from the parent
4637                       section if nothing is specified here.
4638
4639                   port
4640                       see above
4641
4642                       This variable inherits its value from the parent
4643                       section if nothing is specified here.
4644
4645                   sourceaddress
4646                       see above
4647
4648                       This variable inherits its value from the parent
4649                       section if nothing is specified here.
4650
4651                   sourceport
4652                       see above
4653
4654                       This variable inherits its value from the parent
4655                       section if nothing is specified here.
4656
4657                   step
4658                       see above
4659
4660                       This variable inherits its value from the parent
4661                       section if nothing is specified here.
4662
4663                   timeout
4664                       see above
4665
4666                       This variable inherits its value from the parent
4667                       section if nothing is specified here.
4668
4669                       Default value: timeout = 5
4670
4671                   pings
4672                       This variable inherits its value from the parent
4673                       section if nothing is specified here.
4674
4675               (End of dynamical grammar changes for example instance
4676               "Qstat".)
4677
4678           Radius: (See the separate module documentation for details about
4679           each variable.)
4680               The following new variables are valid:
4681
4682               forks
4683                   see above
4684
4685                   Default value: forks = 5
4686
4687               offset
4688                   see above
4689
4690               passwordfile
4691                   see above
4692
4693               secretfile
4694                   see above
4695
4696               step
4697                   see above
4698
4699               allowreject
4700                   (This variable can be overridden target-specifically in the
4701                   Targets section.)
4702
4703               mininterval
4704                   (This variable can be overridden target-specifically in the
4705                   Targets section.)
4706
4707                   Default value: mininterval = 1
4708
4709               nas_ip_address
4710                   (This variable can be overridden target-specifically in the
4711                   Targets section.)
4712
4713               password
4714                   (This variable can be overridden target-specifically in the
4715                   Targets section.)
4716
4717               pings
4718                   (This variable can be overridden target-specifically in the
4719                   Targets section.)
4720
4721               port
4722                   (This variable can be overridden target-specifically in the
4723                   Targets section.)
4724
4725               secret
4726                   (This variable can be overridden target-specifically in the
4727                   Targets section.)
4728
4729               timeout
4730                   (This variable can be overridden target-specifically in the
4731                   Targets section.)
4732
4733                   Default value: timeout = 5
4734
4735               username
4736                   (This variable can be overridden target-specifically in the
4737                   Targets section.)
4738
4739                   This variable dynamically modifies the grammar based on its
4740                   value.
4741
4742               Syntax changes for subsection /[-_0-9a-zA-Z]+/
4743
4744                   The following new variables are valid:
4745
4746                   forks
4747                       see above
4748
4749                       This variable inherits its value from the parent
4750                       section if nothing is specified here.
4751
4752                       Default value: forks = 5
4753
4754                   offset
4755                       see above
4756
4757                       This variable inherits its value from the parent
4758                       section if nothing is specified here.
4759
4760                   passwordfile
4761                       see above
4762
4763                       This variable inherits its value from the parent
4764                       section if nothing is specified here.
4765
4766                   secretfile
4767                       see above
4768
4769                       This variable inherits its value from the parent
4770                       section if nothing is specified here.
4771
4772                   step
4773                       see above
4774
4775                       This variable inherits its value from the parent
4776                       section if nothing is specified here.
4777
4778                   allowreject
4779                       This variable inherits its value from the parent
4780                       section if nothing is specified here.
4781
4782                   mininterval
4783                       This variable inherits its value from the parent
4784                       section if nothing is specified here.
4785
4786                       Default value: mininterval = 1
4787
4788                   nas_ip_address
4789                       This variable inherits its value from the parent
4790                       section if nothing is specified here.
4791
4792                   password
4793                       This variable inherits its value from the parent
4794                       section if nothing is specified here.
4795
4796                   pings
4797                       This variable inherits its value from the parent
4798                       section if nothing is specified here.
4799
4800                   port
4801                       This variable inherits its value from the parent
4802                       section if nothing is specified here.
4803
4804                   secret
4805                       This variable inherits its value from the parent
4806                       section if nothing is specified here.
4807
4808                   timeout
4809                       This variable inherits its value from the parent
4810                       section if nothing is specified here.
4811
4812                       Default value: timeout = 5
4813
4814                   username
4815                       This variable inherits its value from the parent
4816                       section if nothing is specified here.
4817
4818               (End of dynamical grammar changes for example instance
4819               "Radius".)
4820
4821           RemoteFPing: (See the separate module documentation for details
4822           about each variable.)
4823               The following new variables are valid:
4824
4825               binary (mandatory setting)
4826                   see above
4827
4828               blazemode
4829                   see above
4830
4831               hostinterval
4832                   see above
4833
4834               mininterval
4835                   see above
4836
4837                   Default value: mininterval = 0.01
4838
4839               offset
4840                   see above
4841
4842               packetsize
4843                   see above
4844
4845               pings
4846                   see above
4847
4848               protocol
4849                   see above
4850
4851                   Default value: protocol = 4
4852
4853               rbinary (mandatory setting)
4854                   see above
4855
4856               rhost (mandatory setting)
4857                   see above
4858
4859               rport
4860                   see above
4861
4862               ruser
4863                   see above
4864
4865               sourceaddress
4866                   see above
4867
4868               step
4869                   see above
4870
4871               timeout
4872                   see above
4873
4874               tos see above
4875
4876               usestdout
4877                   see above
4878
4879               Syntax changes for subsection /[-_0-9a-zA-Z]+/
4880
4881                   The following new variables are valid:
4882
4883                   binary (mandatory setting)
4884                       see above
4885
4886                       This variable inherits its value from the parent
4887                       section if nothing is specified here.
4888
4889                   blazemode
4890                       see above
4891
4892                       This variable inherits its value from the parent
4893                       section if nothing is specified here.
4894
4895                   hostinterval
4896                       see above
4897
4898                       This variable inherits its value from the parent
4899                       section if nothing is specified here.
4900
4901                   mininterval
4902                       see above
4903
4904                       This variable inherits its value from the parent
4905                       section if nothing is specified here.
4906
4907                       Default value: mininterval = 0.01
4908
4909                   offset
4910                       see above
4911
4912                       This variable inherits its value from the parent
4913                       section if nothing is specified here.
4914
4915                   packetsize
4916                       see above
4917
4918                       This variable inherits its value from the parent
4919                       section if nothing is specified here.
4920
4921                   pings
4922                       see above
4923
4924                       This variable inherits its value from the parent
4925                       section if nothing is specified here.
4926
4927                   protocol
4928                       see above
4929
4930                       This variable inherits its value from the parent
4931                       section if nothing is specified here.
4932
4933                       Default value: protocol = 4
4934
4935                   rbinary (mandatory setting)
4936                       see above
4937
4938                       This variable inherits its value from the parent
4939                       section if nothing is specified here.
4940
4941                   rhost (mandatory setting)
4942                       see above
4943
4944                       This variable inherits its value from the parent
4945                       section if nothing is specified here.
4946
4947                   rport
4948                       see above
4949
4950                       This variable inherits its value from the parent
4951                       section if nothing is specified here.
4952
4953                   ruser
4954                       see above
4955
4956                       This variable inherits its value from the parent
4957                       section if nothing is specified here.
4958
4959                   sourceaddress
4960                       see above
4961
4962                       This variable inherits its value from the parent
4963                       section if nothing is specified here.
4964
4965                   step
4966                       see above
4967
4968                       This variable inherits its value from the parent
4969                       section if nothing is specified here.
4970
4971                   timeout
4972                       see above
4973
4974                       This variable inherits its value from the parent
4975                       section if nothing is specified here.
4976
4977                   tos see above
4978
4979                       This variable inherits its value from the parent
4980                       section if nothing is specified here.
4981
4982                   usestdout
4983                       see above
4984
4985                       This variable inherits its value from the parent
4986                       section if nothing is specified here.
4987
4988               (End of dynamical grammar changes for example instance
4989               "RemoteFPing".)
4990
4991           SSH: (See the separate module documentation for details about each
4992           variable.)
4993               The following new variables are valid:
4994
4995               binary (mandatory setting)
4996                   see above
4997
4998               forks
4999                   see above
5000
5001                   Default value: forks = 5
5002
5003               offset
5004                   see above
5005
5006               step
5007                   see above
5008
5009               timeout
5010                   see above
5011
5012                   Default value: timeout = 5
5013
5014               keytype
5015                   (This variable can be overridden target-specifically in the
5016                   Targets section.)
5017
5018                   Default value: keytype = rsa
5019
5020               pings
5021                   (This variable can be overridden target-specifically in the
5022                   Targets section.)
5023
5024               port
5025                   (This variable can be overridden target-specifically in the
5026                   Targets section.)
5027
5028                   Default value: port = 22
5029
5030               Syntax changes for subsection /[-_0-9a-zA-Z]+/
5031
5032                   The following new variables are valid:
5033
5034                   binary (mandatory setting)
5035                       see above
5036
5037                       This variable inherits its value from the parent
5038                       section if nothing is specified here.
5039
5040                   forks
5041                       see above
5042
5043                       This variable inherits its value from the parent
5044                       section if nothing is specified here.
5045
5046                       Default value: forks = 5
5047
5048                   offset
5049                       see above
5050
5051                       This variable inherits its value from the parent
5052                       section if nothing is specified here.
5053
5054                   step
5055                       see above
5056
5057                       This variable inherits its value from the parent
5058                       section if nothing is specified here.
5059
5060                   timeout
5061                       see above
5062
5063                       This variable inherits its value from the parent
5064                       section if nothing is specified here.
5065
5066                       Default value: timeout = 5
5067
5068                   keytype
5069                       This variable inherits its value from the parent
5070                       section if nothing is specified here.
5071
5072                       Default value: keytype = rsa
5073
5074                   pings
5075                       This variable inherits its value from the parent
5076                       section if nothing is specified here.
5077
5078                   port
5079                       This variable inherits its value from the parent
5080                       section if nothing is specified here.
5081
5082                       Default value: port = 22
5083
5084               (End of dynamical grammar changes for example instance "SSH".)
5085
5086           SendEmail: (See the separate module documentation for details about
5087           each variable.)
5088               The following new variables are valid:
5089
5090               bodysize
5091                   see above
5092
5093               forks
5094                   see above
5095
5096                   Default value: forks = 5
5097
5098               from (mandatory setting)
5099                   see above
5100
5101               offset
5102                   see above
5103
5104               step
5105                   see above
5106
5107               subject
5108                   see above
5109
5110                   Default value: subject = Test
5111
5112               timeout
5113                   see above
5114
5115                   Default value: timeout = 5
5116
5117               to (mandatory setting)
5118                   see above
5119
5120               pings
5121                   (This variable can be overridden target-specifically in the
5122                   Targets section.)
5123
5124               port
5125                   (This variable can be overridden target-specifically in the
5126                   Targets section.)
5127
5128                   Default value: port = 25
5129
5130               Syntax changes for subsection /[-_0-9a-zA-Z]+/
5131
5132                   The following new variables are valid:
5133
5134                   bodysize
5135                       see above
5136
5137                       This variable inherits its value from the parent
5138                       section if nothing is specified here.
5139
5140                   forks
5141                       see above
5142
5143                       This variable inherits its value from the parent
5144                       section if nothing is specified here.
5145
5146                       Default value: forks = 5
5147
5148                   from (mandatory setting)
5149                       see above
5150
5151                       This variable inherits its value from the parent
5152                       section if nothing is specified here.
5153
5154                   offset
5155                       see above
5156
5157                       This variable inherits its value from the parent
5158                       section if nothing is specified here.
5159
5160                   step
5161                       see above
5162
5163                       This variable inherits its value from the parent
5164                       section if nothing is specified here.
5165
5166                   subject
5167                       see above
5168
5169                       This variable inherits its value from the parent
5170                       section if nothing is specified here.
5171
5172                       Default value: subject = Test
5173
5174                   timeout
5175                       see above
5176
5177                       This variable inherits its value from the parent
5178                       section if nothing is specified here.
5179
5180                       Default value: timeout = 5
5181
5182                   to (mandatory setting)
5183                       see above
5184
5185                       This variable inherits its value from the parent
5186                       section if nothing is specified here.
5187
5188                   pings
5189                       This variable inherits its value from the parent
5190                       section if nothing is specified here.
5191
5192                   port
5193                       This variable inherits its value from the parent
5194                       section if nothing is specified here.
5195
5196                       Default value: port = 25
5197
5198               (End of dynamical grammar changes for example instance
5199               "SendEmail".)
5200
5201           SipSak: (See the separate module documentation for details about
5202           each variable.)
5203               The following new variables are valid:
5204
5205               binary
5206                   see above
5207
5208                   Default value: binary = /usr/bin/sipsak
5209
5210               forks
5211                   see above
5212
5213                   Default value: forks = 5
5214
5215               offset
5216                   see above
5217
5218               step
5219                   see above
5220
5221               timeout
5222                   see above
5223
5224                   Default value: timeout = 5
5225
5226               keep_second
5227                   (This variable can be overridden target-specifically in the
5228                   Targets section.)
5229
5230               params
5231                   (This variable can be overridden target-specifically in the
5232                   Targets section.)
5233
5234               pings
5235                   (This variable can be overridden target-specifically in the
5236                   Targets section.)
5237
5238               port
5239                   (This variable can be overridden target-specifically in the
5240                   Targets section.)
5241
5242               sipsak_timeout
5243                   (This variable can be overridden target-specifically in the
5244                   Targets section.)
5245
5246                   Default value: sipsak_timeout = 2
5247
5248               user
5249                   (This variable can be overridden target-specifically in the
5250                   Targets section.)
5251
5252               Syntax changes for subsection /[-_0-9a-zA-Z]+/
5253
5254                   The following new variables are valid:
5255
5256                   binary
5257                       see above
5258
5259                       This variable inherits its value from the parent
5260                       section if nothing is specified here.
5261
5262                       Default value: binary = /usr/bin/sipsak
5263
5264                   forks
5265                       see above
5266
5267                       This variable inherits its value from the parent
5268                       section if nothing is specified here.
5269
5270                       Default value: forks = 5
5271
5272                   offset
5273                       see above
5274
5275                       This variable inherits its value from the parent
5276                       section if nothing is specified here.
5277
5278                   step
5279                       see above
5280
5281                       This variable inherits its value from the parent
5282                       section if nothing is specified here.
5283
5284                   timeout
5285                       see above
5286
5287                       This variable inherits its value from the parent
5288                       section if nothing is specified here.
5289
5290                       Default value: timeout = 5
5291
5292                   keep_second
5293                       This variable inherits its value from the parent
5294                       section if nothing is specified here.
5295
5296                   params
5297                       This variable inherits its value from the parent
5298                       section if nothing is specified here.
5299
5300                   pings
5301                       This variable inherits its value from the parent
5302                       section if nothing is specified here.
5303
5304                   port
5305                       This variable inherits its value from the parent
5306                       section if nothing is specified here.
5307
5308                   sipsak_timeout
5309                       This variable inherits its value from the parent
5310                       section if nothing is specified here.
5311
5312                       Default value: sipsak_timeout = 2
5313
5314                   user
5315                       This variable inherits its value from the parent
5316                       section if nothing is specified here.
5317
5318               (End of dynamical grammar changes for example instance
5319               "SipSak".)
5320
5321           TCPPing: (See the separate module documentation for details about
5322           each variable.)
5323               The following new variables are valid:
5324
5325               binary (mandatory setting)
5326                   see above
5327
5328               forks
5329                   see above
5330
5331                   Default value: forks = 5
5332
5333               offset
5334                   see above
5335
5336               step
5337                   see above
5338
5339               timeout
5340                   see above
5341
5342                   Default value: timeout = 5
5343
5344               pings
5345                   (This variable can be overridden target-specifically in the
5346                   Targets section.)
5347
5348               port
5349                   (This variable can be overridden target-specifically in the
5350                   Targets section.)
5351
5352               Syntax changes for subsection /[-_0-9a-zA-Z]+/
5353
5354                   The following new variables are valid:
5355
5356                   binary (mandatory setting)
5357                       see above
5358
5359                       This variable inherits its value from the parent
5360                       section if nothing is specified here.
5361
5362                   forks
5363                       see above
5364
5365                       This variable inherits its value from the parent
5366                       section if nothing is specified here.
5367
5368                       Default value: forks = 5
5369
5370                   offset
5371                       see above
5372
5373                       This variable inherits its value from the parent
5374                       section if nothing is specified here.
5375
5376                   step
5377                       see above
5378
5379                       This variable inherits its value from the parent
5380                       section if nothing is specified here.
5381
5382                   timeout
5383                       see above
5384
5385                       This variable inherits its value from the parent
5386                       section if nothing is specified here.
5387
5388                       Default value: timeout = 5
5389
5390                   pings
5391                       This variable inherits its value from the parent
5392                       section if nothing is specified here.
5393
5394                   port
5395                       This variable inherits its value from the parent
5396                       section if nothing is specified here.
5397
5398               (End of dynamical grammar changes for example instance
5399               "TCPPing".)
5400
5401           TacacsPlus: (See the separate module documentation for details
5402           about each variable.)
5403               The following new variables are valid:
5404
5405               forks
5406                   see above
5407
5408                   Default value: forks = 5
5409
5410               offset
5411                   see above
5412
5413               passwordfile
5414                   see above
5415
5416               secretfile
5417                   see above
5418
5419               step
5420                   see above
5421
5422               authtype
5423                   (This variable can be overridden target-specifically in the
5424                   Targets section.)
5425
5426                   Default value: authtype = ASCII
5427
5428               mininterval
5429                   (This variable can be overridden target-specifically in the
5430                   Targets section.)
5431
5432                   Default value: mininterval = 1
5433
5434               password
5435                   (This variable can be overridden target-specifically in the
5436                   Targets section.)
5437
5438               pings
5439                   (This variable can be overridden target-specifically in the
5440                   Targets section.)
5441
5442               port
5443                   (This variable can be overridden target-specifically in the
5444                   Targets section.)
5445
5446                   Default value: port = 49
5447
5448               secret
5449                   (This variable can be overridden target-specifically in the
5450                   Targets section.)
5451
5452               timeout
5453                   (This variable can be overridden target-specifically in the
5454                   Targets section.)
5455
5456                   Default value: timeout = 5
5457
5458               username
5459                   (This variable can be overridden target-specifically in the
5460                   Targets section.)
5461
5462                   This variable dynamically modifies the grammar based on its
5463                   value.
5464
5465               Syntax changes for subsection /[-_0-9a-zA-Z]+/
5466
5467                   The following new variables are valid:
5468
5469                   forks
5470                       see above
5471
5472                       This variable inherits its value from the parent
5473                       section if nothing is specified here.
5474
5475                       Default value: forks = 5
5476
5477                   offset
5478                       see above
5479
5480                       This variable inherits its value from the parent
5481                       section if nothing is specified here.
5482
5483                   passwordfile
5484                       see above
5485
5486                       This variable inherits its value from the parent
5487                       section if nothing is specified here.
5488
5489                   secretfile
5490                       see above
5491
5492                       This variable inherits its value from the parent
5493                       section if nothing is specified here.
5494
5495                   step
5496                       see above
5497
5498                       This variable inherits its value from the parent
5499                       section if nothing is specified here.
5500
5501                   authtype
5502                       This variable inherits its value from the parent
5503                       section if nothing is specified here.
5504
5505                       Default value: authtype = ASCII
5506
5507                   mininterval
5508                       This variable inherits its value from the parent
5509                       section if nothing is specified here.
5510
5511                       Default value: mininterval = 1
5512
5513                   password
5514                       This variable inherits its value from the parent
5515                       section if nothing is specified here.
5516
5517                   pings
5518                       This variable inherits its value from the parent
5519                       section if nothing is specified here.
5520
5521                   port
5522                       This variable inherits its value from the parent
5523                       section if nothing is specified here.
5524
5525                       Default value: port = 49
5526
5527                   secret
5528                       This variable inherits its value from the parent
5529                       section if nothing is specified here.
5530
5531                   timeout
5532                       This variable inherits its value from the parent
5533                       section if nothing is specified here.
5534
5535                       Default value: timeout = 5
5536
5537                   username
5538                       This variable inherits its value from the parent
5539                       section if nothing is specified here.
5540
5541               (End of dynamical grammar changes for example instance
5542               "TacacsPlus".)
5543
5544           TelnetIOSPing: (See the separate module documentation for details
5545           about each variable.)
5546               The following new variables are valid:
5547
5548               forks
5549                   see above
5550
5551                   Default value: forks = 5
5552
5553               offset
5554                   see above
5555
5556               packetsize
5557                   see above
5558
5559                   Default value: packetsize = 56
5560
5561               step
5562                   see above
5563
5564               timeout
5565                   see above
5566
5567                   Default value: timeout = 5
5568
5569               iospass
5570                   (This variable can be overridden target-specifically in the
5571                   Targets section.)
5572
5573                   This variable dynamically modifies the grammar based on its
5574                   value.
5575
5576               iosuser
5577                   (This variable can be overridden target-specifically in the
5578                   Targets section.)
5579
5580                   This variable dynamically modifies the grammar based on its
5581                   value.
5582
5583               pings
5584                   (This variable can be overridden target-specifically in the
5585                   Targets section.)
5586
5587               psource
5588                   (This variable can be overridden target-specifically in the
5589                   Targets section.)
5590
5591               source
5592                   (This variable can be overridden target-specifically in the
5593                   Targets section.)
5594
5595                   This variable dynamically modifies the grammar based on its
5596                   value.
5597
5598               vrf (This variable can be overridden target-specifically in the
5599                   Targets section.)
5600
5601               Syntax changes for subsection /[-_0-9a-zA-Z]+/
5602
5603                   The following new variables are valid:
5604
5605                   forks
5606                       see above
5607
5608                       This variable inherits its value from the parent
5609                       section if nothing is specified here.
5610
5611                       Default value: forks = 5
5612
5613                   offset
5614                       see above
5615
5616                       This variable inherits its value from the parent
5617                       section if nothing is specified here.
5618
5619                   packetsize
5620                       see above
5621
5622                       This variable inherits its value from the parent
5623                       section if nothing is specified here.
5624
5625                       Default value: packetsize = 56
5626
5627                   step
5628                       see above
5629
5630                       This variable inherits its value from the parent
5631                       section if nothing is specified here.
5632
5633                   timeout
5634                       see above
5635
5636                       This variable inherits its value from the parent
5637                       section if nothing is specified here.
5638
5639                       Default value: timeout = 5
5640
5641                   iospass
5642                       This variable inherits its value from the parent
5643                       section if nothing is specified here.
5644
5645                   iosuser
5646                       This variable inherits its value from the parent
5647                       section if nothing is specified here.
5648
5649                   pings
5650                       This variable inherits its value from the parent
5651                       section if nothing is specified here.
5652
5653                   psource
5654                       This variable inherits its value from the parent
5655                       section if nothing is specified here.
5656
5657                   source
5658                       This variable inherits its value from the parent
5659                       section if nothing is specified here.
5660
5661                   vrf This variable inherits its value from the parent
5662                       section if nothing is specified here.
5663
5664               (End of dynamical grammar changes for example instance
5665               "TelnetIOSPing".)
5666
5667           TelnetJunOSPing: (See the separate module documentation for details
5668           about each variable.)
5669               The following new variables are valid:
5670
5671               forks
5672                   see above
5673
5674                   Default value: forks = 5
5675
5676               offset
5677                   see above
5678
5679               packetsize
5680                   see above
5681
5682                   Default value: packetsize = 100
5683
5684               step
5685                   see above
5686
5687               timeout
5688                   see above
5689
5690                   Default value: timeout = 5
5691
5692               junospass
5693                   (This variable can be overridden target-specifically in the
5694                   Targets section.)
5695
5696                   This variable dynamically modifies the grammar based on its
5697                   value.
5698
5699               junosuser
5700                   (This variable can be overridden target-specifically in the
5701                   Targets section.)
5702
5703                   This variable dynamically modifies the grammar based on its
5704                   value.
5705
5706               pings
5707                   (This variable can be overridden target-specifically in the
5708                   Targets section.)
5709
5710               psource
5711                   (This variable can be overridden target-specifically in the
5712                   Targets section.)
5713
5714               source
5715                   (This variable can be overridden target-specifically in the
5716                   Targets section.)
5717
5718                   This variable dynamically modifies the grammar based on its
5719                   value.
5720
5721               Syntax changes for subsection /[-_0-9a-zA-Z]+/
5722
5723                   The following new variables are valid:
5724
5725                   forks
5726                       see above
5727
5728                       This variable inherits its value from the parent
5729                       section if nothing is specified here.
5730
5731                       Default value: forks = 5
5732
5733                   offset
5734                       see above
5735
5736                       This variable inherits its value from the parent
5737                       section if nothing is specified here.
5738
5739                   packetsize
5740                       see above
5741
5742                       This variable inherits its value from the parent
5743                       section if nothing is specified here.
5744
5745                       Default value: packetsize = 100
5746
5747                   step
5748                       see above
5749
5750                       This variable inherits its value from the parent
5751                       section if nothing is specified here.
5752
5753                   timeout
5754                       see above
5755
5756                       This variable inherits its value from the parent
5757                       section if nothing is specified here.
5758
5759                       Default value: timeout = 5
5760
5761                   junospass
5762                       This variable inherits its value from the parent
5763                       section if nothing is specified here.
5764
5765                   junosuser
5766                       This variable inherits its value from the parent
5767                       section if nothing is specified here.
5768
5769                   pings
5770                       This variable inherits its value from the parent
5771                       section if nothing is specified here.
5772
5773                   psource
5774                       This variable inherits its value from the parent
5775                       section if nothing is specified here.
5776
5777                   source
5778                       This variable inherits its value from the parent
5779                       section if nothing is specified here.
5780
5781               (End of dynamical grammar changes for example instance
5782               "TelnetJunOSPing".)
5783
5784           TraceroutePing: (See the separate module documentation for details
5785           about each variable.)
5786               The following new variables are valid:
5787
5788               binary (mandatory setting)
5789                   see above
5790
5791               binaryv6
5792                   see above
5793
5794               forks
5795                   see above
5796
5797                   Default value: forks = 5
5798
5799               offset
5800                   see above
5801
5802               step
5803                   see above
5804
5805               timeout
5806                   see above
5807
5808                   Default value: timeout = 5
5809
5810               desthost
5811                   (This variable can be overridden target-specifically in the
5812                   Targets section.)
5813
5814                   This variable dynamically modifies the grammar based on its
5815                   value.
5816
5817               host
5818                   (This variable can be overridden target-specifically in the
5819                   Targets section.)
5820
5821                   This variable dynamically modifies the grammar based on its
5822                   value.
5823
5824               maxttl
5825                   (This variable can be overridden target-specifically in the
5826                   Targets section.)
5827
5828               minttl
5829                   (This variable can be overridden target-specifically in the
5830                   Targets section.)
5831
5832               pings
5833                   (This variable can be overridden target-specifically in the
5834                   Targets section.)
5835
5836               wait
5837                   (This variable can be overridden target-specifically in the
5838                   Targets section.)
5839
5840               Syntax changes for subsection /[-_0-9a-zA-Z]+/
5841
5842                   The following new variables are valid:
5843
5844                   binary (mandatory setting)
5845                       see above
5846
5847                       This variable inherits its value from the parent
5848                       section if nothing is specified here.
5849
5850                   binaryv6
5851                       see above
5852
5853                       This variable inherits its value from the parent
5854                       section if nothing is specified here.
5855
5856                   forks
5857                       see above
5858
5859                       This variable inherits its value from the parent
5860                       section if nothing is specified here.
5861
5862                       Default value: forks = 5
5863
5864                   offset
5865                       see above
5866
5867                       This variable inherits its value from the parent
5868                       section if nothing is specified here.
5869
5870                   step
5871                       see above
5872
5873                       This variable inherits its value from the parent
5874                       section if nothing is specified here.
5875
5876                   timeout
5877                       see above
5878
5879                       This variable inherits its value from the parent
5880                       section if nothing is specified here.
5881
5882                       Default value: timeout = 5
5883
5884                   desthost
5885                       This variable inherits its value from the parent
5886                       section if nothing is specified here.
5887
5888                   host
5889                       This variable inherits its value from the parent
5890                       section if nothing is specified here.
5891
5892                   maxttl
5893                       This variable inherits its value from the parent
5894                       section if nothing is specified here.
5895
5896                   minttl
5897                       This variable inherits its value from the parent
5898                       section if nothing is specified here.
5899
5900                   pings
5901                       This variable inherits its value from the parent
5902                       section if nothing is specified here.
5903
5904                   wait
5905                       This variable inherits its value from the parent
5906                       section if nothing is specified here.
5907
5908               (End of dynamical grammar changes for example instance
5909               "TraceroutePing".)
5910
5911           WebProxyFilter: (See the separate module documentation for details
5912           about each variable.)
5913               The following new variables are valid:
5914
5915               forks
5916                   see above
5917
5918                   Default value: forks = 5
5919
5920               maxsize
5921                   see above
5922
5923                   Default value: maxsize = 2000
5924
5925               min_interval
5926                   see above
5927
5928                   Default value: min_interval = 1
5929
5930               offset
5931                   see above
5932
5933               step
5934                   see above
5935
5936               useragent
5937                   see above
5938
5939                   Default value: useragent = SmokePing/2.x (WebProxyFilter
5940                   Probe)
5941
5942               deny_re (mandatory setting)
5943                   (This variable can be overridden target-specifically in the
5944                   Targets section.)
5945
5946               more_hosts
5947                   (This variable can be overridden target-specifically in the
5948                   Targets section.)
5949
5950               pings
5951                   (This variable can be overridden target-specifically in the
5952                   Targets section.)
5953
5954               timeout
5955                   (This variable can be overridden target-specifically in the
5956                   Targets section.)
5957
5958                   Default value: timeout = 2
5959
5960               Syntax changes for subsection /[-_0-9a-zA-Z]+/
5961
5962                   The following new variables are valid:
5963
5964                   forks
5965                       see above
5966
5967                       This variable inherits its value from the parent
5968                       section if nothing is specified here.
5969
5970                       Default value: forks = 5
5971
5972                   maxsize
5973                       see above
5974
5975                       This variable inherits its value from the parent
5976                       section if nothing is specified here.
5977
5978                       Default value: maxsize = 2000
5979
5980                   min_interval
5981                       see above
5982
5983                       This variable inherits its value from the parent
5984                       section if nothing is specified here.
5985
5986                       Default value: min_interval = 1
5987
5988                   offset
5989                       see above
5990
5991                       This variable inherits its value from the parent
5992                       section if nothing is specified here.
5993
5994                   step
5995                       see above
5996
5997                       This variable inherits its value from the parent
5998                       section if nothing is specified here.
5999
6000                   useragent
6001                       see above
6002
6003                       This variable inherits its value from the parent
6004                       section if nothing is specified here.
6005
6006                       Default value: useragent = SmokePing/2.x
6007                       (WebProxyFilter Probe)
6008
6009                   deny_re (mandatory setting)
6010                       This variable inherits its value from the parent
6011                       section if nothing is specified here.
6012
6013                   more_hosts
6014                       This variable inherits its value from the parent
6015                       section if nothing is specified here.
6016
6017                   pings
6018                       This variable inherits its value from the parent
6019                       section if nothing is specified here.
6020
6021                   timeout
6022                       This variable inherits its value from the parent
6023                       section if nothing is specified here.
6024
6025                       Default value: timeout = 2
6026
6027               (End of dynamical grammar changes for example instance
6028               "WebProxyFilter".)
6029
6030           (End of dynamical grammar changes for example instances of section
6031           "/[-_0-9a-zA-Z]+/".)
6032
6033   *** Targets *** (mandatory section)
6034       The Target Section defines the actual work of SmokePing. It contains a
6035       hierarchical list of hosts which mark the endpoints of the network
6036       connections the system should monitor. Each section can contain one
6037       host as well as other sections. By adding slaves you can measure the
6038       connection to an endpoint from multiple locations.
6039
6040       The following variables can be set in this section:
6041
6042       probe (mandatory setting)
6043           The name of the probe module to be used for this host. The value of
6044           this variable gets propagated
6045
6046           This variable dynamically modifies the grammar based on its value.
6047
6048       menu (mandatory setting)
6049           Menu entry for this section. If not set this will be set to the
6050           hostname.
6051
6052       title (mandatory setting)
6053           Title of the page when it is displayed. This will be set to the
6054           hostname if left empty.
6055
6056       remark
6057           An optional remark on the current section. It gets displayed on the
6058           webpage.
6059
6060       alerts
6061           A comma separated list of alerts to check for this target. The
6062           alerts have to be setup in the Alerts section. Alerts are inherited
6063           by child nodes. Use an empty alerts definition to remove inherited
6064           alerts from the current target and its children.
6065
6066       slaves
6067           List of slave servers. It gets inherited by all targets.
6068
6069       menuextra
6070           HTML String to be added to the end of each menu entry. The "{HOST}"
6071           entry will be replaced by the host property of the relevant
6072           section. The "{CLASS}" entry will be replaced by the same class as
6073           the other tags in the manu line.
6074
6075       parents
6076
6077       The following sections are valid on level 1:
6078
6079       +/[-_0-9a-zA-Z]+/
6080           Each target section can contain information about a host to monitor
6081           as well as further target sections. Most variables have already
6082           been described above. The expression above defines legal names for
6083           target sections.
6084
6085           This section is recursive: it can contain subsection(s) with the
6086           same syntax.
6087
6088           The following variables can be set in this section:
6089
6090           probe
6091               This variable inherits its value from the parent section if
6092               nothing is specified here.
6093
6094               This variable dynamically modifies the grammar based on its
6095               value.
6096
6097           menu
6098           title
6099           alerts
6100               Comma separated list of alert names
6101
6102               This variable inherits its value from the parent section if
6103               nothing is specified here.
6104
6105           note
6106               Some information about this entry which does NOT get displayed
6107               on the web.
6108
6109           email
6110               This is the contact address for the owner of the current host.
6111               In connection with the DYNAMIC hosts, the address will be used
6112               for sending the belowmentioned script.
6113
6114           host
6115               There are three types of "hosts" in smokeping.
6116
6117               1.  The 'hostname' is a name of a host you want to target from
6118                   smokeping
6119
6120               2.  The string DYNAMIC. Is for machines that have a dynamic IP
6121                   address. These boxes are required to regularly contact the
6122                   SmokePing server to confirm their IP address.
6123                    When starting SmokePing with the commandline argument
6124                   --email it will add a secret password to each of the
6125                   DYNAMIC host lines and send a script to the owner of each
6126                   host. This script must be started periodically (cron) on
6127                   the host in question to let smokeping know where the host
6128                   is curently located. If the target machine supports SNMP
6129                   SmokePing will also query the hosts sysContact, sysName and
6130                   sysLocation properties to make sure it is still the same
6131                   host.
6132
6133               3.  A space separated list of 'target-path' entries (multihost
6134                   target). All targets mentioned in this list will be
6135                   displayed in one graph. Note that the graph will look
6136                   different from the normal smokeping graphs. The syntax for
6137                   multihost targets is as follows:
6138
6139                    host = /world/town/host1 /world/town2/host33 /world/town2/host1~slave
6140
6141           remark
6142           rawlog
6143               Log the raw data, gathered for this target, in tab separated
6144               format, to a file with the same basename as the corresponding
6145               RRD file. Use posix strftime to format the timestamp to be put
6146               into the file name. The filename is built like this:
6147
6148                basename.strftime.csv
6149
6150               Example:
6151
6152                rawlog=%Y-%m-%d
6153
6154               this would create a new logfile every day with a name like
6155               this:
6156
6157                targethost.2004-05-03.csv
6158
6159           alertee
6160               If you want to have alerts for this target and all targets
6161               below it go to a particular address on top of the address
6162               already specified in the alert, you can add it here. This can
6163               be a comma separated list of items.
6164
6165               This variable inherits its value from the parent section if
6166               nothing is specified here.
6167
6168           slaves
6169               The slave names must match the slaves you have setup in the
6170               slaves section.
6171
6172               This variable inherits its value from the parent section if
6173               nothing is specified here.
6174
6175           menuextra
6176               HTML String to be added to the end of each menu entry. The
6177               following tags will be replaced:
6178
6179                 {HOST}     -> #$hostname
6180                 {HOSTNAME} -> $hostname
6181                 {CLASS}    -> same class as the other tags in the menu line
6182                 {HASH}     -> #
6183
6184               This variable inherits its value from the parent section if
6185               nothing is specified here.
6186
6187           parents
6188               After setting up a hierarchy in the Presentation section of the
6189               configuration file you can use this property to assign an entry
6190               to alternate hierarchies. The format for parent entries is.
6191
6192                hierarchyA:/Node1/Node2 hierarchyB:/Node3
6193
6194               The entries from all parent properties together will build a
6195               new tree for each hierarchy. With this method it is possible to
6196               make a single target show up multiple times in a tree. If you
6197               think this is a good thing, go ahead, nothing is stopping you.
6198               Since you do not only define the parent but the full path of
6199               the parent node, circular dependencies are not possible.
6200
6201           hide
6202               Set the hide property to 'yes' to hide this host from the
6203               navigation menu and from search results. Note that if you set
6204               the hide property on a non leaf entry all subordinate entries
6205               will also disapear in the menu structure.  If you know a direct
6206               link to a page it is still accessible. Pages which are hidden
6207               from the menu due to a parent being hidden will still show up
6208               in search results and in alternate hierarchies where they are
6209               below a non hidden parent.
6210
6211               Default value: hide = no
6212
6213           nomasterpoll
6214               Use this in a master/slave setup where the master must not poll
6215               a particular target. The master will now skip this entry in its
6216               polling cycle.  Note that if you set the hide property on a non
6217               leaf entry all subordinate entries will also disapear in the
6218               menu structure. You can still access them via direct link or
6219               via an alternate hierarchy.
6220
6221               If you have no master/slave setup this will have a similar
6222               effect to the hide property, except that the menu entry will
6223               still show up, but will not contain any graphs.
6224
6225               This variable inherits its value from the parent section if
6226               nothing is specified here.
6227
6228               Default value: nomasterpoll = no
6229
6230           The following sections are valid on level 2:
6231
6232           ++/[-_0-9a-zA-Z]+/
6233               This section is recursive: it can contain subsection(s) with
6234               the same syntax.
6235
6236       Dynamical grammar changes for example values of variable "probe":
6237
6238       AnotherCurl: (See the separate module documentation for details about
6239       each variable.)
6240           The following new variables are valid:
6241
6242           agent
6243               see above
6244
6245           extraargs
6246               see above
6247
6248           extrare
6249               see above
6250
6251           follow_redirects
6252               see above
6253
6254           include_redirects
6255               see above
6256
6257           insecure_ssl
6258               see above
6259
6260           interface
6261               see above
6262
6263           pings
6264               see above
6265
6266           ssl2
6267               see above
6268
6269           timeout
6270               see above
6271
6272           urlformat
6273               see above
6274
6275           write_out
6276               see above
6277
6278           Syntax changes for subsection /[-_0-9a-zA-Z]+/
6279
6280               The following new variables are valid:
6281
6282               agent
6283                   see above
6284
6285                   This variable inherits its value from the parent section if
6286                   nothing is specified here.
6287
6288               extraargs
6289                   see above
6290
6291                   This variable inherits its value from the parent section if
6292                   nothing is specified here.
6293
6294               extrare
6295                   see above
6296
6297                   This variable inherits its value from the parent section if
6298                   nothing is specified here.
6299
6300               follow_redirects
6301                   see above
6302
6303                   This variable inherits its value from the parent section if
6304                   nothing is specified here.
6305
6306               include_redirects
6307                   see above
6308
6309                   This variable inherits its value from the parent section if
6310                   nothing is specified here.
6311
6312               insecure_ssl
6313                   see above
6314
6315                   This variable inherits its value from the parent section if
6316                   nothing is specified here.
6317
6318               interface
6319                   see above
6320
6321                   This variable inherits its value from the parent section if
6322                   nothing is specified here.
6323
6324               pings
6325                   see above
6326
6327                   This variable inherits its value from the parent section if
6328                   nothing is specified here.
6329
6330               ssl2
6331                   see above
6332
6333                   This variable inherits its value from the parent section if
6334                   nothing is specified here.
6335
6336               timeout
6337                   see above
6338
6339                   This variable inherits its value from the parent section if
6340                   nothing is specified here.
6341
6342               urlformat
6343                   see above
6344
6345                   This variable inherits its value from the parent section if
6346                   nothing is specified here.
6347
6348               write_out
6349                   see above
6350
6351                   This variable inherits its value from the parent section if
6352                   nothing is specified here.
6353
6354           (End of dynamical grammar changes for variable "probe" example
6355           value "AnotherCurl".)
6356
6357       AnotherDNS: (See the separate module documentation for details about
6358       each variable.)
6359           The following new variables are valid:
6360
6361           authoritative
6362               see above
6363
6364           ipversion
6365               see above
6366
6367           lookup
6368               see above
6369
6370           mininterval
6371               see above
6372
6373           pings
6374               see above
6375
6376           port
6377               see above
6378
6379           protocol
6380               see above
6381
6382           recordtype
6383               see above
6384
6385           require_answers
6386               see above
6387
6388           require_noerror
6389               see above
6390
6391           timeout
6392               see above
6393
6394           Syntax changes for subsection /[-_0-9a-zA-Z]+/
6395
6396               The following new variables are valid:
6397
6398               authoritative
6399                   see above
6400
6401                   This variable inherits its value from the parent section if
6402                   nothing is specified here.
6403
6404               ipversion
6405                   see above
6406
6407                   This variable inherits its value from the parent section if
6408                   nothing is specified here.
6409
6410               lookup
6411                   see above
6412
6413                   This variable inherits its value from the parent section if
6414                   nothing is specified here.
6415
6416               mininterval
6417                   see above
6418
6419                   This variable inherits its value from the parent section if
6420                   nothing is specified here.
6421
6422               pings
6423                   see above
6424
6425                   This variable inherits its value from the parent section if
6426                   nothing is specified here.
6427
6428               port
6429                   see above
6430
6431                   This variable inherits its value from the parent section if
6432                   nothing is specified here.
6433
6434               protocol
6435                   see above
6436
6437                   This variable inherits its value from the parent section if
6438                   nothing is specified here.
6439
6440               recordtype
6441                   see above
6442
6443                   This variable inherits its value from the parent section if
6444                   nothing is specified here.
6445
6446               require_answers
6447                   see above
6448
6449                   This variable inherits its value from the parent section if
6450                   nothing is specified here.
6451
6452               require_noerror
6453                   see above
6454
6455                   This variable inherits its value from the parent section if
6456                   nothing is specified here.
6457
6458               timeout
6459                   see above
6460
6461                   This variable inherits its value from the parent section if
6462                   nothing is specified here.
6463
6464           (End of dynamical grammar changes for variable "probe" example
6465           value "AnotherDNS".)
6466
6467       AnotherSSH: (See the separate module documentation for details about
6468       each variable.)
6469           The following new variables are valid:
6470
6471           greeting
6472               see above
6473
6474           interval
6475               see above
6476
6477           mininterval
6478               see above
6479
6480           pings
6481               see above
6482
6483           port
6484               see above
6485
6486           timeout
6487               see above
6488
6489           Syntax changes for subsection /[-_0-9a-zA-Z]+/
6490
6491               The following new variables are valid:
6492
6493               greeting
6494                   see above
6495
6496                   This variable inherits its value from the parent section if
6497                   nothing is specified here.
6498
6499               interval
6500                   see above
6501
6502                   This variable inherits its value from the parent section if
6503                   nothing is specified here.
6504
6505               mininterval
6506                   see above
6507
6508                   This variable inherits its value from the parent section if
6509                   nothing is specified here.
6510
6511               pings
6512                   see above
6513
6514                   This variable inherits its value from the parent section if
6515                   nothing is specified here.
6516
6517               port
6518                   see above
6519
6520                   This variable inherits its value from the parent section if
6521                   nothing is specified here.
6522
6523               timeout
6524                   see above
6525
6526                   This variable inherits its value from the parent section if
6527                   nothing is specified here.
6528
6529           (End of dynamical grammar changes for variable "probe" example
6530           value "AnotherSSH".)
6531
6532       CiscoRTTMonDNS: (See the separate module documentation for details
6533       about each variable.)
6534           The following new variables are valid:
6535
6536           ioshost
6537               see above
6538
6539           iosint
6540               see above
6541
6542           name
6543               see above
6544
6545           pings
6546               see above
6547
6548           timeout
6549               see above
6550
6551           Syntax changes for subsection /[-_0-9a-zA-Z]+/
6552
6553               The following new variables are valid:
6554
6555               ioshost
6556                   see above
6557
6558                   This variable inherits its value from the parent section if
6559                   nothing is specified here.
6560
6561               iosint
6562                   see above
6563
6564                   This variable inherits its value from the parent section if
6565                   nothing is specified here.
6566
6567               name
6568                   see above
6569
6570                   This variable inherits its value from the parent section if
6571                   nothing is specified here.
6572
6573               pings
6574                   see above
6575
6576                   This variable inherits its value from the parent section if
6577                   nothing is specified here.
6578
6579               timeout
6580                   see above
6581
6582                   This variable inherits its value from the parent section if
6583                   nothing is specified here.
6584
6585           (End of dynamical grammar changes for variable "probe" example
6586           value "CiscoRTTMonDNS".)
6587
6588       CiscoRTTMonEchoICMP: (See the separate module documentation for details
6589       about each variable.)
6590           The following new variables are valid:
6591
6592           ioshost
6593               see above
6594
6595           iosint
6596               see above
6597
6598           packetsize
6599               see above
6600
6601           pings
6602               see above
6603
6604           timeout
6605               see above
6606
6607           tos see above
6608
6609           vrf see above
6610
6611           Syntax changes for subsection /[-_0-9a-zA-Z]+/
6612
6613               The following new variables are valid:
6614
6615               ioshost
6616                   see above
6617
6618                   This variable inherits its value from the parent section if
6619                   nothing is specified here.
6620
6621               iosint
6622                   see above
6623
6624                   This variable inherits its value from the parent section if
6625                   nothing is specified here.
6626
6627               packetsize
6628                   see above
6629
6630                   This variable inherits its value from the parent section if
6631                   nothing is specified here.
6632
6633               pings
6634                   see above
6635
6636                   This variable inherits its value from the parent section if
6637                   nothing is specified here.
6638
6639               timeout
6640                   see above
6641
6642                   This variable inherits its value from the parent section if
6643                   nothing is specified here.
6644
6645               tos see above
6646
6647                   This variable inherits its value from the parent section if
6648                   nothing is specified here.
6649
6650               vrf see above
6651
6652                   This variable inherits its value from the parent section if
6653                   nothing is specified here.
6654
6655           (End of dynamical grammar changes for variable "probe" example
6656           value "CiscoRTTMonEchoICMP".)
6657
6658       CiscoRTTMonTcpConnect: (See the separate module documentation for
6659       details about each variable.)
6660           The following new variables are valid:
6661
6662           ioshost
6663               see above
6664
6665           iosint
6666               see above
6667
6668           pings
6669               see above
6670
6671           port
6672               see above
6673
6674           timeout
6675               see above
6676
6677           tos see above
6678
6679           Syntax changes for subsection /[-_0-9a-zA-Z]+/
6680
6681               The following new variables are valid:
6682
6683               ioshost
6684                   see above
6685
6686                   This variable inherits its value from the parent section if
6687                   nothing is specified here.
6688
6689               iosint
6690                   see above
6691
6692                   This variable inherits its value from the parent section if
6693                   nothing is specified here.
6694
6695               pings
6696                   see above
6697
6698                   This variable inherits its value from the parent section if
6699                   nothing is specified here.
6700
6701               port
6702                   see above
6703
6704                   This variable inherits its value from the parent section if
6705                   nothing is specified here.
6706
6707               timeout
6708                   see above
6709
6710                   This variable inherits its value from the parent section if
6711                   nothing is specified here.
6712
6713               tos see above
6714
6715                   This variable inherits its value from the parent section if
6716                   nothing is specified here.
6717
6718           (End of dynamical grammar changes for variable "probe" example
6719           value "CiscoRTTMonTcpConnect".)
6720
6721       Curl: (See the separate module documentation for details about each
6722       variable.)
6723           The following new variables are valid:
6724
6725           agent
6726               see above
6727
6728           expect
6729               see above
6730
6731           extraargs
6732               see above
6733
6734           extrare
6735               see above
6736
6737           follow_redirects
6738               see above
6739
6740           include_redirects
6741               see above
6742
6743           insecure_ssl
6744               see above
6745
6746           interface
6747               see above
6748
6749           pings
6750               see above
6751
6752           require_zero_status
6753               see above
6754
6755           ssl2
6756               see above
6757
6758           timeout
6759               see above
6760
6761           urlformat
6762               see above
6763
6764           Syntax changes for subsection /[-_0-9a-zA-Z]+/
6765
6766               The following new variables are valid:
6767
6768               agent
6769                   see above
6770
6771                   This variable inherits its value from the parent section if
6772                   nothing is specified here.
6773
6774               expect
6775                   see above
6776
6777                   This variable inherits its value from the parent section if
6778                   nothing is specified here.
6779
6780               extraargs
6781                   see above
6782
6783                   This variable inherits its value from the parent section if
6784                   nothing is specified here.
6785
6786               extrare
6787                   see above
6788
6789                   This variable inherits its value from the parent section if
6790                   nothing is specified here.
6791
6792               follow_redirects
6793                   see above
6794
6795                   This variable inherits its value from the parent section if
6796                   nothing is specified here.
6797
6798               include_redirects
6799                   see above
6800
6801                   This variable inherits its value from the parent section if
6802                   nothing is specified here.
6803
6804               insecure_ssl
6805                   see above
6806
6807                   This variable inherits its value from the parent section if
6808                   nothing is specified here.
6809
6810               interface
6811                   see above
6812
6813                   This variable inherits its value from the parent section if
6814                   nothing is specified here.
6815
6816               pings
6817                   see above
6818
6819                   This variable inherits its value from the parent section if
6820                   nothing is specified here.
6821
6822               require_zero_status
6823                   see above
6824
6825                   This variable inherits its value from the parent section if
6826                   nothing is specified here.
6827
6828               ssl2
6829                   see above
6830
6831                   This variable inherits its value from the parent section if
6832                   nothing is specified here.
6833
6834               timeout
6835                   see above
6836
6837                   This variable inherits its value from the parent section if
6838                   nothing is specified here.
6839
6840               urlformat
6841                   see above
6842
6843                   This variable inherits its value from the parent section if
6844                   nothing is specified here.
6845
6846           (End of dynamical grammar changes for variable "probe" example
6847           value "Curl".)
6848
6849       DNS: (See the separate module documentation for details about each
6850       variable.)
6851           The following new variables are valid:
6852
6853           lookup
6854               see above
6855
6856           pings
6857               see above
6858
6859           server
6860               see above
6861
6862           Syntax changes for subsection /[-_0-9a-zA-Z]+/
6863
6864               The following new variables are valid:
6865
6866               lookup
6867                   see above
6868
6869                   This variable inherits its value from the parent section if
6870                   nothing is specified here.
6871
6872               pings
6873                   see above
6874
6875                   This variable inherits its value from the parent section if
6876                   nothing is specified here.
6877
6878               server
6879                   see above
6880
6881                   This variable inherits its value from the parent section if
6882                   nothing is specified here.
6883
6884           (End of dynamical grammar changes for variable "probe" example
6885           value "DNS".)
6886
6887       DismanPing: (See the separate module documentation for details about
6888       each variable.)
6889           The following new variables are valid:
6890
6891           ownerindex
6892               see above
6893
6894           packetsize
6895               see above
6896
6897           pinghost
6898               see above
6899
6900           pingsrc
6901               see above
6902
6903           Syntax changes for subsection /[-_0-9a-zA-Z]+/
6904
6905               The following new variables are valid:
6906
6907               ownerindex
6908                   see above
6909
6910                   This variable inherits its value from the parent section if
6911                   nothing is specified here.
6912
6913               packetsize
6914                   see above
6915
6916                   This variable inherits its value from the parent section if
6917                   nothing is specified here.
6918
6919               pinghost
6920                   see above
6921
6922                   This variable inherits its value from the parent section if
6923                   nothing is specified here.
6924
6925               pingsrc
6926                   see above
6927
6928                   This variable inherits its value from the parent section if
6929                   nothing is specified here.
6930
6931           (End of dynamical grammar changes for variable "probe" example
6932           value "DismanPing".)
6933
6934       EchoPing: (See the separate module documentation for details about each
6935       variable.)
6936           The following new variables are valid:
6937
6938           extraopts
6939               see above
6940
6941           fill
6942               see above
6943
6944           ipversion
6945               see above
6946
6947           pings
6948               see above
6949
6950           priority
6951               see above
6952
6953           size
6954               see above
6955
6956           timeout
6957               see above
6958
6959           tos see above
6960
6961           udp see above
6962
6963           waittime
6964               see above
6965
6966           Syntax changes for subsection /[-_0-9a-zA-Z]+/
6967
6968               The following new variables are valid:
6969
6970               extraopts
6971                   see above
6972
6973                   This variable inherits its value from the parent section if
6974                   nothing is specified here.
6975
6976               fill
6977                   see above
6978
6979                   This variable inherits its value from the parent section if
6980                   nothing is specified here.
6981
6982               ipversion
6983                   see above
6984
6985                   This variable inherits its value from the parent section if
6986                   nothing is specified here.
6987
6988               pings
6989                   see above
6990
6991                   This variable inherits its value from the parent section if
6992                   nothing is specified here.
6993
6994               priority
6995                   see above
6996
6997                   This variable inherits its value from the parent section if
6998                   nothing is specified here.
6999
7000               size
7001                   see above
7002
7003                   This variable inherits its value from the parent section if
7004                   nothing is specified here.
7005
7006               timeout
7007                   see above
7008
7009                   This variable inherits its value from the parent section if
7010                   nothing is specified here.
7011
7012               tos see above
7013
7014                   This variable inherits its value from the parent section if
7015                   nothing is specified here.
7016
7017               udp see above
7018
7019                   This variable inherits its value from the parent section if
7020                   nothing is specified here.
7021
7022               waittime
7023                   see above
7024
7025                   This variable inherits its value from the parent section if
7026                   nothing is specified here.
7027
7028           (End of dynamical grammar changes for variable "probe" example
7029           value "EchoPing".)
7030
7031       EchoPingChargen: (See the separate module documentation for details
7032       about each variable.)
7033           The following new variables are valid:
7034
7035           extraopts
7036               see above
7037
7038           fill
7039               see above
7040
7041           ipversion
7042               see above
7043
7044           pings
7045               see above
7046
7047           priority
7048               see above
7049
7050           size
7051               see above
7052
7053           timeout
7054               see above
7055
7056           tos see above
7057
7058           waittime
7059               see above
7060
7061           Syntax changes for subsection /[-_0-9a-zA-Z]+/
7062
7063               The following new variables are valid:
7064
7065               extraopts
7066                   see above
7067
7068                   This variable inherits its value from the parent section if
7069                   nothing is specified here.
7070
7071               fill
7072                   see above
7073
7074                   This variable inherits its value from the parent section if
7075                   nothing is specified here.
7076
7077               ipversion
7078                   see above
7079
7080                   This variable inherits its value from the parent section if
7081                   nothing is specified here.
7082
7083               pings
7084                   see above
7085
7086                   This variable inherits its value from the parent section if
7087                   nothing is specified here.
7088
7089               priority
7090                   see above
7091
7092                   This variable inherits its value from the parent section if
7093                   nothing is specified here.
7094
7095               size
7096                   see above
7097
7098                   This variable inherits its value from the parent section if
7099                   nothing is specified here.
7100
7101               timeout
7102                   see above
7103
7104                   This variable inherits its value from the parent section if
7105                   nothing is specified here.
7106
7107               tos see above
7108
7109                   This variable inherits its value from the parent section if
7110                   nothing is specified here.
7111
7112               waittime
7113                   see above
7114
7115                   This variable inherits its value from the parent section if
7116                   nothing is specified here.
7117
7118           (End of dynamical grammar changes for variable "probe" example
7119           value "EchoPingChargen".)
7120
7121       EchoPingDNS: (See the separate module documentation for details about
7122       each variable.)
7123           The following new variables are valid:
7124
7125           dns_request
7126               see above
7127
7128           dns_tcp
7129               see above
7130
7131           dns_type
7132               see above
7133
7134           extraopts
7135               see above
7136
7137           ipversion
7138               see above
7139
7140           pings
7141               see above
7142
7143           plugin
7144               see above
7145
7146           pluginargs
7147               see above
7148
7149           priority
7150               see above
7151
7152           timeout
7153               see above
7154
7155           tos see above
7156
7157           waittime
7158               see above
7159
7160           Syntax changes for subsection /[-_0-9a-zA-Z]+/
7161
7162               The following new variables are valid:
7163
7164               dns_request
7165                   see above
7166
7167                   This variable inherits its value from the parent section if
7168                   nothing is specified here.
7169
7170               dns_tcp
7171                   see above
7172
7173                   This variable inherits its value from the parent section if
7174                   nothing is specified here.
7175
7176               dns_type
7177                   see above
7178
7179                   This variable inherits its value from the parent section if
7180                   nothing is specified here.
7181
7182               extraopts
7183                   see above
7184
7185                   This variable inherits its value from the parent section if
7186                   nothing is specified here.
7187
7188               ipversion
7189                   see above
7190
7191                   This variable inherits its value from the parent section if
7192                   nothing is specified here.
7193
7194               pings
7195                   see above
7196
7197                   This variable inherits its value from the parent section if
7198                   nothing is specified here.
7199
7200               plugin
7201                   see above
7202
7203                   This variable inherits its value from the parent section if
7204                   nothing is specified here.
7205
7206               pluginargs
7207                   see above
7208
7209                   This variable inherits its value from the parent section if
7210                   nothing is specified here.
7211
7212               priority
7213                   see above
7214
7215                   This variable inherits its value from the parent section if
7216                   nothing is specified here.
7217
7218               timeout
7219                   see above
7220
7221                   This variable inherits its value from the parent section if
7222                   nothing is specified here.
7223
7224               tos see above
7225
7226                   This variable inherits its value from the parent section if
7227                   nothing is specified here.
7228
7229               waittime
7230                   see above
7231
7232                   This variable inherits its value from the parent section if
7233                   nothing is specified here.
7234
7235           (End of dynamical grammar changes for variable "probe" example
7236           value "EchoPingDNS".)
7237
7238       EchoPingDiscard: (See the separate module documentation for details
7239       about each variable.)
7240           The following new variables are valid:
7241
7242           extraopts
7243               see above
7244
7245           fill
7246               see above
7247
7248           ipversion
7249               see above
7250
7251           pings
7252               see above
7253
7254           priority
7255               see above
7256
7257           size
7258               see above
7259
7260           timeout
7261               see above
7262
7263           tos see above
7264
7265           udp see above
7266
7267           waittime
7268               see above
7269
7270           Syntax changes for subsection /[-_0-9a-zA-Z]+/
7271
7272               The following new variables are valid:
7273
7274               extraopts
7275                   see above
7276
7277                   This variable inherits its value from the parent section if
7278                   nothing is specified here.
7279
7280               fill
7281                   see above
7282
7283                   This variable inherits its value from the parent section if
7284                   nothing is specified here.
7285
7286               ipversion
7287                   see above
7288
7289                   This variable inherits its value from the parent section if
7290                   nothing is specified here.
7291
7292               pings
7293                   see above
7294
7295                   This variable inherits its value from the parent section if
7296                   nothing is specified here.
7297
7298               priority
7299                   see above
7300
7301                   This variable inherits its value from the parent section if
7302                   nothing is specified here.
7303
7304               size
7305                   see above
7306
7307                   This variable inherits its value from the parent section if
7308                   nothing is specified here.
7309
7310               timeout
7311                   see above
7312
7313                   This variable inherits its value from the parent section if
7314                   nothing is specified here.
7315
7316               tos see above
7317
7318                   This variable inherits its value from the parent section if
7319                   nothing is specified here.
7320
7321               udp see above
7322
7323                   This variable inherits its value from the parent section if
7324                   nothing is specified here.
7325
7326               waittime
7327                   see above
7328
7329                   This variable inherits its value from the parent section if
7330                   nothing is specified here.
7331
7332           (End of dynamical grammar changes for variable "probe" example
7333           value "EchoPingDiscard".)
7334
7335       EchoPingHttp: (See the separate module documentation for details about
7336       each variable.)
7337           The following new variables are valid:
7338
7339           accept_redirects
7340               see above
7341
7342           extraopts
7343               see above
7344
7345           ignore_cache
7346               see above
7347
7348           ipversion
7349               see above
7350
7351           pings
7352               see above
7353
7354           port
7355               see above
7356
7357           priority
7358               see above
7359
7360           revalidate_data
7361               see above
7362
7363           timeout
7364               see above
7365
7366           tos see above
7367
7368           url see above
7369
7370           waittime
7371               see above
7372
7373           Syntax changes for subsection /[-_0-9a-zA-Z]+/
7374
7375               The following new variables are valid:
7376
7377               accept_redirects
7378                   see above
7379
7380                   This variable inherits its value from the parent section if
7381                   nothing is specified here.
7382
7383               extraopts
7384                   see above
7385
7386                   This variable inherits its value from the parent section if
7387                   nothing is specified here.
7388
7389               ignore_cache
7390                   see above
7391
7392                   This variable inherits its value from the parent section if
7393                   nothing is specified here.
7394
7395               ipversion
7396                   see above
7397
7398                   This variable inherits its value from the parent section if
7399                   nothing is specified here.
7400
7401               pings
7402                   see above
7403
7404                   This variable inherits its value from the parent section if
7405                   nothing is specified here.
7406
7407               port
7408                   see above
7409
7410                   This variable inherits its value from the parent section if
7411                   nothing is specified here.
7412
7413               priority
7414                   see above
7415
7416                   This variable inherits its value from the parent section if
7417                   nothing is specified here.
7418
7419               revalidate_data
7420                   see above
7421
7422                   This variable inherits its value from the parent section if
7423                   nothing is specified here.
7424
7425               timeout
7426                   see above
7427
7428                   This variable inherits its value from the parent section if
7429                   nothing is specified here.
7430
7431               tos see above
7432
7433                   This variable inherits its value from the parent section if
7434                   nothing is specified here.
7435
7436               url see above
7437
7438                   This variable inherits its value from the parent section if
7439                   nothing is specified here.
7440
7441               waittime
7442                   see above
7443
7444                   This variable inherits its value from the parent section if
7445                   nothing is specified here.
7446
7447           (End of dynamical grammar changes for variable "probe" example
7448           value "EchoPingHttp".)
7449
7450       EchoPingHttps: (See the separate module documentation for details about
7451       each variable.)
7452           The following new variables are valid:
7453
7454           accept_redirects
7455               see above
7456
7457           extraopts
7458               see above
7459
7460           ignore_cache
7461               see above
7462
7463           ipversion
7464               see above
7465
7466           pings
7467               see above
7468
7469           port
7470               see above
7471
7472           priority
7473               see above
7474
7475           prot
7476               see above
7477
7478           revalidate_data
7479               see above
7480
7481           timeout
7482               see above
7483
7484           tos see above
7485
7486           url see above
7487
7488           waittime
7489               see above
7490
7491           Syntax changes for subsection /[-_0-9a-zA-Z]+/
7492
7493               The following new variables are valid:
7494
7495               accept_redirects
7496                   see above
7497
7498                   This variable inherits its value from the parent section if
7499                   nothing is specified here.
7500
7501               extraopts
7502                   see above
7503
7504                   This variable inherits its value from the parent section if
7505                   nothing is specified here.
7506
7507               ignore_cache
7508                   see above
7509
7510                   This variable inherits its value from the parent section if
7511                   nothing is specified here.
7512
7513               ipversion
7514                   see above
7515
7516                   This variable inherits its value from the parent section if
7517                   nothing is specified here.
7518
7519               pings
7520                   see above
7521
7522                   This variable inherits its value from the parent section if
7523                   nothing is specified here.
7524
7525               port
7526                   see above
7527
7528                   This variable inherits its value from the parent section if
7529                   nothing is specified here.
7530
7531               priority
7532                   see above
7533
7534                   This variable inherits its value from the parent section if
7535                   nothing is specified here.
7536
7537               prot
7538                   see above
7539
7540                   This variable inherits its value from the parent section if
7541                   nothing is specified here.
7542
7543               revalidate_data
7544                   see above
7545
7546                   This variable inherits its value from the parent section if
7547                   nothing is specified here.
7548
7549               timeout
7550                   see above
7551
7552                   This variable inherits its value from the parent section if
7553                   nothing is specified here.
7554
7555               tos see above
7556
7557                   This variable inherits its value from the parent section if
7558                   nothing is specified here.
7559
7560               url see above
7561
7562                   This variable inherits its value from the parent section if
7563                   nothing is specified here.
7564
7565               waittime
7566                   see above
7567
7568                   This variable inherits its value from the parent section if
7569                   nothing is specified here.
7570
7571           (End of dynamical grammar changes for variable "probe" example
7572           value "EchoPingHttps".)
7573
7574       EchoPingIcp: (See the separate module documentation for details about
7575       each variable.)
7576           The following new variables are valid:
7577
7578           extraopts
7579               see above
7580
7581           ipversion
7582               see above
7583
7584           pings
7585               see above
7586
7587           priority
7588               see above
7589
7590           timeout
7591               see above
7592
7593           tos see above
7594
7595           url see above
7596
7597           waittime
7598               see above
7599
7600           Syntax changes for subsection /[-_0-9a-zA-Z]+/
7601
7602               The following new variables are valid:
7603
7604               extraopts
7605                   see above
7606
7607                   This variable inherits its value from the parent section if
7608                   nothing is specified here.
7609
7610               ipversion
7611                   see above
7612
7613                   This variable inherits its value from the parent section if
7614                   nothing is specified here.
7615
7616               pings
7617                   see above
7618
7619                   This variable inherits its value from the parent section if
7620                   nothing is specified here.
7621
7622               priority
7623                   see above
7624
7625                   This variable inherits its value from the parent section if
7626                   nothing is specified here.
7627
7628               timeout
7629                   see above
7630
7631                   This variable inherits its value from the parent section if
7632                   nothing is specified here.
7633
7634               tos see above
7635
7636                   This variable inherits its value from the parent section if
7637                   nothing is specified here.
7638
7639               url see above
7640
7641                   This variable inherits its value from the parent section if
7642                   nothing is specified here.
7643
7644               waittime
7645                   see above
7646
7647                   This variable inherits its value from the parent section if
7648                   nothing is specified here.
7649
7650           (End of dynamical grammar changes for variable "probe" example
7651           value "EchoPingIcp".)
7652
7653       EchoPingLDAP: (See the separate module documentation for details about
7654       each variable.)
7655           The following new variables are valid:
7656
7657           extraopts
7658               see above
7659
7660           ipversion
7661               see above
7662
7663           ldap_base
7664               see above
7665
7666           ldap_request
7667               see above
7668
7669           ldap_scope
7670               see above
7671
7672           pings
7673               see above
7674
7675           plugin
7676               see above
7677
7678           pluginargs
7679               see above
7680
7681           priority
7682               see above
7683
7684           timeout
7685               see above
7686
7687           tos see above
7688
7689           waittime
7690               see above
7691
7692           Syntax changes for subsection /[-_0-9a-zA-Z]+/
7693
7694               The following new variables are valid:
7695
7696               extraopts
7697                   see above
7698
7699                   This variable inherits its value from the parent section if
7700                   nothing is specified here.
7701
7702               ipversion
7703                   see above
7704
7705                   This variable inherits its value from the parent section if
7706                   nothing is specified here.
7707
7708               ldap_base
7709                   see above
7710
7711                   This variable inherits its value from the parent section if
7712                   nothing is specified here.
7713
7714               ldap_request
7715                   see above
7716
7717                   This variable inherits its value from the parent section if
7718                   nothing is specified here.
7719
7720               ldap_scope
7721                   see above
7722
7723                   This variable inherits its value from the parent section if
7724                   nothing is specified here.
7725
7726               pings
7727                   see above
7728
7729                   This variable inherits its value from the parent section if
7730                   nothing is specified here.
7731
7732               plugin
7733                   see above
7734
7735                   This variable inherits its value from the parent section if
7736                   nothing is specified here.
7737
7738               pluginargs
7739                   see above
7740
7741                   This variable inherits its value from the parent section if
7742                   nothing is specified here.
7743
7744               priority
7745                   see above
7746
7747                   This variable inherits its value from the parent section if
7748                   nothing is specified here.
7749
7750               timeout
7751                   see above
7752
7753                   This variable inherits its value from the parent section if
7754                   nothing is specified here.
7755
7756               tos see above
7757
7758                   This variable inherits its value from the parent section if
7759                   nothing is specified here.
7760
7761               waittime
7762                   see above
7763
7764                   This variable inherits its value from the parent section if
7765                   nothing is specified here.
7766
7767           (End of dynamical grammar changes for variable "probe" example
7768           value "EchoPingLDAP".)
7769
7770       EchoPingPlugin: (See the separate module documentation for details
7771       about each variable.)
7772           The following new variables are valid:
7773
7774           extraopts
7775               see above
7776
7777           ipversion
7778               see above
7779
7780           pings
7781               see above
7782
7783           plugin
7784               see above
7785
7786           pluginargs
7787               see above
7788
7789           priority
7790               see above
7791
7792           timeout
7793               see above
7794
7795           tos see above
7796
7797           waittime
7798               see above
7799
7800           Syntax changes for subsection /[-_0-9a-zA-Z]+/
7801
7802               The following new variables are valid:
7803
7804               extraopts
7805                   see above
7806
7807                   This variable inherits its value from the parent section if
7808                   nothing is specified here.
7809
7810               ipversion
7811                   see above
7812
7813                   This variable inherits its value from the parent section if
7814                   nothing is specified here.
7815
7816               pings
7817                   see above
7818
7819                   This variable inherits its value from the parent section if
7820                   nothing is specified here.
7821
7822               plugin
7823                   see above
7824
7825                   This variable inherits its value from the parent section if
7826                   nothing is specified here.
7827
7828               pluginargs
7829                   see above
7830
7831                   This variable inherits its value from the parent section if
7832                   nothing is specified here.
7833
7834               priority
7835                   see above
7836
7837                   This variable inherits its value from the parent section if
7838                   nothing is specified here.
7839
7840               timeout
7841                   see above
7842
7843                   This variable inherits its value from the parent section if
7844                   nothing is specified here.
7845
7846               tos see above
7847
7848                   This variable inherits its value from the parent section if
7849                   nothing is specified here.
7850
7851               waittime
7852                   see above
7853
7854                   This variable inherits its value from the parent section if
7855                   nothing is specified here.
7856
7857           (End of dynamical grammar changes for variable "probe" example
7858           value "EchoPingPlugin".)
7859
7860       EchoPingSmtp: (See the separate module documentation for details about
7861       each variable.)
7862           The following new variables are valid:
7863
7864           extraopts
7865               see above
7866
7867           ipversion
7868               see above
7869
7870           pings
7871               see above
7872
7873           priority
7874               see above
7875
7876           timeout
7877               see above
7878
7879           tos see above
7880
7881           waittime
7882               see above
7883
7884           Syntax changes for subsection /[-_0-9a-zA-Z]+/
7885
7886               The following new variables are valid:
7887
7888               extraopts
7889                   see above
7890
7891                   This variable inherits its value from the parent section if
7892                   nothing is specified here.
7893
7894               ipversion
7895                   see above
7896
7897                   This variable inherits its value from the parent section if
7898                   nothing is specified here.
7899
7900               pings
7901                   see above
7902
7903                   This variable inherits its value from the parent section if
7904                   nothing is specified here.
7905
7906               priority
7907                   see above
7908
7909                   This variable inherits its value from the parent section if
7910                   nothing is specified here.
7911
7912               timeout
7913                   see above
7914
7915                   This variable inherits its value from the parent section if
7916                   nothing is specified here.
7917
7918               tos see above
7919
7920                   This variable inherits its value from the parent section if
7921                   nothing is specified here.
7922
7923               waittime
7924                   see above
7925
7926                   This variable inherits its value from the parent section if
7927                   nothing is specified here.
7928
7929           (End of dynamical grammar changes for variable "probe" example
7930           value "EchoPingSmtp".)
7931
7932       EchoPingWhois: (See the separate module documentation for details about
7933       each variable.)
7934           The following new variables are valid:
7935
7936           extraopts
7937               see above
7938
7939           ipversion
7940               see above
7941
7942           pings
7943               see above
7944
7945           plugin
7946               see above
7947
7948           pluginargs
7949               see above
7950
7951           priority
7952               see above
7953
7954           timeout
7955               see above
7956
7957           tos see above
7958
7959           waittime
7960               see above
7961
7962           whois_request
7963               see above
7964
7965           Syntax changes for subsection /[-_0-9a-zA-Z]+/
7966
7967               The following new variables are valid:
7968
7969               extraopts
7970                   see above
7971
7972                   This variable inherits its value from the parent section if
7973                   nothing is specified here.
7974
7975               ipversion
7976                   see above
7977
7978                   This variable inherits its value from the parent section if
7979                   nothing is specified here.
7980
7981               pings
7982                   see above
7983
7984                   This variable inherits its value from the parent section if
7985                   nothing is specified here.
7986
7987               plugin
7988                   see above
7989
7990                   This variable inherits its value from the parent section if
7991                   nothing is specified here.
7992
7993               pluginargs
7994                   see above
7995
7996                   This variable inherits its value from the parent section if
7997                   nothing is specified here.
7998
7999               priority
8000                   see above
8001
8002                   This variable inherits its value from the parent section if
8003                   nothing is specified here.
8004
8005               timeout
8006                   see above
8007
8008                   This variable inherits its value from the parent section if
8009                   nothing is specified here.
8010
8011               tos see above
8012
8013                   This variable inherits its value from the parent section if
8014                   nothing is specified here.
8015
8016               waittime
8017                   see above
8018
8019                   This variable inherits its value from the parent section if
8020                   nothing is specified here.
8021
8022               whois_request
8023                   see above
8024
8025                   This variable inherits its value from the parent section if
8026                   nothing is specified here.
8027
8028           (End of dynamical grammar changes for variable "probe" example
8029           value "EchoPingWhois".)
8030
8031       FPing: (See the separate module documentation for details about each
8032       variable.)
8033           No changes that can be automatically described.
8034
8035           (End of dynamical grammar changes for variable "probe" example
8036           value "FPing".)
8037
8038       FPing6: (See the separate module documentation for details about each
8039       variable.)
8040           No changes that can be automatically described.
8041
8042           (End of dynamical grammar changes for variable "probe" example
8043           value "FPing6".)
8044
8045       FPingContinuous: (See the separate module documentation for details
8046       about each variable.)
8047           No changes that can be automatically described.
8048
8049           (End of dynamical grammar changes for variable "probe" example
8050           value "FPingContinuous".)
8051
8052       FTPtransfer: (See the separate module documentation for details about
8053       each variable.)
8054           The following new variables are valid:
8055
8056           localaddr
8057               see above
8058
8059           passive
8060               see above
8061
8062           password
8063               see above
8064
8065           pings
8066               see above
8067
8068           port
8069               see above
8070
8071           timeout
8072               see above
8073
8074           username
8075               see above
8076
8077           Syntax changes for subsection /[-_0-9a-zA-Z]+/
8078
8079               The following new variables are valid:
8080
8081               localaddr
8082                   see above
8083
8084                   This variable inherits its value from the parent section if
8085                   nothing is specified here.
8086
8087               passive
8088                   see above
8089
8090                   This variable inherits its value from the parent section if
8091                   nothing is specified here.
8092
8093               password
8094                   see above
8095
8096                   This variable inherits its value from the parent section if
8097                   nothing is specified here.
8098
8099               pings
8100                   see above
8101
8102                   This variable inherits its value from the parent section if
8103                   nothing is specified here.
8104
8105               port
8106                   see above
8107
8108                   This variable inherits its value from the parent section if
8109                   nothing is specified here.
8110
8111               timeout
8112                   see above
8113
8114                   This variable inherits its value from the parent section if
8115                   nothing is specified here.
8116
8117               username
8118                   see above
8119
8120                   This variable inherits its value from the parent section if
8121                   nothing is specified here.
8122
8123           (End of dynamical grammar changes for variable "probe" example
8124           value "FTPtransfer".)
8125
8126       IOSPing: (See the separate module documentation for details about each
8127       variable.)
8128           The following new variables are valid:
8129
8130           ioshost
8131               see above
8132
8133           iosint
8134               see above
8135
8136           iosuser
8137               see above
8138
8139           pings
8140               see above
8141
8142           Syntax changes for subsection /[-_0-9a-zA-Z]+/
8143
8144               The following new variables are valid:
8145
8146               ioshost
8147                   see above
8148
8149                   This variable inherits its value from the parent section if
8150                   nothing is specified here.
8151
8152               iosint
8153                   see above
8154
8155                   This variable inherits its value from the parent section if
8156                   nothing is specified here.
8157
8158               iosuser
8159                   see above
8160
8161                   This variable inherits its value from the parent section if
8162                   nothing is specified here.
8163
8164               pings
8165                   see above
8166
8167                   This variable inherits its value from the parent section if
8168                   nothing is specified here.
8169
8170           (End of dynamical grammar changes for variable "probe" example
8171           value "IOSPing".)
8172
8173       IRTT: (See the separate module documentation for details about each
8174       variable.)
8175           The following new variables are valid:
8176
8177           dscp
8178               see above
8179
8180           extraargs
8181               see above
8182
8183           fill
8184               see above
8185
8186           hmac
8187               see above
8188
8189           interval
8190               see above
8191
8192           ipversion
8193               see above
8194
8195           length
8196               see above
8197
8198           localaddr
8199               see above
8200
8201           metric
8202               see above
8203
8204           pings
8205               see above
8206
8207           readfrom
8208               see above
8209
8210           readfrompollinterval
8211               see above
8212
8213           serverfill
8214               see above
8215
8216           sleep
8217               see above
8218
8219           writeto
8220               see above
8221
8222           Syntax changes for subsection /[-_0-9a-zA-Z]+/
8223
8224               The following new variables are valid:
8225
8226               dscp
8227                   see above
8228
8229                   This variable inherits its value from the parent section if
8230                   nothing is specified here.
8231
8232               extraargs
8233                   see above
8234
8235                   This variable inherits its value from the parent section if
8236                   nothing is specified here.
8237
8238               fill
8239                   see above
8240
8241                   This variable inherits its value from the parent section if
8242                   nothing is specified here.
8243
8244               hmac
8245                   see above
8246
8247                   This variable inherits its value from the parent section if
8248                   nothing is specified here.
8249
8250               interval
8251                   see above
8252
8253                   This variable inherits its value from the parent section if
8254                   nothing is specified here.
8255
8256               ipversion
8257                   see above
8258
8259                   This variable inherits its value from the parent section if
8260                   nothing is specified here.
8261
8262               length
8263                   see above
8264
8265                   This variable inherits its value from the parent section if
8266                   nothing is specified here.
8267
8268               localaddr
8269                   see above
8270
8271                   This variable inherits its value from the parent section if
8272                   nothing is specified here.
8273
8274               metric
8275                   see above
8276
8277                   This variable inherits its value from the parent section if
8278                   nothing is specified here.
8279
8280               pings
8281                   see above
8282
8283                   This variable inherits its value from the parent section if
8284                   nothing is specified here.
8285
8286               readfrom
8287                   see above
8288
8289                   This variable inherits its value from the parent section if
8290                   nothing is specified here.
8291
8292               readfrompollinterval
8293                   see above
8294
8295                   This variable inherits its value from the parent section if
8296                   nothing is specified here.
8297
8298               serverfill
8299                   see above
8300
8301                   This variable inherits its value from the parent section if
8302                   nothing is specified here.
8303
8304               sleep
8305                   see above
8306
8307                   This variable inherits its value from the parent section if
8308                   nothing is specified here.
8309
8310               writeto
8311                   see above
8312
8313                   This variable inherits its value from the parent section if
8314                   nothing is specified here.
8315
8316           (End of dynamical grammar changes for variable "probe" example
8317           value "IRTT".)
8318
8319       LDAP: (See the separate module documentation for details about each
8320       variable.)
8321           The following new variables are valid:
8322
8323           attrs
8324               see above
8325
8326           base
8327               see above
8328
8329           binddn
8330               see above
8331
8332           filter
8333               see above
8334
8335           mininterval
8336               see above
8337
8338           password
8339               see above
8340
8341           pings
8342               see above
8343
8344           port
8345               see above
8346
8347           scheme
8348               see above
8349
8350           scope
8351               see above
8352
8353           start_tls
8354               see above
8355
8356           timeout
8357               see above
8358
8359           verify
8360               see above
8361
8362           version
8363               see above
8364
8365           Syntax changes for subsection /[-_0-9a-zA-Z]+/
8366
8367               The following new variables are valid:
8368
8369               attrs
8370                   see above
8371
8372                   This variable inherits its value from the parent section if
8373                   nothing is specified here.
8374
8375               base
8376                   see above
8377
8378                   This variable inherits its value from the parent section if
8379                   nothing is specified here.
8380
8381               binddn
8382                   see above
8383
8384                   This variable inherits its value from the parent section if
8385                   nothing is specified here.
8386
8387               filter
8388                   see above
8389
8390                   This variable inherits its value from the parent section if
8391                   nothing is specified here.
8392
8393               mininterval
8394                   see above
8395
8396                   This variable inherits its value from the parent section if
8397                   nothing is specified here.
8398
8399               password
8400                   see above
8401
8402                   This variable inherits its value from the parent section if
8403                   nothing is specified here.
8404
8405               pings
8406                   see above
8407
8408                   This variable inherits its value from the parent section if
8409                   nothing is specified here.
8410
8411               port
8412                   see above
8413
8414                   This variable inherits its value from the parent section if
8415                   nothing is specified here.
8416
8417               scheme
8418                   see above
8419
8420                   This variable inherits its value from the parent section if
8421                   nothing is specified here.
8422
8423               scope
8424                   see above
8425
8426                   This variable inherits its value from the parent section if
8427                   nothing is specified here.
8428
8429               start_tls
8430                   see above
8431
8432                   This variable inherits its value from the parent section if
8433                   nothing is specified here.
8434
8435               timeout
8436                   see above
8437
8438                   This variable inherits its value from the parent section if
8439                   nothing is specified here.
8440
8441               verify
8442                   see above
8443
8444                   This variable inherits its value from the parent section if
8445                   nothing is specified here.
8446
8447               version
8448                   see above
8449
8450                   This variable inherits its value from the parent section if
8451                   nothing is specified here.
8452
8453           (End of dynamical grammar changes for variable "probe" example
8454           value "LDAP".)
8455
8456       NFSping: (See the separate module documentation for details about each
8457       variable.)
8458           No changes that can be automatically described.
8459
8460           (End of dynamical grammar changes for variable "probe" example
8461           value "NFSping".)
8462
8463       OpenSSHEOSPing: (See the separate module documentation for details
8464       about each variable.)
8465           The following new variables are valid:
8466
8467           eospass
8468               see above
8469
8470           eosuser
8471               see above
8472
8473           pings
8474               see above
8475
8476           psource
8477               see above
8478
8479           source
8480               see above
8481
8482           unpriv
8483               see above
8484
8485           Syntax changes for subsection /[-_0-9a-zA-Z]+/
8486
8487               The following new variables are valid:
8488
8489               eospass
8490                   see above
8491
8492                   This variable inherits its value from the parent section if
8493                   nothing is specified here.
8494
8495               eosuser
8496                   see above
8497
8498                   This variable inherits its value from the parent section if
8499                   nothing is specified here.
8500
8501               pings
8502                   see above
8503
8504                   This variable inherits its value from the parent section if
8505                   nothing is specified here.
8506
8507               psource
8508                   see above
8509
8510                   This variable inherits its value from the parent section if
8511                   nothing is specified here.
8512
8513               source
8514                   see above
8515
8516                   This variable inherits its value from the parent section if
8517                   nothing is specified here.
8518
8519               unpriv
8520                   see above
8521
8522                   This variable inherits its value from the parent section if
8523                   nothing is specified here.
8524
8525           (End of dynamical grammar changes for variable "probe" example
8526           value "OpenSSHEOSPing".)
8527
8528       OpenSSHJunOSPing: (See the separate module documentation for details
8529       about each variable.)
8530           The following new variables are valid:
8531
8532           junospass
8533               see above
8534
8535           junosuser
8536               see above
8537
8538           pings
8539               see above
8540
8541           psource
8542               see above
8543
8544           source
8545               see above
8546
8547           Syntax changes for subsection /[-_0-9a-zA-Z]+/
8548
8549               The following new variables are valid:
8550
8551               junospass
8552                   see above
8553
8554                   This variable inherits its value from the parent section if
8555                   nothing is specified here.
8556
8557               junosuser
8558                   see above
8559
8560                   This variable inherits its value from the parent section if
8561                   nothing is specified here.
8562
8563               pings
8564                   see above
8565
8566                   This variable inherits its value from the parent section if
8567                   nothing is specified here.
8568
8569               psource
8570                   see above
8571
8572                   This variable inherits its value from the parent section if
8573                   nothing is specified here.
8574
8575               source
8576                   see above
8577
8578                   This variable inherits its value from the parent section if
8579                   nothing is specified here.
8580
8581           (End of dynamical grammar changes for variable "probe" example
8582           value "OpenSSHJunOSPing".)
8583
8584       Qstat: (See the separate module documentation for details about each
8585       variable.)
8586           The following new variables are valid:
8587
8588           pings
8589               see above
8590
8591           Syntax changes for subsection /[-_0-9a-zA-Z]+/
8592
8593               The following new variables are valid:
8594
8595               pings
8596                   see above
8597
8598                   This variable inherits its value from the parent section if
8599                   nothing is specified here.
8600
8601           (End of dynamical grammar changes for variable "probe" example
8602           value "Qstat".)
8603
8604       Radius: (See the separate module documentation for details about each
8605       variable.)
8606           The following new variables are valid:
8607
8608           allowreject
8609               see above
8610
8611           mininterval
8612               see above
8613
8614           nas_ip_address
8615               see above
8616
8617           password
8618               see above
8619
8620           pings
8621               see above
8622
8623           port
8624               see above
8625
8626           secret
8627               see above
8628
8629           timeout
8630               see above
8631
8632           username
8633               see above
8634
8635           Syntax changes for subsection /[-_0-9a-zA-Z]+/
8636
8637               The following new variables are valid:
8638
8639               allowreject
8640                   see above
8641
8642                   This variable inherits its value from the parent section if
8643                   nothing is specified here.
8644
8645               mininterval
8646                   see above
8647
8648                   This variable inherits its value from the parent section if
8649                   nothing is specified here.
8650
8651               nas_ip_address
8652                   see above
8653
8654                   This variable inherits its value from the parent section if
8655                   nothing is specified here.
8656
8657               password
8658                   see above
8659
8660                   This variable inherits its value from the parent section if
8661                   nothing is specified here.
8662
8663               pings
8664                   see above
8665
8666                   This variable inherits its value from the parent section if
8667                   nothing is specified here.
8668
8669               port
8670                   see above
8671
8672                   This variable inherits its value from the parent section if
8673                   nothing is specified here.
8674
8675               secret
8676                   see above
8677
8678                   This variable inherits its value from the parent section if
8679                   nothing is specified here.
8680
8681               timeout
8682                   see above
8683
8684                   This variable inherits its value from the parent section if
8685                   nothing is specified here.
8686
8687               username
8688                   see above
8689
8690                   This variable inherits its value from the parent section if
8691                   nothing is specified here.
8692
8693           (End of dynamical grammar changes for variable "probe" example
8694           value "Radius".)
8695
8696       RemoteFPing: (See the separate module documentation for details about
8697       each variable.)
8698           No changes that can be automatically described.
8699
8700           (End of dynamical grammar changes for variable "probe" example
8701           value "RemoteFPing".)
8702
8703       SSH: (See the separate module documentation for details about each
8704       variable.)
8705           The following new variables are valid:
8706
8707           keytype
8708               see above
8709
8710           pings
8711               see above
8712
8713           port
8714               see above
8715
8716           Syntax changes for subsection /[-_0-9a-zA-Z]+/
8717
8718               The following new variables are valid:
8719
8720               keytype
8721                   see above
8722
8723                   This variable inherits its value from the parent section if
8724                   nothing is specified here.
8725
8726               pings
8727                   see above
8728
8729                   This variable inherits its value from the parent section if
8730                   nothing is specified here.
8731
8732               port
8733                   see above
8734
8735                   This variable inherits its value from the parent section if
8736                   nothing is specified here.
8737
8738           (End of dynamical grammar changes for variable "probe" example
8739           value "SSH".)
8740
8741       SendEmail: (See the separate module documentation for details about
8742       each variable.)
8743           The following new variables are valid:
8744
8745           pings
8746               see above
8747
8748           port
8749               see above
8750
8751           Syntax changes for subsection /[-_0-9a-zA-Z]+/
8752
8753               The following new variables are valid:
8754
8755               pings
8756                   see above
8757
8758                   This variable inherits its value from the parent section if
8759                   nothing is specified here.
8760
8761               port
8762                   see above
8763
8764                   This variable inherits its value from the parent section if
8765                   nothing is specified here.
8766
8767           (End of dynamical grammar changes for variable "probe" example
8768           value "SendEmail".)
8769
8770       SipSak: (See the separate module documentation for details about each
8771       variable.)
8772           The following new variables are valid:
8773
8774           keep_second
8775               see above
8776
8777           params
8778               see above
8779
8780           pings
8781               see above
8782
8783           port
8784               see above
8785
8786           sipsak_timeout
8787               see above
8788
8789           user
8790               see above
8791
8792           Syntax changes for subsection /[-_0-9a-zA-Z]+/
8793
8794               The following new variables are valid:
8795
8796               keep_second
8797                   see above
8798
8799                   This variable inherits its value from the parent section if
8800                   nothing is specified here.
8801
8802               params
8803                   see above
8804
8805                   This variable inherits its value from the parent section if
8806                   nothing is specified here.
8807
8808               pings
8809                   see above
8810
8811                   This variable inherits its value from the parent section if
8812                   nothing is specified here.
8813
8814               port
8815                   see above
8816
8817                   This variable inherits its value from the parent section if
8818                   nothing is specified here.
8819
8820               sipsak_timeout
8821                   see above
8822
8823                   This variable inherits its value from the parent section if
8824                   nothing is specified here.
8825
8826               user
8827                   see above
8828
8829                   This variable inherits its value from the parent section if
8830                   nothing is specified here.
8831
8832           (End of dynamical grammar changes for variable "probe" example
8833           value "SipSak".)
8834
8835       TCPPing: (See the separate module documentation for details about each
8836       variable.)
8837           The following new variables are valid:
8838
8839           pings
8840               see above
8841
8842           port
8843               see above
8844
8845           Syntax changes for subsection /[-_0-9a-zA-Z]+/
8846
8847               The following new variables are valid:
8848
8849               pings
8850                   see above
8851
8852                   This variable inherits its value from the parent section if
8853                   nothing is specified here.
8854
8855               port
8856                   see above
8857
8858                   This variable inherits its value from the parent section if
8859                   nothing is specified here.
8860
8861           (End of dynamical grammar changes for variable "probe" example
8862           value "TCPPing".)
8863
8864       TacacsPlus: (See the separate module documentation for details about
8865       each variable.)
8866           The following new variables are valid:
8867
8868           authtype
8869               see above
8870
8871           mininterval
8872               see above
8873
8874           password
8875               see above
8876
8877           pings
8878               see above
8879
8880           port
8881               see above
8882
8883           secret
8884               see above
8885
8886           timeout
8887               see above
8888
8889           username
8890               see above
8891
8892           Syntax changes for subsection /[-_0-9a-zA-Z]+/
8893
8894               The following new variables are valid:
8895
8896               authtype
8897                   see above
8898
8899                   This variable inherits its value from the parent section if
8900                   nothing is specified here.
8901
8902               mininterval
8903                   see above
8904
8905                   This variable inherits its value from the parent section if
8906                   nothing is specified here.
8907
8908               password
8909                   see above
8910
8911                   This variable inherits its value from the parent section if
8912                   nothing is specified here.
8913
8914               pings
8915                   see above
8916
8917                   This variable inherits its value from the parent section if
8918                   nothing is specified here.
8919
8920               port
8921                   see above
8922
8923                   This variable inherits its value from the parent section if
8924                   nothing is specified here.
8925
8926               secret
8927                   see above
8928
8929                   This variable inherits its value from the parent section if
8930                   nothing is specified here.
8931
8932               timeout
8933                   see above
8934
8935                   This variable inherits its value from the parent section if
8936                   nothing is specified here.
8937
8938               username
8939                   see above
8940
8941                   This variable inherits its value from the parent section if
8942                   nothing is specified here.
8943
8944           (End of dynamical grammar changes for variable "probe" example
8945           value "TacacsPlus".)
8946
8947       TelnetIOSPing: (See the separate module documentation for details about
8948       each variable.)
8949           The following new variables are valid:
8950
8951           iospass
8952               see above
8953
8954           iosuser
8955               see above
8956
8957           pings
8958               see above
8959
8960           psource
8961               see above
8962
8963           source
8964               see above
8965
8966           vrf see above
8967
8968           Syntax changes for subsection /[-_0-9a-zA-Z]+/
8969
8970               The following new variables are valid:
8971
8972               iospass
8973                   see above
8974
8975                   This variable inherits its value from the parent section if
8976                   nothing is specified here.
8977
8978               iosuser
8979                   see above
8980
8981                   This variable inherits its value from the parent section if
8982                   nothing is specified here.
8983
8984               pings
8985                   see above
8986
8987                   This variable inherits its value from the parent section if
8988                   nothing is specified here.
8989
8990               psource
8991                   see above
8992
8993                   This variable inherits its value from the parent section if
8994                   nothing is specified here.
8995
8996               source
8997                   see above
8998
8999                   This variable inherits its value from the parent section if
9000                   nothing is specified here.
9001
9002               vrf see above
9003
9004                   This variable inherits its value from the parent section if
9005                   nothing is specified here.
9006
9007           (End of dynamical grammar changes for variable "probe" example
9008           value "TelnetIOSPing".)
9009
9010       TelnetJunOSPing: (See the separate module documentation for details
9011       about each variable.)
9012           The following new variables are valid:
9013
9014           junospass
9015               see above
9016
9017           junosuser
9018               see above
9019
9020           pings
9021               see above
9022
9023           psource
9024               see above
9025
9026           source
9027               see above
9028
9029           Syntax changes for subsection /[-_0-9a-zA-Z]+/
9030
9031               The following new variables are valid:
9032
9033               junospass
9034                   see above
9035
9036                   This variable inherits its value from the parent section if
9037                   nothing is specified here.
9038
9039               junosuser
9040                   see above
9041
9042                   This variable inherits its value from the parent section if
9043                   nothing is specified here.
9044
9045               pings
9046                   see above
9047
9048                   This variable inherits its value from the parent section if
9049                   nothing is specified here.
9050
9051               psource
9052                   see above
9053
9054                   This variable inherits its value from the parent section if
9055                   nothing is specified here.
9056
9057               source
9058                   see above
9059
9060                   This variable inherits its value from the parent section if
9061                   nothing is specified here.
9062
9063           (End of dynamical grammar changes for variable "probe" example
9064           value "TelnetJunOSPing".)
9065
9066       TraceroutePing: (See the separate module documentation for details
9067       about each variable.)
9068           The following new variables are valid:
9069
9070           desthost
9071               see above
9072
9073           host
9074               see above
9075
9076           maxttl
9077               see above
9078
9079           minttl
9080               see above
9081
9082           pings
9083               see above
9084
9085           wait
9086               see above
9087
9088           Syntax changes for subsection /[-_0-9a-zA-Z]+/
9089
9090               The following new variables are valid:
9091
9092               desthost
9093                   see above
9094
9095                   This variable inherits its value from the parent section if
9096                   nothing is specified here.
9097
9098               maxttl
9099                   see above
9100
9101                   This variable inherits its value from the parent section if
9102                   nothing is specified here.
9103
9104               minttl
9105                   see above
9106
9107                   This variable inherits its value from the parent section if
9108                   nothing is specified here.
9109
9110               pings
9111                   see above
9112
9113                   This variable inherits its value from the parent section if
9114                   nothing is specified here.
9115
9116               wait
9117                   see above
9118
9119                   This variable inherits its value from the parent section if
9120                   nothing is specified here.
9121
9122           (End of dynamical grammar changes for variable "probe" example
9123           value "TraceroutePing".)
9124
9125       WebProxyFilter: (See the separate module documentation for details
9126       about each variable.)
9127           The following new variables are valid:
9128
9129           deny_re
9130               see above
9131
9132           more_hosts
9133               see above
9134
9135           pings
9136               see above
9137
9138           timeout
9139               see above
9140
9141           Syntax changes for subsection /[-_0-9a-zA-Z]+/
9142
9143               The following new variables are valid:
9144
9145               deny_re
9146                   see above
9147
9148                   This variable inherits its value from the parent section if
9149                   nothing is specified here.
9150
9151               more_hosts
9152                   see above
9153
9154                   This variable inherits its value from the parent section if
9155                   nothing is specified here.
9156
9157               pings
9158                   see above
9159
9160                   This variable inherits its value from the parent section if
9161                   nothing is specified here.
9162
9163               timeout
9164                   see above
9165
9166                   This variable inherits its value from the parent section if
9167                   nothing is specified here.
9168
9169           (End of dynamical grammar changes for variable "probe" example
9170           value "WebProxyFilter".)
9171
9172       (End of dynamical grammar changes for example values of variable
9173       "probe".)
9174
9175   *** Alerts ***
9176       The Alert section lets you setup loss and RTT pattern detectors. After
9177       each round of polling, SmokePing will examine its data and determine
9178       which detectors match. Detectors are enabled per target and get
9179       inherited by the targets children.
9180
9181       Detectors are not just simple thresholds which go off at first sight of
9182       a problem. They are configurable to detect special loss or RTT
9183       patterns. They let you look at a number of past readings to make a more
9184       educated decision on what kind of alert should be sent, or if an alert
9185       should be sent at all.
9186
9187       The patterns are numbers prefixed with an operator indicating the type
9188       of comparison required for a match.
9189
9190       The following RTT pattern detects if a target's RTT goes from
9191       constantly below 10ms to constantly 100ms and more:
9192
9193        old ------------------------------> new
9194        <10,<10,<10,<10,<10,>10,>100,>100,>100
9195
9196       Loss patterns work in a similar way, except that the loss is defined as
9197       the percentage the total number of received packets is of the total
9198       number of packets sent.
9199
9200        old ------------------------------> new
9201        ==0%,==0%,==0%,==0%,>20%,>20%,>=20%
9202
9203       Apart from normal numbers, patterns can also contain the values * which
9204       is true for all values regardless of the operator. And U which is true
9205       for unknown data together with the == and =! operators.
9206
9207       Detectors normally act on state changes. This has the disadvantage,
9208       that they will fail to find conditions which were already present when
9209       launching smokeping. For this it is possible to write detectors that
9210       begin with the special value ==S it is inserted whenever smokeping is
9211       started up.
9212
9213       You can write
9214
9215        ==S,>20%,>20%
9216
9217       to detect lines that have been losing more than 20% of the packets for
9218       two periods after startup.
9219
9220       If you want to make sure a value within a certain range you can use two
9221       conditions in one element
9222
9223        >45%<=55%
9224
9225       Sometimes it may be that conditions occur at irregular intervals. But
9226       still you only want to throw an alert if they occur several times
9227       within a certain amount of times. The operator *X* will ignore up to X
9228       values and still let the pattern match:
9229
9230         >10%,*10*,>10%
9231
9232       will fire if more than 10% of the packets have been lost at least twice
9233       over the last 10 samples.
9234
9235       A complete example
9236
9237        *** Alerts ***
9238        to = admin@company.xy,peter@home.xy
9239        from = smokealert@company.xy
9240
9241        +lossdetect
9242        type = loss
9243        # in percent
9244        pattern = ==0%,==0%,==0%,==0%,>20%,>20%,>20%
9245        comment = suddenly there is packet loss
9246
9247        +miniloss
9248        type = loss
9249        # in percent
9250        pattern = >0%,*12*,>0%,*12*,>0%
9251        comment = detected loss 3 times over the last two hours
9252
9253        +rttdetect
9254        type = rtt
9255        # in milliseconds
9256        pattern = <10,<10,<10,<10,<10,<100,>100,>100,>100
9257        comment = routing messed up again ?
9258
9259        +rttbadstart
9260        type = rtt
9261        # in milliseconds
9262        pattern = ==S,==U
9263        comment = offline at startup
9264
9265       The following variables can be set in this section:
9266
9267       to (mandatory setting)
9268           Either an email address to send alerts to, or the name of a program
9269           to execute when an alert matches. To call a program, the first
9270           character of the to value must be a pipe symbol "|". The program
9271           will the be called whenever an alert matches, using the following 5
9272           arguments (except if edgetrigger is 'yes'; see below): name-of-
9273           alert, target, loss-pattern, rtt-pattern, hostname.  You can also
9274           provide a comma separated list of addresses and programs.
9275
9276       from (mandatory setting)
9277           who should alerts appear to be coming from ?
9278
9279       edgetrigger
9280           The alert notifications and/or the programs executed are normally
9281           triggered every time the alert matches. If this variable is set to
9282           'yes', they will be triggered only when the alert's state is
9283           changed, ie. when it's raised and when it's cleared.  Subsequent
9284           matches of the same alert will thus not trigger a notification.
9285
9286           When this variable is set to 'yes', a notification program (see the
9287           to variable documentation above) will get a sixth argument, raise,
9288           which has the value 1 if the alert was just raised and 0 if it was
9289           cleared.
9290
9291           Default value: edgetrigger = no
9292
9293       mailtemplate
9294           When sending out mails for alerts, smokeping normally uses an
9295           internally generated message. With the mailtemplate you can specify
9296           a filename for a custom template. The file should contain a
9297           'Subject: ...' line. The rest of the file should contain text. The
9298           all <##keyword##> type strings will get replaced in the template
9299           before it is sent out. the following keywords are supported:
9300
9301            <##ALERT##>    - target name
9302            <##WHAT##>     - status (is active, was raised, was cleared)
9303            <##LINE##>     - path in the config tree
9304            <##URL##>      - webpage for graph
9305            <##STAMP##>    - date and time
9306            <##PAT##>      - pattern that matched the alert
9307            <##LOSS##>     - loss history
9308            <##RTT##>      - rtt history
9309            <##COMMENT##>  - comment
9310
9311       The following sections are valid on level 1:
9312
9313       +/[^\s,]+/
9314           The following variables can be set in this section:
9315
9316           type (mandatory setting)
9317               Currently the pattern types rtt and loss and matcher are known.
9318
9319               Matchers are plugin modules that extend the alert conditions.
9320               Known matchers are Avgratio, CheckLatency, CheckLoss, ExpLoss,
9321               Median, Medratio.
9322
9323               See the documentation of the corresponding matcher module (eg.
9324               Smokeping::matchers::Avgratio) for instructions on configuring
9325               it.
9326
9327           pattern (mandatory setting)
9328               a comma separated list of comparison operators and numbers. rtt
9329               patterns are in milliseconds, loss patterns are in percents
9330
9331           comment (mandatory setting)
9332           to  Similar to the "to" parameter on the top-level except that  it
9333               will only be used IN ADDITION to the value of the toplevel
9334               parameter. Same rules apply.
9335
9336           edgetrigger
9337               This variable inherits its value from the parent section if
9338               nothing is specified here.
9339
9340               Default value: edgetrigger = no
9341
9342           mailtemplate
9343               This variable inherits its value from the parent section if
9344               nothing is specified here.
9345
9346           priority
9347               if multiple alerts 'match' only the one with the highest
9348               priority (lowest number) will cause and alert to be sent.
9349               Alerts without priority will be sent in any case.
9350
9351   *** Slaves ***
9352       Your smokeping can remote control other somkeping instances running in
9353       slave mode on different hosts. Use this section to tell your master
9354       smokeping about the slaves you are going to use.
9355
9356       The following variables can be set in this section:
9357
9358       secrets (mandatory setting)
9359           The slave secrets file contines one line per slave with the name of
9360           the slave followed by a colon and the secret:
9361
9362            slave1:secret1
9363            slave2:secret2
9364            ...
9365
9366           Note that these secrets combined with a man-in-the-middle attack
9367           effectively give shell access to the corresponding slaves (see
9368           smokeping_master_slave), so the file should be appropriately
9369           protected and the secrets should not be easily crackable.
9370
9371       The following sections are valid on level 1:
9372
9373       +/[-_0-9a-zA-Z.]+/
9374           Define some basic properties for the slave.
9375
9376           The following variables can be set in this section:
9377
9378           display_name (mandatory setting)
9379               Name of the Slave host.
9380
9381           location
9382               Where is the slave located.
9383
9384           color (mandatory setting)
9385               Color for the slave in graphs where input from multiple hosts
9386               is presented.
9387
9388           The following sections are valid on level 2:
9389
9390           ++override
9391               If part of the configuration information must be overwritten to
9392               match the settings of the you can specify this in this section.
9393               A setting is overwritten by giveing the full path of the
9394               configuration variable. If you have this configuration in the
9395               Probes section:
9396
9397                *** Probes ***
9398                +FPing
9399                binary = /usr/sepp/bin/fping
9400
9401               You can override it for a particular slave like this:
9402
9403                ++override
9404                Probes.FPing.binary = /usr/bin/fping
9405
9406               The following variables can be set in this section:
9407
9408               /\S+/
9409
9411       Copyright (c) 2001-2007 by Tobias Oetiker. All right reserved.
9412

LICENSE

9414       This program is free software; you can redistribute it and/or modify it
9415       under the terms of the GNU General Public License as published by the
9416       Free Software Foundation; either version 2 of the License, or (at your
9417       option) any later version.
9418
9419       This program is distributed in the hope that it will be useful, but
9420       WITHOUT ANY WARRANTY; without even the implied warranty of
9421       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
9422       General Public License for more details.
9423
9424       You should have received a copy of the GNU General Public License along
9425       with this program; if not, write to the Free Software Foundation, Inc.,
9426       675 Mass Ave, Cambridge, MA 02139, USA.
9427

AUTHOR

9429       Tobias Oetiker <tobi@oetiker.ch>
9430
9431
9432
94332.7.3                             2021-03-11               SMOKEPING_CONFIG(5)
Impressum