SNMP Bugs in v1.4.9
The web interface for device configuration restricts the length of SNMP Contact and SNMP Location to 26 characters.
<input data-bind="value: SNMP_Server_Contact" class="" id="SNMP_Server_Contact" placeholder="Contact" maxlength="26" autocomplete="off" type="text">
<input data-bind="value: SNMP_Server_Location" class="" id="SNMP_Server_Location" placeholder="Location" maxlength="26" autocomplete="off" type="text">
In addition to breaking our internal conventions by not allowing full email addresses or location strings, this doesn't comply with MIB-II as defined in RFC1213
https://tools.ietf.org/html/rfc1213 which has specified max length of 255 characters on these attributes for the last 27 years.
Can you please let me know if this is a limitation of the web form, a limitation of your implementation of MIB-II, or both? If it's just the web form I will alter the form locally so I can get on with making things work until you issue a patch.
Thanks.