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

LICENSE

9345       This program is free software; you can redistribute it and/or modify it
9346       under the terms of the GNU General Public License as published by the
9347       Free Software Foundation; either version 2 of the License, or (at your
9348       option) any later version.
9349
9350       This program is distributed in the hope that it will be useful, but
9351       WITHOUT ANY WARRANTY; without even the implied warranty of
9352       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
9353       General Public License for more details.
9354
9355       You should have received a copy of the GNU General Public License along
9356       with this program; if not, write to the Free Software Foundation, Inc.,
9357       675 Mass Ave, Cambridge, MA 02139, USA.
9358

AUTHOR

9360       Tobias Oetiker <tobi@oetiker.ch>
9361
9362
9363
93642.7.2                             2019-07-26               SMOKEPING_CONFIG(5)
Impressum