lextudio / sharpsnmplib

Sharp SNMP Library- Open Source SNMP for .NET
https://sharpsnmp.com
MIT License
356 stars 152 forks source link

Version v2 & GetTable #233

Closed lextudio-support closed 3 hours ago

lextudio-support commented 3 hours ago

manager.GetTable(VersionCode.V2, ....) errors with "only SNMP v1 or v2 is supported"

Original Reported Date: 2008-07-21T14:29:52.23-07:00 Planned For Release: TwinTower (1.5) Original CodePlex ID: 2763

lextudio-support commented 3 hours ago

Copied from CodePlex without authors:

Change

        if (version == VersionCode.V2)
        {
            throw new ArgumentException("only SNMP v1 or v2 is supported");
        }

to

        if (version == VersionCode.V3)
        {
            throw new ArgumentException("only SNMP v1 or v2 is supported");
        }

can fix this issue. The patch will be merged into repository in a later build.

Original Posted Date: 2008-07-27T20:13:35.68-07:00

lextudio-support commented 3 hours ago

Copied from CodePlex without authors:

Resolved with changeset 14753.

Original Posted Date: 2008-07-28T04:32:50.967-07:00

lextudio-support commented 3 hours ago

Original Closed Date: 2008-07-28T04:32:50.967-07:00