Hello!
In .....\PRTG Network Monitor\devicetemplates, I have created a new device Template for our company's Cisco devices. I have created a pingsensor and a snmpciscosystemhealth. Additionally, I want to add the snmptraffic sensor. By default, it add's all the ports as sensors to my device, but I only want to add the Stacking Ports and the ports with the description "Uplink ...". Is there a way, to modify the template?
My Code:
<?xml version="1.0" encoding="UTF-8"?> <devicetemplate id="custom" name="Cisco-Test-Template" priority="1"> <check id="ping" meta="ping"/> <create id="pingsensor" kind="ping" requires="ping" displayname="Ping"/> <check id="snmp" meta="snmp" requires="ping"/> <check id="snmpciscosystemhealth" meta="snmpciscosystemhealth" requires="snmp"/> <create id="_snmpciscosystemhealth" kind="snmpciscosystemhealth" requires="snmpciscosystemhealth" meta="snmpciscosystemhealth"/> <create id="snmptraffic" kind="snmptraffic" meta="portscan" requires="snmp"> <createdata> ??? </createdata> </create> </devicetemplate>
Add comment