-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SNMP "smiv2" yang extension doesn't work on augmented nodes #366
Comments
Re-created.
That is in the range |
Fixed snmp-get for augmented tables. |
getnext + walk should also work, and regression tests added. |
Thanks a lot! We will check it soon. |
I use IF-MIB.yang in order to add support for SNMP ifTable. All nodes inside IF-MIB.yang are already properly tagged with smiv2:oid, smiv2:max-access yang extension tags.
SNMP ifTable container (in IF-MIB.yang) contains ifSpeed leaf which holds current bandwidth in bits per second. Also, ifHighSpeed leaf is added as yang extension to hold bandwidth bigger than 4,294,967,295 bit/sec. So in my case, I filled both nodes as stated in the description and checked that they (base ifSpeed and augmented ifHighSpeed) held proper values through NETCONF. After, I tried to get the values with help of SNMP by using snmpwalk CLI tool. Unfortunately, snmpwalk's output consisted of values from the base ifTable container (i.e. ifSpeed) and none of the augmented nodes (i.e. mentioned earlier ifHighSpeed augmented node).
This issue was reproduced at latest clixon master revision 5f38b50.
The text was updated successfully, but these errors were encountered: