'Issue doing a GET with SNMPv3 using pySNMP in 3.7

I'm trying to learn how to use pySNMP and I'm trying to simply do a get using encryption with SNMPv3. Here's the code.

iterator = getCmd(
    SnmpEngine(),
    UsmUserData(
        userName='jdLaptop',      #username
        authKey= 'aep123',         #authentication password
        privKey='aep123',         #encryption password
        authProtocol= usmHMACMD5AuthProtocol,
        privProtocol= usmAesCfb128Protocol,
    ),
    UdpTransportTarget(('10.98.240.100', 161)),
    ContextData(),
    ObjectType(ObjectIdentity('SNMPv2-MIB', 'sysName', 0))
)

#this print code is stolen from the documentation
errorIndication, errorStatus, errorIndex, varBinds = next(iterator)

if errorIndication:
    print(errorIndication)

elif errorStatus:
    print('%s at %s' % (errorStatus.prettyPrint(),
                        errorIndex and varBinds[int(errorIndex) - 1][0] or '?'))

else:
    for varBind in varBinds:
        print(' = '.join([x.prettyPrint() for x in varBind]))

Any clue what the issue is here? Most of this code is directly copied from the (terrible) documentation.

I get several errors, including a value constraint error on the first password and a Wrong Value error.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source