# DHCP probe
# "rttMonEchoAdminSourceAddress" is important

# loopback address is recommended
$ioshost="15.25.21.26";
$community = "secret";
$entry=750;

@myparms=(
   # next 2 lines define the entry type
   "rttMonCtrlAdminRttType",		'integer',	11,
   "rttMonEchoAdminProtocol",		'integer',	29,
   "rttMonCtrlAdminOwner",		'octetstring',  "MRTG",

   # in ms
   "rttMonCtrlAdminTimeout",		'integer',	5000,
   # in s, timeout must be < frequency
   "rttMonCtrlAdminFrequency",		'integer',	14,
   # show this rtr entry in "show running" ? 1=true; 2=false
   "rttMonCtrlAdminNvgen",		'integer',	2,

   # the source address determines on which interface the router tries to get a DHCP address
   # this must be a valid address of $ioshost
   "rttMonEchoAdminSourceAddress",	'octetstring',	ciscoRttMonLib::EncodeAddress("198.22.11.2"),

   # 20 is max
   "rttMonHistoryAdminNumBuckets",    	'integer',      20,
   "rttMonHistoryAdminNumLives",      	'integer',      1,
   # none(1), all(2), overThreshold(3), failures(4)
   "rttMonHistoryAdminFilter",        	'integer',      2,

   # 1 is "now"
   "rttMonScheduleAdminRttStartTime",	'timeticks',	1,
   # life and ageout in secs
   "rttMonScheduleAdminRttLife",	'integer',	3600,
   "rttMonScheduleAdminConceptRowAgeout",'integer', 	300
);

