Author: nextgens
Date: 2006-09-02 17:42:43 +0000 (Sat, 02 Sep 2006)
New Revision: 10365
Modified:
trunk/plugins/SNMP/SNMP.java
Log:
fix the SNMP plugin
Modified: trunk/plugins/SNMP/SNMP.java
===================================================================
--- trunk/plugins/SNMP/SNMP.java 2006-09-02 17:37:13 UTC (rev 10364)
+++ trunk/plugins/SNMP/SNMP.java 2006-09-02 17:42:43 UTC (rev 10365)
@@ -35,8 +35,8 @@
try{
Config c=pr.getNode().config;
SubConfig sc=new SubConfig("plugins.snmp",c);
- sc.register("port", 4000,2, true, "SNMP port number",
"SNMP port number", new SNMPPortNumberCallback());
- sc.register("bindto", "127.0.0.1", 2, true, "Ip address
to bind to", "Ip address to bind the SNMP server to", new SNMPBindtoCallback());
+ sc.register("port", 4000,2, true, false, "SNMP port
number", "SNMP port number", new SNMPPortNumberCallback());
+ sc.register("bindto", "127.0.0.1", 2, true, false, "Ip
address to bind to", "Ip address to bind the SNMP server to", new
SNMPBindtoCallback());
bindto=sc.getString("bindto");
port=sc.getInt("port");