Giter VIP home page Giter VIP logo

Comments (2)

lextm avatar lextm commented on May 29, 2024

You can force pysnmp to print out what happens under the hood,

from pysnmp import debug

# use specific flags or 'all' for full debugging
debug.setLogger(debug.Debug('all'))

from pysnmp.

gmunumel avatar gmunumel commented on May 29, 2024

@lextm

There are some successful calls until the one with the exception at the bottom:

2023-04-28 06:12:27,095 pysnmp: running pysnmp version 4.4.12
2023-04-28 06:12:27,095 pysnmp: debug category 'all' enabled

2023-04-28 06:12:43,687 pysnmp: __indexMib: rebuilt
2023-04-28 06:12:43,687 pysnmp: flipFlopFsm: input var-binds (((1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49), 'destroy'),)
2023-04-28 06:12:43,687 pysnmp: flipFlopFsm: state start status ok -> fsmState writeTest
2023-04-28 06:12:43,688 pysnmp: RowStatus state change from <RowStatus schema object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [destroy]> produced new state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]>, error indication <class 'pysnmp.smi.error.RowDestructionWanted'>
2023-04-28 06:12:43,689 pysnmp: setValue: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='destroy' failed with traceback ['Traceback (most recent call last):\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 957, in writeTest\n    MibScalar.writeTest(self, name, val, idx, acInfo)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 633, in writeTest\n    MibTree.writeTest(self, name, val, idx, acInfo)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 531, in writeTest\n    node = self.getBranch(name, idx)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 844, in getBranch\n    raise error.NoSuchInstanceError(name=name, idx=idx)\n', "pysnmp.smi.error.NoSuchInstanceError: NoSuchInstanceError({'name': (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49), 'idx': 0})\n", '\nDuring handling of the above exception, another exception occurred:\n\n', 'Traceback (most recent call last):\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 659, in setValue\n    return self.syntax.setValue(value)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-TC.py", line 513, in setValue\n    raise excValue\n', "pysnmp.smi.error.RowDestructionWanted: RowDestructionWanted({'msg': 'Exception at row state transition from <RowStatus schema object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [destroy]> yields state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]> and exception', 'syntax': <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]>})\n"]
2023-04-28 06:12:43,689 pysnmp: RowCreationWanted({}) flagged by (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='destroy', exception None
2023-04-28 06:12:43,690 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 1) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) index value <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [s-373658917810689361]>
2023-04-28 06:12:43,691 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 2) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,691 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 3) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,691 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 4) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,691 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 5) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,692 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 6) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,692 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 7) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,692 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='destroy'
2023-04-28 06:12:43,692 pysnmp: flipFlopFsm: state writeTest status ok -> fsmState writeCommit
2023-04-28 06:12:43,693 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 1) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) index value <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [s-373658917810689361]>
2023-04-28 06:12:43,693 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 2) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,694 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 3) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,694 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 4) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,694 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 5) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,694 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 6) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,694 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 7) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,695 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='destroy'
2023-04-28 06:12:43,695 pysnmp: flipFlopFsm: state writeCommit status ok -> fsmState writeCleanup
2023-04-28 06:12:43,695 pysnmp: RowCreationWanted({}) dropped by (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='destroy'
2023-04-28 06:12:43,696 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 1) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) index value <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [s-373658917810689361]>
2023-04-28 06:12:43,696 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 2) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,696 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 3) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,697 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 4) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,697 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 5) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,697 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 6) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,697 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 7) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,698 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='destroy'
2023-04-28 06:12:43,698 pysnmp: flipFlopFsm: state writeCleanup status ok -> fsmState readTest
2023-04-28 06:12:43,698 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='destroy'
2023-04-28 06:12:43,698 pysnmp: flipFlopFsm: state readTest status ok -> fsmState readGet
2023-04-28 06:12:43,698 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=<RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]>
2023-04-28 06:12:43,699 pysnmp: getValue: returning <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]> for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)
2023-04-28 06:12:43,699 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='destroy'
2023-04-28 06:12:43,699 pysnmp: flipFlopFsm: state readGet status ok -> fsmState stop
2023-04-28 06:12:43,699 pysnmp: flipFlopFsm: input var-binds (((1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 1, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49), 's-373658917810689361'), ((1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 2, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49), 'blackhole'), ((1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 3, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49), 's-373658917810689361'), ((1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 4, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49), <SnmpEngineID value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 5, 32>>, encoding iso-8859-1, payload [0x80004fb805746e...6e65742d39141c88]>), ((1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 5, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49), b''), ((1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 6, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49), b''), ((1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 7, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49), 'nonVolatile'), ((1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49), 'createAndGo'))
2023-04-28 06:12:43,700 pysnmp: flipFlopFsm: state start status ok -> fsmState writeTest
2023-04-28 06:12:43,700 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 1, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='s-373658917810689361'
2023-04-28 06:12:43,700 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 2, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='blackhole'
2023-04-28 06:12:43,701 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 3, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='s-373658917810689361'
2023-04-28 06:12:43,701 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 4, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=<SnmpEngineID value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 5, 32>>, encoding iso-8859-1, payload [0x80004fb805746e...6e65742d39141c88]>
2023-04-28 06:12:43,702 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 5, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=b''
2023-04-28 06:12:43,702 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 6, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=b''
2023-04-28 06:12:43,702 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 7, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='nonVolatile'
2023-04-28 06:12:43,703 pysnmp: RowStatus state change from <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [createAndGo]> produced new state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>, error indication <class 'pysnmp.smi.error.RowCreationWanted'>
2023-04-28 06:12:43,704 pysnmp: setValue: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='createAndGo' failed with traceback ['Traceback (most recent call last):\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 659, in setValue\n    return self.syntax.setValue(value)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-TC.py", line 513, in setValue\n    raise excValue\n', "pysnmp.smi.error.RowCreationWanted: RowCreationWanted({'msg': 'Exception at row state transition from <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [createAndGo]> yields state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]> and exception', 'syntax': <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>})\n"]
2023-04-28 06:12:43,704 pysnmp: RowStatus state change from <RowStatus schema object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [createAndGo]> produced new state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>, error indication <class 'pysnmp.smi.error.RowCreationWanted'>
2023-04-28 06:12:43,706 pysnmp: setValue: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='createAndGo' failed with traceback ['Traceback (most recent call last):\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 957, in writeTest\n    MibScalar.writeTest(self, name, val, idx, acInfo)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 633, in writeTest\n    MibTree.writeTest(self, name, val, idx, acInfo)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 532, in writeTest\n    node.writeTest(name, val, idx, acInfo)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 738, in writeTest\n    raise why\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 732, in writeTest\n    self.__newSyntax = self.setValue(val, name, idx)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 667, in setValue\n    raise exc_v\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 659, in setValue\n    return self.syntax.setValue(value)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-TC.py", line 513, in setValue\n    raise excValue\n', "pysnmp.smi.error.RowCreationWanted: RowCreationWanted({'msg': 'Exception at row state transition from <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [createAndGo]> yields state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]> and exception', 'syntax': <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>})\n", '\nDuring handling of the above exception, another exception occurred:\n\n', 'Traceback (most recent call last):\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 659, in setValue\n    return self.syntax.setValue(value)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-TC.py", line 513, in setValue\n    raise excValue\n', "pysnmp.smi.error.RowCreationWanted: RowCreationWanted({'msg': 'Exception at row state transition from <RowStatus schema object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [createAndGo]> yields state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]> and exception', 'syntax': <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>})\n"]
2023-04-28 06:12:43,706 pysnmp: RowCreationWanted({'msg': 'Exception at row state transition from <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [createAndGo]> yields state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]> and exception', 'syntax': <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>}) flagged by (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='createAndGo', exception None
2023-04-28 06:12:43,707 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 1) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) index value <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [s-373658917810689361]>
2023-04-28 06:12:43,708 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 2) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,708 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 3) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,708 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 4) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,708 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 5) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,708 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 6) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,709 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 7) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,709 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='createAndGo'
2023-04-28 06:12:43,709 pysnmp: flipFlopFsm: state writeTest status ok -> fsmState writeCommit
2023-04-28 06:12:43,710 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 1, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='s-373658917810689361'
2023-04-28 06:12:43,710 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 2, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='blackhole'
2023-04-28 06:12:43,710 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 3, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='s-373658917810689361'
2023-04-28 06:12:43,710 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 4, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=<SnmpEngineID value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 5, 32>>, encoding iso-8859-1, payload [0x80004fb805746e...6e65742d39141c88]>
2023-04-28 06:12:43,710 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 5, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=b''
2023-04-28 06:12:43,711 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 6, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=b''
2023-04-28 06:12:43,711 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 7, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='nonVolatile'
2023-04-28 06:12:43,712 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 1) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) index value <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [s-373658917810689361]>
2023-04-28 06:12:43,712 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 2) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,712 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 3) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,713 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 4) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,714 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 5) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,714 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 6) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,715 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 7) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,716 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='createAndGo'
2023-04-28 06:12:43,716 pysnmp: flipFlopFsm: state writeCommit status ok -> fsmState writeCleanup
2023-04-28 06:12:43,717 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 1, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='s-373658917810689361'
2023-04-28 06:12:43,717 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 1, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='s-373658917810689361'
2023-04-28 06:12:43,718 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 2, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='blackhole'
2023-04-28 06:12:43,718 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 2, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='blackhole'
2023-04-28 06:12:43,718 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 3, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='s-373658917810689361'
2023-04-28 06:12:43,719 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 3, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='s-373658917810689361'
2023-04-28 06:12:43,720 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 4, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=<SnmpEngineID value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 5, 32>>, encoding iso-8859-1, payload [0x80004fb805746e...6e65742d39141c88]>
2023-04-28 06:12:43,720 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 4, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=<SnmpEngineID value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 5, 32>>, encoding iso-8859-1, payload [0x80004fb805746e...6e65742d39141c88]>
2023-04-28 06:12:43,721 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 5, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=b''
2023-04-28 06:12:43,721 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 5, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=b''
2023-04-28 06:12:43,722 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 6, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=b''
2023-04-28 06:12:43,722 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 6, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=b''
2023-04-28 06:12:43,723 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 7, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='nonVolatile'
2023-04-28 06:12:43,723 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 7, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='nonVolatile'
2023-04-28 06:12:43,723 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='createAndGo'
2023-04-28 06:12:43,724 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='createAndGo'
2023-04-28 06:12:43,725 pysnmp: RowCreationWanted({'msg': 'Exception at row state transition from <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [createAndGo]> yields state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]> and exception', 'syntax': <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>}) dropped by (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='createAndGo'
2023-04-28 06:12:43,726 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 1, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=<SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [s-373658917810689361]>
2023-04-28 06:12:43,727 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 1, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=<SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [s-373658917810689361]>
2023-04-28 06:12:43,728 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 1) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) index value <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [s-373658917810689361]>
2023-04-28 06:12:43,728 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 2, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=None
2023-04-28 06:12:43,729 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 2) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,730 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 3, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=None
2023-04-28 06:12:43,730 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 3) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,730 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 4, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=None
2023-04-28 06:12:43,731 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 4) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,731 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 5, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=None
2023-04-28 06:12:43,732 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 5) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,732 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 6, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=None
2023-04-28 06:12:43,732 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 6) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,733 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 7, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=None
2023-04-28 06:12:43,733 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 7) suffix (115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49) value None
2023-04-28 06:12:43,734 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='createAndGo'
2023-04-28 06:12:43,735 pysnmp: flipFlopFsm: state writeCleanup status ok -> fsmState readTest
2023-04-28 06:12:43,735 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 1, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='s-373658917810689361'
2023-04-28 06:12:43,736 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 2, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='blackhole'
2023-04-28 06:12:43,736 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 3, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='s-373658917810689361'
2023-04-28 06:12:43,737 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 4, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=<SnmpEngineID value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 5, 32>>, encoding iso-8859-1, payload [0x80004fb805746e...6e65742d39141c88]>
2023-04-28 06:12:43,738 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 5, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=b''
2023-04-28 06:12:43,738 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 6, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=b''
2023-04-28 06:12:43,738 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 7, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='nonVolatile'
2023-04-28 06:12:43,739 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='createAndGo'
2023-04-28 06:12:43,739 pysnmp: flipFlopFsm: state readTest status ok -> fsmState readGet
2023-04-28 06:12:43,740 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 1, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=<SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [s-373658917810689361]>
2023-04-28 06:12:43,741 pysnmp: getValue: returning <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [s-373658917810689361]> for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 1, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)
2023-04-28 06:12:43,741 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 1, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='s-373658917810689361'
2023-04-28 06:12:43,742 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 2, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=<OctetString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>>, encoding iso-8859-1, payload [blackhole]>
2023-04-28 06:12:43,743 pysnmp: getValue: returning <OctetString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>>, encoding iso-8859-1, payload [blackhole]> for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 2, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)
2023-04-28 06:12:43,743 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 2, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='blackhole'
2023-04-28 06:12:43,744 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 3, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=<SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [s-373658917810689361]>
2023-04-28 06:12:43,745 pysnmp: getValue: returning <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [s-373658917810689361]> for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 3, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)
2023-04-28 06:12:43,746 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 3, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='s-373658917810689361'
2023-04-28 06:12:43,746 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 4, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=<SnmpEngineID value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 5, 32>>, encoding iso-8859-1, payload [0x80004fb805746e...6e65742d39141c88]>
2023-04-28 06:12:43,746 pysnmp: getValue: returning <SnmpEngineID value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 5, 32>>, encoding iso-8859-1, payload [0x80004fb805746e...6e65742d39141c88]> for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 4, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)
2023-04-28 06:12:43,747 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 4, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=<SnmpEngineID value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 5, 32>>, encoding iso-8859-1, payload [0x80004fb805746e...6e65742d39141c88]>
2023-04-28 06:12:43,747 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 5, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=<SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 0, 32>>, encoding utf-8, payload []>
2023-04-28 06:12:43,748 pysnmp: getValue: returning <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 0, 32>>, encoding utf-8, payload []> for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 5, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)
2023-04-28 06:12:43,749 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 5, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=b''
2023-04-28 06:12:43,750 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 6, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=<SnmpTagValue value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>>, encoding utf-8, payload []>
2023-04-28 06:12:43,750 pysnmp: getValue: returning <SnmpTagValue value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>>, encoding utf-8, payload []> for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 6, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)
2023-04-28 06:12:43,750 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 6, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=b''
2023-04-28 06:12:43,751 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 7, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=<StorageType value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 1, 2, 3, 4, 5>>, namedValues <NamedValues object, enums other=1, volatile=2, nonVolatile=3, permanent=4, readOnly=5>, payload [nonVolatile]>
2023-04-28 06:12:43,751 pysnmp: getValue: returning <StorageType value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 1, 2, 3, 4, 5>>, namedValues <NamedValues object, enums other=1, volatile=2, nonVolatile=3, permanent=4, readOnly=5>, payload [nonVolatile]> for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 7, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)
2023-04-28 06:12:43,751 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 7, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='nonVolatile'
2023-04-28 06:12:43,752 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)=<RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>
2023-04-28 06:12:43,752 pysnmp: getValue: returning <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]> for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)
2023-04-28 06:12:43,752 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 18, 1, 1, 1, 8, 115, 45, 51, 55, 51, 54, 53, 56, 57, 49, 55, 56, 49, 48, 54, 56, 57, 51, 54, 49)='createAndGo'
2023-04-28 06:12:43,752 pysnmp: flipFlopFsm: state readGet status ok -> fsmState stop
2023-04-28 06:12:43,753 pysnmp: addV1System: added new table entry communityIndex "s-373658917810689361" communityName "blackhole" securityName "s-373658917810689361" contextEngineId "O¸tns2253.telenet-9" contextName "b''" transportTag "b''"
2023-04-28 06:12:43,753 pysnmp: flipFlopFsm: input var-binds (((1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52), 'destroy'),)
2023-04-28 06:12:43,753 pysnmp: flipFlopFsm: state start status ok -> fsmState writeTest
2023-04-28 06:12:43,754 pysnmp: RowStatus state change from <RowStatus schema object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [destroy]> produced new state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]>, error indication <class 'pysnmp.smi.error.RowDestructionWanted'>
2023-04-28 06:12:43,756 pysnmp: setValue: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='destroy' failed with traceback ['Traceback (most recent call last):\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 957, in writeTest\n    MibScalar.writeTest(self, name, val, idx, acInfo)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 633, in writeTest\n    MibTree.writeTest(self, name, val, idx, acInfo)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 531, in writeTest\n    node = self.getBranch(name, idx)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 844, in getBranch\n    raise error.NoSuchInstanceError(name=name, idx=idx)\n', "pysnmp.smi.error.NoSuchInstanceError: NoSuchInstanceError({'name': (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52), 'idx': 0})\n", '\nDuring handling of the above exception, another exception occurred:\n\n', 'Traceback (most recent call last):\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 659, in setValue\n    return self.syntax.setValue(value)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-TC.py", line 513, in setValue\n    raise excValue\n', "pysnmp.smi.error.RowDestructionWanted: RowDestructionWanted({'msg': 'Exception at row state transition from <RowStatus schema object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [destroy]> yields state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]> and exception', 'syntax': <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]>})\n"]
2023-04-28 06:12:43,756 pysnmp: RowCreationWanted({}) flagged by (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='destroy', exception None
2023-04-28 06:12:43,759 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 1) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) index value <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [p3165221624]>
2023-04-28 06:12:43,759 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 2) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,759 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 3) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,759 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 4) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,760 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 5) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,760 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 6) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,761 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='destroy'
2023-04-28 06:12:43,762 pysnmp: flipFlopFsm: state writeTest status ok -> fsmState writeCommit
2023-04-28 06:12:43,763 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 1) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) index value <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [p3165221624]>
2023-04-28 06:12:43,763 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 2) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,763 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 3) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,763 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 4) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,765 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 5) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,765 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 6) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,770 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='destroy'
2023-04-28 06:12:43,770 pysnmp: flipFlopFsm: state writeCommit status ok -> fsmState writeCleanup
2023-04-28 06:12:43,771 pysnmp: RowCreationWanted({}) dropped by (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='destroy'
2023-04-28 06:12:43,772 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 1) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) index value <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [p3165221624]>
2023-04-28 06:12:43,772 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 2) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,772 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 3) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,772 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 4) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,772 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 5) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,773 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 6) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,773 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='destroy'
2023-04-28 06:12:43,774 pysnmp: flipFlopFsm: state writeCleanup status ok -> fsmState readTest
2023-04-28 06:12:43,774 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='destroy'
2023-04-28 06:12:43,775 pysnmp: flipFlopFsm: state readTest status ok -> fsmState readGet
2023-04-28 06:12:43,775 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=<RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]>
2023-04-28 06:12:43,775 pysnmp: getValue: returning <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]> for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)
2023-04-28 06:12:43,775 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='destroy'
2023-04-28 06:12:43,775 pysnmp: flipFlopFsm: state readGet status ok -> fsmState stop
2023-04-28 06:12:43,776 pysnmp: flipFlopFsm: input var-binds (((1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 1, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52), 'p3165221624'), ((1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 2, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52), 1), ((1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 3, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52), 2), ((1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 4, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52), 's-373658917810689361'), ((1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 5, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52), 'noAuthNoPriv'), ((1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52), 'createAndGo'))
2023-04-28 06:12:43,776 pysnmp: flipFlopFsm: state start status ok -> fsmState writeTest
2023-04-28 06:12:43,776 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 1, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='p3165221624'
2023-04-28 06:12:43,777 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 2, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=1
2023-04-28 06:12:43,777 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 3, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=2
2023-04-28 06:12:43,778 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 4, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='s-373658917810689361'
2023-04-28 06:12:43,778 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 5, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='noAuthNoPriv'
2023-04-28 06:12:43,779 pysnmp: RowStatus state change from <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [createAndGo]> produced new state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>, error indication <class 'pysnmp.smi.error.RowCreationWanted'>
2023-04-28 06:12:43,780 pysnmp: setValue: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='createAndGo' failed with traceback ['Traceback (most recent call last):\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 659, in setValue\n    return self.syntax.setValue(value)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-TC.py", line 513, in setValue\n    raise excValue\n', "pysnmp.smi.error.RowCreationWanted: RowCreationWanted({'msg': 'Exception at row state transition from <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [createAndGo]> yields state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]> and exception', 'syntax': <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>})\n"]
2023-04-28 06:12:43,781 pysnmp: RowStatus state change from <RowStatus schema object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [createAndGo]> produced new state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>, error indication <class 'pysnmp.smi.error.RowCreationWanted'>
2023-04-28 06:12:43,782 pysnmp: setValue: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='createAndGo' failed with traceback ['Traceback (most recent call last):\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 957, in writeTest\n    MibScalar.writeTest(self, name, val, idx, acInfo)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 633, in writeTest\n    MibTree.writeTest(self, name, val, idx, acInfo)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 532, in writeTest\n    node.writeTest(name, val, idx, acInfo)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 738, in writeTest\n    raise why\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 732, in writeTest\n    self.__newSyntax = self.setValue(val, name, idx)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 667, in setValue\n    raise exc_v\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 659, in setValue\n    return self.syntax.setValue(value)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-TC.py", line 513, in setValue\n    raise excValue\n', "pysnmp.smi.error.RowCreationWanted: RowCreationWanted({'msg': 'Exception at row state transition from <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [createAndGo]> yields state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]> and exception', 'syntax': <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>})\n", '\nDuring handling of the above exception, another exception occurred:\n\n', 'Traceback (most recent call last):\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 659, in setValue\n    return self.syntax.setValue(value)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-TC.py", line 513, in setValue\n    raise excValue\n', "pysnmp.smi.error.RowCreationWanted: RowCreationWanted({'msg': 'Exception at row state transition from <RowStatus schema object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [createAndGo]> yields state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]> and exception', 'syntax': <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>})\n"]
2023-04-28 06:12:43,782 pysnmp: RowCreationWanted({'msg': 'Exception at row state transition from <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [createAndGo]> yields state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]> and exception', 'syntax': <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>}) flagged by (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='createAndGo', exception None
2023-04-28 06:12:43,784 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 1) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) index value <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [p3165221624]>
2023-04-28 06:12:43,784 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 2) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,784 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 3) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,784 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 4) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,785 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 5) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,785 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 6) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,786 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='createAndGo'
2023-04-28 06:12:43,786 pysnmp: flipFlopFsm: state writeTest status ok -> fsmState writeCommit
2023-04-28 06:12:43,786 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 1, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='p3165221624'
2023-04-28 06:12:43,786 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 2, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=1
2023-04-28 06:12:43,786 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 3, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=2
2023-04-28 06:12:43,787 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 4, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='s-373658917810689361'
2023-04-28 06:12:43,787 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 5, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='noAuthNoPriv'
2023-04-28 06:12:43,788 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 1) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) index value <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [p3165221624]>
2023-04-28 06:12:43,788 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 2) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,788 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 3) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,788 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 4) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,789 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 5) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,789 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 6) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,790 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='createAndGo'
2023-04-28 06:12:43,790 pysnmp: flipFlopFsm: state writeCommit status ok -> fsmState writeCleanup
2023-04-28 06:12:43,790 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 1, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='p3165221624'
2023-04-28 06:12:43,791 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 1, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='p3165221624'
2023-04-28 06:12:43,791 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 2, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=1
2023-04-28 06:12:43,791 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 2, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=1
2023-04-28 06:12:43,791 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 3, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=2
2023-04-28 06:12:43,791 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 3, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=2
2023-04-28 06:12:43,791 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 4, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='s-373658917810689361'
2023-04-28 06:12:43,792 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 4, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='s-373658917810689361'
2023-04-28 06:12:43,792 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 5, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='noAuthNoPriv'
2023-04-28 06:12:43,792 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 5, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='noAuthNoPriv'
2023-04-28 06:12:43,792 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='createAndGo'
2023-04-28 06:12:43,792 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='createAndGo'
2023-04-28 06:12:43,793 pysnmp: RowCreationWanted({'msg': 'Exception at row state transition from <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [createAndGo]> yields state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]> and exception', 'syntax': <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>}) dropped by (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='createAndGo'
2023-04-28 06:12:43,793 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 1, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=<SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [p3165221624]>
2023-04-28 06:12:43,794 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 1, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=<SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [p3165221624]>
2023-04-28 06:12:43,794 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 1) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) index value <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [p3165221624]>
2023-04-28 06:12:43,794 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 2, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=None
2023-04-28 06:12:43,795 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 2) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,796 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 3, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=None
2023-04-28 06:12:43,796 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 3) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,796 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 4, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=None
2023-04-28 06:12:43,796 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 4) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,796 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 5, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=None
2023-04-28 06:12:43,797 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 5) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,797 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 6, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=None
2023-04-28 06:12:43,797 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 6) suffix (112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52) value None
2023-04-28 06:12:43,798 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='createAndGo'
2023-04-28 06:12:43,798 pysnmp: flipFlopFsm: state writeCleanup status ok -> fsmState readTest
2023-04-28 06:12:43,798 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 1, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='p3165221624'
2023-04-28 06:12:43,799 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 2, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=1
2023-04-28 06:12:43,799 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 3, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=2
2023-04-28 06:12:43,799 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 4, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='s-373658917810689361'
2023-04-28 06:12:43,799 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 5, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='noAuthNoPriv'
2023-04-28 06:12:43,800 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='createAndGo'
2023-04-28 06:12:43,800 pysnmp: flipFlopFsm: state readTest status ok -> fsmState readGet
2023-04-28 06:12:43,800 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 1, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=<SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [p3165221624]>
2023-04-28 06:12:43,801 pysnmp: getValue: returning <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [p3165221624]> for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 1, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)
2023-04-28 06:12:43,801 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 1, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='p3165221624'
2023-04-28 06:12:43,801 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 2, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=<SnmpMessageProcessingModel value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <ValueRangeConstraint object, consts 0, 2147483647>>, payload [1]>
2023-04-28 06:12:43,801 pysnmp: getValue: returning <SnmpMessageProcessingModel value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <ValueRangeConstraint object, consts 0, 2147483647>>, payload [1]> for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 2, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)
2023-04-28 06:12:43,802 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 2, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=1
2023-04-28 06:12:43,802 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 3, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=<SnmpSecurityModel value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <ValueRangeConstraint object, consts 0, 2147483647>, <ValueRangeConstraint object, consts 1, 2147483647>>, payload [2]>
2023-04-28 06:12:43,802 pysnmp: getValue: returning <SnmpSecurityModel value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <ValueRangeConstraint object, consts 0, 2147483647>, <ValueRangeConstraint object, consts 1, 2147483647>>, payload [2]> for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 3, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)
2023-04-28 06:12:43,803 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 3, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=2
2023-04-28 06:12:43,803 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 4, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=<SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>>, encoding utf-8, payload [s-373658917810689361]>
2023-04-28 06:12:43,803 pysnmp: getValue: returning <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>>, encoding utf-8, payload [s-373658917810689361]> for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 4, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)
2023-04-28 06:12:43,804 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 4, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='s-373658917810689361'
2023-04-28 06:12:43,804 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 5, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=<SnmpSecurityLevel value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 1, 2, 3>>, namedValues <NamedValues object, enums noAuthNoPriv=1, authNoPriv=2, authPriv=3>, payload [noAuthNoPriv]>
2023-04-28 06:12:43,804 pysnmp: getValue: returning <SnmpSecurityLevel value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 1, 2, 3>>, namedValues <NamedValues object, enums noAuthNoPriv=1, authNoPriv=2, authPriv=3>, payload [noAuthNoPriv]> for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 5, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)
2023-04-28 06:12:43,804 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 5, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='noAuthNoPriv'
2023-04-28 06:12:43,811 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)=<RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>
2023-04-28 06:12:43,811 pysnmp: getValue: returning <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]> for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)
2023-04-28 06:12:43,811 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 3, 1, 7, 112, 51, 49, 54, 53, 50, 50, 49, 54, 50, 52)='createAndGo'
2023-04-28 06:12:43,811 pysnmp: flipFlopFsm: state readGet status ok -> fsmState stop
2023-04-28 06:12:43,812 pysnmp: loadModule: trying PYSNMP-SOURCE-MIB at DirMibSource('/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs')
2023-04-28 06:12:43,812 pysnmp: file PYSNMP-SOURCE-MIB.pyc access error: [Errno 2] No such file or directory: /home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/*
2023-04-28 06:12:43,812 pysnmp: file PYSNMP-SOURCE-MIB.py mtime 1654086978
2023-04-28 06:12:43,813 pysnmp: loadModule: evaluating /home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/PYSNMP-SOURCE-MIB/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/PYSNMP-SOURCE-MIB.py
2023-04-28 06:12:43,813 pysnmp: loadModule: trying PYSNMP-MIB at DirMibSource('/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs')
2023-04-28 06:12:43,813 pysnmp: file PYSNMP-MIB.pyc access error: [Errno 2] No such file or directory: /home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/*
2023-04-28 06:12:43,814 pysnmp: file PYSNMP-MIB.py mtime 1654086978
2023-04-28 06:12:43,814 pysnmp: loadModule: evaluating /home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/PYSNMP-MIB/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/PYSNMP-MIB.py
2023-04-28 06:12:43,815 pysnmp: exportSymbols: symbol PYSNMP-MIB::pysnmpCompliances
2023-04-28 06:12:43,815 pysnmp: exportSymbols: symbol PYSNMP-MIB::pysnmpObjects
2023-04-28 06:12:43,815 pysnmp: exportSymbols: symbol PYSNMP-MIB::pysnmpNotificationPrefix
2023-04-28 06:12:43,815 pysnmp: exportSymbols: symbol PYSNMP-MIB::pysnmpModuleIDs
2023-04-28 06:12:43,815 pysnmp: exportSymbols: symbol PYSNMP-MIB::pysnmpGroups
2023-04-28 06:12:43,816 pysnmp: exportSymbols: symbol PYSNMP-MIB::pysnmpNotificationObjects
2023-04-28 06:12:43,816 pysnmp: exportSymbols: symbol PYSNMP-MIB::pysnmp
2023-04-28 06:12:43,816 pysnmp: exportSymbols: symbol PYSNMP-MIB::pysnmpExperimental
2023-04-28 06:12:43,816 pysnmp: exportSymbols: symbol PYSNMP-MIB::pysnmpNotifications
2023-04-28 06:12:43,816 pysnmp: exportSymbols: symbol PYSNMP-MIB::PYSNMP_MODULE_ID
2023-04-28 06:12:43,816 pysnmp: exportSymbols: symbol PYSNMP-MIB::pysnmpEnumerations
2023-04-28 06:12:43,816 pysnmp: exportSymbols: symbol PYSNMP-MIB::pysnmpDomains
2023-04-28 06:12:43,816 pysnmp: exportSymbols: symbol PYSNMP-MIB::pysnmpAgentOIDs
2023-04-28 06:12:43,817 pysnmp: exportSymbols: symbol PYSNMP-MIB::pysnmpConformance
2023-04-28 06:12:43,817 pysnmp: exportSymbols: symbol PYSNMP-MIB::pysnmpExamples
2023-04-28 06:12:43,817 pysnmp: loadModule: loaded /home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/PYSNMP-MIB/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/PYSNMP-MIB.py
2023-04-28 06:12:43,817 pysnmp: exportSymbols: symbol PYSNMP-SOURCE-MIB::pysnmpSourceMIBConformance
2023-04-28 06:12:43,817 pysnmp: exportSymbols: symbol PYSNMP-SOURCE-MIB::pysnmpSourceMIB
2023-04-28 06:12:43,818 pysnmp: exportSymbols: symbol PYSNMP-SOURCE-MIB::snmpSourceAddrTable
2023-04-28 06:12:43,818 pysnmp: exportSymbols: symbol PYSNMP-SOURCE-MIB::snmpSourceAddrEntry
2023-04-28 06:12:43,818 pysnmp: exportSymbols: symbol PYSNMP-SOURCE-MIB::pysnmpSourceMIBGroups
2023-04-28 06:12:43,818 pysnmp: exportSymbols: symbol PYSNMP-SOURCE-MIB::PYSNMP_MODULE_ID
2023-04-28 06:12:43,818 pysnmp: exportSymbols: symbol PYSNMP-SOURCE-MIB::snmpSourceAddrTAddress
2023-04-28 06:12:43,818 pysnmp: exportSymbols: symbol PYSNMP-SOURCE-MIB::pysnmpSourceMIBObjects
2023-04-28 06:12:43,818 pysnmp: exportSymbols: symbol PYSNMP-SOURCE-MIB::pysnmpSourceMIBCompliances
2023-04-28 06:12:43,819 pysnmp: loadModule: loaded /home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/PYSNMP-SOURCE-MIB/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/PYSNMP-SOURCE-MIB.py
2023-04-28 06:12:43,819 pysnmp: loadModule: trying SNMPv2-TM at DirMibSource('/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs')
2023-04-28 06:12:43,819 pysnmp: file SNMPv2-TM.pyc access error: [Errno 2] No such file or directory: /home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/*
2023-04-28 06:12:43,819 pysnmp: file SNMPv2-TM.py mtime 1654086978
2023-04-28 06:12:43,821 pysnmp: loadModule: evaluating /home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-TM/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-TM.py
2023-04-28 06:12:43,821 pysnmp: exportSymbols: symbol SNMPv2-TM::SnmpNBPAddress
2023-04-28 06:12:43,821 pysnmp: exportSymbols: symbol SNMPv2-TM::rfc1157Domain
2023-04-28 06:12:43,821 pysnmp: exportSymbols: symbol SNMPv2-TM::SnmpIPXAddress
2023-04-28 06:12:43,822 pysnmp: exportSymbols: symbol SNMPv2-TM::snmpUDPDomain
2023-04-28 06:12:43,822 pysnmp: exportSymbols: symbol SNMPv2-TM::snmpCLNSDomain
2023-04-28 06:12:43,822 pysnmp: exportSymbols: symbol SNMPv2-TM::SnmpOSIAddress
2023-04-28 06:12:43,822 pysnmp: exportSymbols: symbol SNMPv2-TM::rfc1157Proxy
2023-04-28 06:12:43,822 pysnmp: exportSymbols: symbol SNMPv2-TM::PYSNMP_MODULE_ID
2023-04-28 06:12:43,822 pysnmp: exportSymbols: symbol SNMPv2-TM::snmpIPXDomain
2023-04-28 06:12:43,822 pysnmp: exportSymbols: symbol SNMPv2-TM::snmpCONSDomain
2023-04-28 06:12:43,823 pysnmp: exportSymbols: symbol SNMPv2-TM::snmpDDPDomain
2023-04-28 06:12:43,823 pysnmp: exportSymbols: symbol SNMPv2-TM::SnmpUDPAddress
2023-04-28 06:12:43,823 pysnmp: exportSymbols: symbol SNMPv2-TM::snmpv2tm
2023-04-28 06:12:43,823 pysnmp: loadModule: loaded /home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-TM/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-TM.py
2023-04-28 06:12:43,826 pysnmp: __indexMib: rebuilt
2023-04-28 06:12:43,826 pysnmp: flipFlopFsm: input var-binds (((1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53), 'destroy'),)
2023-04-28 06:12:43,826 pysnmp: flipFlopFsm: state start status ok -> fsmState writeTest
2023-04-28 06:12:43,827 pysnmp: RowStatus state change from <RowStatus schema object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [destroy]> produced new state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]>, error indication <class 'pysnmp.smi.error.RowDestructionWanted'>
2023-04-28 06:12:43,828 pysnmp: setValue: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='destroy' failed with traceback ['Traceback (most recent call last):\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 957, in writeTest\n    MibScalar.writeTest(self, name, val, idx, acInfo)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 633, in writeTest\n    MibTree.writeTest(self, name, val, idx, acInfo)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 531, in writeTest\n    node = self.getBranch(name, idx)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 844, in getBranch\n    raise error.NoSuchInstanceError(name=name, idx=idx)\n', "pysnmp.smi.error.NoSuchInstanceError: NoSuchInstanceError({'name': (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53), 'idx': 0})\n", '\nDuring handling of the above exception, another exception occurred:\n\n', 'Traceback (most recent call last):\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 659, in setValue\n    return self.syntax.setValue(value)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-TC.py", line 513, in setValue\n    raise excValue\n', "pysnmp.smi.error.RowDestructionWanted: RowDestructionWanted({'msg': 'Exception at row state transition from <RowStatus schema object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [destroy]> yields state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]> and exception', 'syntax': <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]>})\n"]
2023-04-28 06:12:43,829 pysnmp: RowCreationWanted({}) flagged by (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='destroy', exception None
2023-04-28 06:12:43,830 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 1) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) index value <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [a3165221625]>
2023-04-28 06:12:43,830 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 2) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,830 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 3) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,830 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 4) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,831 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 5) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,831 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 6) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,831 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 7) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,831 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 8) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,832 pysnmp: announceManagementEvent createTest to MibTableRow((1, 3, 6, 1, 6, 3, 18, 1, 2, 1), None)
2023-04-28 06:12:43,832 pysnmp: receiveManagementEvent createTest for suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)
2023-04-28 06:12:43,832 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 18, 1, 2, 1, 1) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,833 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 18, 1, 2, 1, 2) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,833 pysnmp: announceManagementEvent createTest to MibTableRow((1, 3, 6, 1, 4, 1, 20408, 3, 1, 8, 1, 1, 1), None)
2023-04-28 06:12:43,833 pysnmp: receiveManagementEvent createTest for suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)
2023-04-28 06:12:43,834 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 4, 1, 20408, 3, 1, 8, 1, 1, 1, 1) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,834 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='destroy'
2023-04-28 06:12:43,834 pysnmp: flipFlopFsm: state writeTest status ok -> fsmState writeCommit
2023-04-28 06:12:43,835 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 1) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) index value <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [a3165221625]>
2023-04-28 06:12:43,835 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 2) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,835 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 3) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,835 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 4) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,835 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 5) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,836 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 6) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,836 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 7) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,836 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 8) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,836 pysnmp: announceManagementEvent createCommit to MibTableRow((1, 3, 6, 1, 6, 3, 18, 1, 2, 1), None)
2023-04-28 06:12:43,837 pysnmp: receiveManagementEvent createCommit for suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)
2023-04-28 06:12:43,837 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 18, 1, 2, 1, 1) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,837 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 18, 1, 2, 1, 2) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,837 pysnmp: announceManagementEvent createCommit to MibTableRow((1, 3, 6, 1, 4, 1, 20408, 3, 1, 8, 1, 1, 1), None)
2023-04-28 06:12:43,838 pysnmp: receiveManagementEvent createCommit for suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)
2023-04-28 06:12:43,838 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 4, 1, 20408, 3, 1, 8, 1, 1, 1, 1) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,838 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='destroy'
2023-04-28 06:12:43,838 pysnmp: flipFlopFsm: state writeCommit status ok -> fsmState writeCleanup
2023-04-28 06:12:43,839 pysnmp: RowCreationWanted({}) dropped by (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='destroy'
2023-04-28 06:12:43,839 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 1) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) index value <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [a3165221625]>
2023-04-28 06:12:43,840 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 2) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,840 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 3) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,840 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 4) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,840 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 5) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,840 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 6) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,840 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 7) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,840 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 8) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,841 pysnmp: announceManagementEvent createCleanup to MibTableRow((1, 3, 6, 1, 6, 3, 18, 1, 2, 1), None)
2023-04-28 06:12:43,841 pysnmp: receiveManagementEvent createCleanup for suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)
2023-04-28 06:12:43,842 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 18, 1, 2, 1, 1) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,842 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 18, 1, 2, 1, 2) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,842 pysnmp: announceManagementEvent createCleanup to MibTableRow((1, 3, 6, 1, 4, 1, 20408, 3, 1, 8, 1, 1, 1), None)
2023-04-28 06:12:43,842 pysnmp: receiveManagementEvent createCleanup for suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)
2023-04-28 06:12:43,843 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 4, 1, 20408, 3, 1, 8, 1, 1, 1, 1) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,843 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='destroy'
2023-04-28 06:12:43,843 pysnmp: flipFlopFsm: state writeCleanup status ok -> fsmState readTest
2023-04-28 06:12:43,843 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='destroy'
2023-04-28 06:12:43,843 pysnmp: flipFlopFsm: state readTest status ok -> fsmState readGet
2023-04-28 06:12:43,844 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]>
2023-04-28 06:12:43,844 pysnmp: getValue: returning <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]> for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)
2023-04-28 06:12:43,844 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='destroy'
2023-04-28 06:12:43,844 pysnmp: flipFlopFsm: state readGet status ok -> fsmState stop
2023-04-28 06:12:43,845 pysnmp: flipFlopFsm: input var-binds (((1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 1, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53), 'a3165221625'), ((1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 2, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53), (1, 3, 6, 1, 6, 1, 1)), ((1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 3, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53), <SnmpUDPAddress value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 6, 6>>, encoding iso-8859-1, payload [10.175.246.2/161]>), ((1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 4, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53), 1000), ((1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 5, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53), 0), ((1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 6, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53), b''), ((1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 7, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53), 'p3165221624'), ((1, 3, 6, 1, 4, 1, 20408, 3, 1, 8, 1, 1, 1, 1, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53), <SnmpUDPAddress value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 6, 6>>, encoding iso-8859-1, payload [0.0.0.0/0]>), ((1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53), 'createAndGo'))
2023-04-28 06:12:43,845 pysnmp: flipFlopFsm: state start status ok -> fsmState writeTest
2023-04-28 06:12:43,845 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 1, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='a3165221625'
2023-04-28 06:12:43,846 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 2, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=(1, 3, 6, 1, 6, 1, 1)
2023-04-28 06:12:43,846 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 3, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<SnmpUDPAddress value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 6, 6>>, encoding iso-8859-1, payload [10.175.246.2/161]>
2023-04-28 06:12:43,847 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 4, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=1000
2023-04-28 06:12:43,847 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 5, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=0
2023-04-28 06:12:43,847 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 6, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=b''
2023-04-28 06:12:43,848 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 7, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='p3165221624'
2023-04-28 06:12:43,848 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 4, 1, 20408, 3, 1, 8, 1, 1, 1, 1, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<SnmpUDPAddress value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 6, 6>>, encoding iso-8859-1, payload [0.0.0.0/0]>
2023-04-28 06:12:43,849 pysnmp: RowStatus state change from <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [createAndGo]> produced new state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>, error indication <class 'pysnmp.smi.error.RowCreationWanted'>
2023-04-28 06:12:43,850 pysnmp: setValue: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='createAndGo' failed with traceback ['Traceback (most recent call last):\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 659, in setValue\n    return self.syntax.setValue(value)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-TC.py", line 513, in setValue\n    raise excValue\n', "pysnmp.smi.error.RowCreationWanted: RowCreationWanted({'msg': 'Exception at row state transition from <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [createAndGo]> yields state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]> and exception', 'syntax': <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>})\n"]
2023-04-28 06:12:43,850 pysnmp: RowStatus state change from <RowStatus schema object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [createAndGo]> produced new state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>, error indication <class 'pysnmp.smi.error.RowCreationWanted'>
2023-04-28 06:12:43,852 pysnmp: setValue: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='createAndGo' failed with traceback ['Traceback (most recent call last):\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 957, in writeTest\n    MibScalar.writeTest(self, name, val, idx, acInfo)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 633, in writeTest\n    MibTree.writeTest(self, name, val, idx, acInfo)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 532, in writeTest\n    node.writeTest(name, val, idx, acInfo)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 738, in writeTest\n    raise why\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 732, in writeTest\n    self.__newSyntax = self.setValue(val, name, idx)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 667, in setValue\n    raise exc_v\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 659, in setValue\n    return self.syntax.setValue(value)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-TC.py", line 513, in setValue\n    raise excValue\n', "pysnmp.smi.error.RowCreationWanted: RowCreationWanted({'msg': 'Exception at row state transition from <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [createAndGo]> yields state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]> and exception', 'syntax': <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>})\n", '\nDuring handling of the above exception, another exception occurred:\n\n', 'Traceback (most recent call last):\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-SMI.py", line 659, in setValue\n    return self.syntax.setValue(value)\n', '  File "/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/SNMPv2-TC.py", line 513, in setValue\n    raise excValue\n', "pysnmp.smi.error.RowCreationWanted: RowCreationWanted({'msg': 'Exception at row state transition from <RowStatus schema object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [createAndGo]> yields state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]> and exception', 'syntax': <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>})\n"]
2023-04-28 06:12:43,852 pysnmp: RowCreationWanted({'msg': 'Exception at row state transition from <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [createAndGo]> yields state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]> and exception', 'syntax': <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>}) flagged by (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='createAndGo', exception None
2023-04-28 06:12:43,853 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 1) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) index value <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [a3165221625]>
2023-04-28 06:12:43,853 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 2) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,853 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 3) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,854 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 4) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,854 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 5) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,854 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 6) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,854 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 7) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,854 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 8) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,855 pysnmp: announceManagementEvent createTest to MibTableRow((1, 3, 6, 1, 6, 3, 18, 1, 2, 1), None)
2023-04-28 06:12:43,855 pysnmp: receiveManagementEvent createTest for suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)
2023-04-28 06:12:43,856 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 18, 1, 2, 1, 1) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,856 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 6, 3, 18, 1, 2, 1, 2) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,856 pysnmp: announceManagementEvent createTest to MibTableRow((1, 3, 6, 1, 4, 1, 20408, 3, 1, 8, 1, 1, 1), None)
2023-04-28 06:12:43,856 pysnmp: receiveManagementEvent createTest for suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)
2023-04-28 06:12:43,857 pysnmp: __manageColumns: action createTest name (1, 3, 6, 1, 4, 1, 20408, 3, 1, 8, 1, 1, 1, 1) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,857 pysnmp: flipFlopFsm: fun <bound method MibTree.writeTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='createAndGo'
2023-04-28 06:12:43,857 pysnmp: flipFlopFsm: state writeTest status ok -> fsmState writeCommit
2023-04-28 06:12:43,857 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 1, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='a3165221625'
2023-04-28 06:12:43,858 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 2, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=(1, 3, 6, 1, 6, 1, 1)
2023-04-28 06:12:43,858 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 3, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<SnmpUDPAddress value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 6, 6>>, encoding iso-8859-1, payload [10.175.246.2/161]>
2023-04-28 06:12:43,858 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 4, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=1000
2023-04-28 06:12:43,858 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 5, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=0
2023-04-28 06:12:43,859 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 6, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=b''
2023-04-28 06:12:43,859 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 7, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='p3165221624'
2023-04-28 06:12:43,859 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 4, 1, 20408, 3, 1, 8, 1, 1, 1, 1, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<SnmpUDPAddress value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 6, 6>>, encoding iso-8859-1, payload [0.0.0.0/0]>
2023-04-28 06:12:43,860 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 1) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) index value <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [a3165221625]>
2023-04-28 06:12:43,860 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 2) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,860 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 3) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,861 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 4) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,861 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 5) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,861 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 6) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,861 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 7) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,861 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 8) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,862 pysnmp: announceManagementEvent createCommit to MibTableRow((1, 3, 6, 1, 6, 3, 18, 1, 2, 1), None)
2023-04-28 06:12:43,862 pysnmp: receiveManagementEvent createCommit for suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)
2023-04-28 06:12:43,862 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 18, 1, 2, 1, 1) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,863 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 6, 3, 18, 1, 2, 1, 2) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,863 pysnmp: announceManagementEvent createCommit to MibTableRow((1, 3, 6, 1, 4, 1, 20408, 3, 1, 8, 1, 1, 1), None)
2023-04-28 06:12:43,863 pysnmp: receiveManagementEvent createCommit for suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)
2023-04-28 06:12:43,863 pysnmp: __manageColumns: action createCommit name (1, 3, 6, 1, 4, 1, 20408, 3, 1, 8, 1, 1, 1, 1) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,864 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCommit of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='createAndGo'
2023-04-28 06:12:43,864 pysnmp: flipFlopFsm: state writeCommit status ok -> fsmState writeCleanup
2023-04-28 06:12:43,864 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 1, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='a3165221625'
2023-04-28 06:12:43,864 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 1, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='a3165221625'
2023-04-28 06:12:43,864 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 2, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=(1, 3, 6, 1, 6, 1, 1)
2023-04-28 06:12:43,865 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 2, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=(1, 3, 6, 1, 6, 1, 1)
2023-04-28 06:12:43,865 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 3, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<SnmpUDPAddress value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 6, 6>>, encoding iso-8859-1, payload [10.175.246.2/161]>
2023-04-28 06:12:43,865 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 3, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<SnmpUDPAddress value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 6, 6>>, encoding iso-8859-1, payload [10.175.246.2/161]>
2023-04-28 06:12:43,866 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 4, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=1000
2023-04-28 06:12:43,866 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 4, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=1000
2023-04-28 06:12:43,866 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 5, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=0
2023-04-28 06:12:43,866 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 5, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=0
2023-04-28 06:12:43,866 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 6, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=b''
2023-04-28 06:12:43,866 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 6, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=b''
2023-04-28 06:12:43,867 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 7, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='p3165221624'
2023-04-28 06:12:43,867 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 7, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='p3165221624'
2023-04-28 06:12:43,867 pysnmp: writeCleanup: (1, 3, 6, 1, 4, 1, 20408, 3, 1, 8, 1, 1, 1, 1, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<SnmpUDPAddress value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 6, 6>>, encoding iso-8859-1, payload [0.0.0.0/0]>
2023-04-28 06:12:43,868 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 4, 1, 20408, 3, 1, 8, 1, 1, 1, 1, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<SnmpUDPAddress value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 6, 6>>, encoding iso-8859-1, payload [0.0.0.0/0]>
2023-04-28 06:12:43,868 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='createAndGo'
2023-04-28 06:12:43,868 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='createAndGo'
2023-04-28 06:12:43,868 pysnmp: RowCreationWanted({'msg': 'Exception at row state transition from <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [notExists]> to <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [createAndGo]> yields state <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]> and exception', 'syntax': <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>}) dropped by (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='createAndGo'
2023-04-28 06:12:43,869 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 1, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [a3165221625]>
2023-04-28 06:12:43,869 pysnmp: writeCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 1, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [a3165221625]>
2023-04-28 06:12:43,870 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 1) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) index value <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [a3165221625]>
2023-04-28 06:12:43,870 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 2, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=None
2023-04-28 06:12:43,870 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 2) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,870 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 3, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=None
2023-04-28 06:12:43,870 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 3) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,871 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 4, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=None
2023-04-28 06:12:43,871 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 4) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,871 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 5, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=None
2023-04-28 06:12:43,871 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 5) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,871 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 6, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=None
2023-04-28 06:12:43,871 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 6) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,871 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 7, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=None
2023-04-28 06:12:43,872 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 7) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,872 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 8, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=None
2023-04-28 06:12:43,872 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 8) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,872 pysnmp: announceManagementEvent createCleanup to MibTableRow((1, 3, 6, 1, 6, 3, 18, 1, 2, 1), None)
2023-04-28 06:12:43,873 pysnmp: receiveManagementEvent createCleanup for suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)
2023-04-28 06:12:43,873 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 18, 1, 2, 1, 1, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=None
2023-04-28 06:12:43,873 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 18, 1, 2, 1, 1) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,873 pysnmp: createCleanup: (1, 3, 6, 1, 6, 3, 18, 1, 2, 1, 2, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=None
2023-04-28 06:12:43,873 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 6, 3, 18, 1, 2, 1, 2) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,874 pysnmp: announceManagementEvent createCleanup to MibTableRow((1, 3, 6, 1, 4, 1, 20408, 3, 1, 8, 1, 1, 1), None)
2023-04-28 06:12:43,874 pysnmp: receiveManagementEvent createCleanup for suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)
2023-04-28 06:12:43,874 pysnmp: createCleanup: (1, 3, 6, 1, 4, 1, 20408, 3, 1, 8, 1, 1, 1, 1, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=None
2023-04-28 06:12:43,874 pysnmp: __manageColumns: action createCleanup name (1, 3, 6, 1, 4, 1, 20408, 3, 1, 8, 1, 1, 1, 1) suffix (97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53) value None
2023-04-28 06:12:43,875 pysnmp: flipFlopFsm: fun <bound method MibTree.writeCleanup of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='createAndGo'
2023-04-28 06:12:43,875 pysnmp: flipFlopFsm: state writeCleanup status ok -> fsmState readTest
2023-04-28 06:12:43,875 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 1, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='a3165221625'
2023-04-28 06:12:43,875 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 2, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=(1, 3, 6, 1, 6, 1, 1)
2023-04-28 06:12:43,876 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 3, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<SnmpUDPAddress value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 6, 6>>, encoding iso-8859-1, payload [10.175.246.2/161]>
2023-04-28 06:12:43,876 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 4, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=1000
2023-04-28 06:12:43,876 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 5, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=0
2023-04-28 06:12:43,876 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 6, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=b''
2023-04-28 06:12:43,876 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 7, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='p3165221624'
2023-04-28 06:12:43,877 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 4, 1, 20408, 3, 1, 8, 1, 1, 1, 1, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<SnmpUDPAddress value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 6, 6>>, encoding iso-8859-1, payload [0.0.0.0/0]>
2023-04-28 06:12:43,877 pysnmp: flipFlopFsm: fun <bound method MibTree.readTest of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='createAndGo'
2023-04-28 06:12:43,877 pysnmp: flipFlopFsm: state readTest status ok -> fsmState readGet
2023-04-28 06:12:43,878 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 1, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [a3165221625]>
2023-04-28 06:12:43,878 pysnmp: getValue: returning <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [a3165221625]> for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 1, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)
2023-04-28 06:12:43,878 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 1, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='a3165221625'
2023-04-28 06:12:43,878 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 2, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<TDomain value object, tagSet <TagSet object, tags 0:0:6>, payload [1.3.6.1.6.1.1]>
2023-04-28 06:12:43,879 pysnmp: getValue: returning <TDomain value object, tagSet <TagSet object, tags 0:0:6>, payload [1.3.6.1.6.1.1]> for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 2, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)
2023-04-28 06:12:43,879 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 2, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=(1, 3, 6, 1, 6, 1, 1)
2023-04-28 06:12:43,879 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 3, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<TAddress value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 1, 255>>, encoding iso-8859-1, payload [0x0aaff60200a1]>
2023-04-28 06:12:43,879 pysnmp: getValue: returning <TAddress value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 1, 255>>, encoding iso-8859-1, payload [0x0aaff60200a1]> for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 3, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)
2023-04-28 06:12:43,880 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 3, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<SnmpUDPAddress value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 6, 6>>, encoding iso-8859-1, payload [10.175.246.2/161]>
2023-04-28 06:12:43,880 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 4, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<TimeInterval value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <ValueRangeConstraint object, consts 0, 2147483647>>, payload [1000]>
2023-04-28 06:12:43,880 pysnmp: getValue: returning <TimeInterval value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <ValueRangeConstraint object, consts 0, 2147483647>>, payload [1000]> for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 4, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)
2023-04-28 06:12:43,880 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 4, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=1000
2023-04-28 06:12:43,881 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 5, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<Integer32 value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <ValueRangeConstraint object, consts 0, 255>>, payload [0]>
2023-04-28 06:12:43,881 pysnmp: getValue: returning <Integer32 value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <ValueRangeConstraint object, consts 0, 255>>, payload [0]> for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 5, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)
2023-04-28 06:12:43,881 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 5, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=0
2023-04-28 06:12:43,881 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 6, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<SnmpTagList value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>>, encoding utf-8, payload []>
2023-04-28 06:12:43,882 pysnmp: getValue: returning <SnmpTagList value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>>, encoding utf-8, payload []> for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 6, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)
2023-04-28 06:12:43,882 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 6, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=b''
2023-04-28 06:12:43,882 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 7, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [p3165221624]>
2023-04-28 06:12:43,883 pysnmp: getValue: returning <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [p3165221624]> for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 7, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)
2023-04-28 06:12:43,883 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 7, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='p3165221624'
2023-04-28 06:12:43,883 pysnmp: readGet: (1, 3, 6, 1, 4, 1, 20408, 3, 1, 8, 1, 1, 1, 1, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<TAddress value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 1, 255>>, encoding iso-8859-1, payload [0x000000000000]>
2023-04-28 06:12:43,883 pysnmp: getValue: returning <TAddress value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 1, 255>>, encoding iso-8859-1, payload [0x000000000000]> for (1, 3, 6, 1, 4, 1, 20408, 3, 1, 8, 1, 1, 1, 1, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)
2023-04-28 06:12:43,884 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 4, 1, 20408, 3, 1, 8, 1, 1, 1, 1, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<SnmpUDPAddress value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 6, 6>>, encoding iso-8859-1, payload [0.0.0.0/0]>
2023-04-28 06:12:43,884 pysnmp: readGet: (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)=<RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]>
2023-04-28 06:12:43,884 pysnmp: getValue: returning <RowStatus value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 0, 1, 2, 3, 4, 5, 6>>, namedValues <NamedValues object, enums notExists=0, active=1, notInServ...Go=4, createAndWait=5, destroy=6>, payload [active]> for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)
2023-04-28 06:12:43,885 pysnmp: flipFlopFsm: fun <bound method MibTree.readGet of MibTree((1,), None)> suceeded for (1, 3, 6, 1, 6, 3, 12, 1, 2, 1, 9, 97, 51, 49, 54, 53, 50, 50, 49, 54, 50, 53)='createAndGo'
2023-04-28 06:12:43,885 pysnmp: flipFlopFsm: state readGet status ok -> fsmState stop
2023-04-28 06:12:44,132 pysnmp: trying DirMibSource('/home/user/.pysnmp/mibs')
2023-04-28 06:12:44,132 pysnmp: addMibSources: new MIB sources [DirMibSource('/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs'), DirMibSource('/home/user/repos/my-program/.venv/lib64/python3.6/site-packages/pysnmp/smi/mibs/instances'), DirMibSource('pysnmp_mibs'), DirMibSource('/home/user/.pysnmp/mibs')]
2023-04-28 06:12:44,133 pysnmp: resolving .1.3.6.1.4.1.23423.1.4.0 as OID or label
2023-04-28 06:12:44,133 pysnmp: indexMib: re-indexing MIB view
2023-04-28 06:12:44,150 pysnmp: getNodeNameByOid: resolved :1.3.6.1.4.1.23423.1.4.0 -> ('iso', 'org', 'dod', 'internet', 'private', 'enterprises').23423.1.4.0
2023-04-28 06:12:44,150 pysnmp: resolved ('.1.3.6.1.4.1.23423.1.4.0',) into prefix <ObjectName value object, tagSet <TagSet object, tags 0:0:6>, payload [1.3.6.1.4.1]> and suffix <ObjectName value object, tagSet <TagSet object, tags 0:0:6>, payload [23423.1.4.0]>
2023-04-28 06:12:44,151 pysnmp: getNodeNameByOid: resolved :1.3.6.1.4.1 -> ('iso', 'org', 'dod', 'internet', 'private', 'enterprises').()
2023-04-28 06:12:44,151 pysnmp: resolved prefix <ObjectName value object, tagSet <TagSet object, tags 0:0:6>, payload [1.3.6.1.4.1]> into MIB node MibIdentifier((1, 3, 6, 1, 4, 1))
2023-04-28 06:12:44,152 pysnmp: resolved indices are (<ObjectName value object, tagSet <TagSet object, tags 0:0:6>, payload [23423.1.4.0]>,)
2023-04-28 06:12:44,155 pysnmp: sendPdu: securityName s-373658917810689361, PDU
SetRequestPDU:
 request-id=309295
 error-status=noError
 error-index=0
 variable-bindings=VarBindList:
  VarBind:
   name=1.3.6.1.4.1.23423.1.4.0
   =_BindValue:
    value=ObjectSyntax:
     simple=SimpleSyntax:
      string-value=disconnect?





2023-04-28 06:12:44,158 pysnmp: sendPdu: current time 0 ticks, one tick is 0.5 seconds
2023-04-28 06:12:44,158 pysnmp: sendPdu: new sendPduHandle 1281665, timeout 20.0 ticks, cbFun <bound method CommandGenerator.processResponsePdu of <pysnmp.entity.rfc3413.cmdgen.SetCommandGenerator object at 0x7f9ea6a216a0>>
2023-04-28 06:12:44,158 pysnmp: prepareOutgoingMessage: PDU request-id 309295 replaced with unique ID 2613533
2023-04-28 06:12:44,159 pysnmp: prepareOutgoingMessage: using contextEngineId <SnmpEngineID value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 5, 32>>, encoding iso-8859-1, payload [0x80004fb805746e...6e65742d39141c88]> contextName b''
2023-04-28 06:12:44,161 pysnmp: _sec2com: built securityName to communityName map, version 4: {(<SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 1, 32>>, encoding utf-8, payload [s-373658917810689361]>, <SnmpEngineID value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 5, 32>>, encoding iso-8859-1, payload [0x80004fb805746e...6e65742d39141c88]>, <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>, <ValueSizeConstraint object, consts 0, 32>>, encoding utf-8, payload []>): <OctetString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>>, encoding iso-8859-1, payload [blackhole]>}
2023-04-28 06:12:44,162 pysnmp: generateRequestMsg: using community <OctetString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>>, encoding iso-8859-1, payload [blackhole]> for securityModel <SnmpSecurityModel value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <ValueRangeConstraint object, consts 0, 2147483647>, <ValueRangeConstraint object, consts 1, 2147483647>>, payload [2]>, securityName <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>>, encoding utf-8, payload [s-373658917810689361]>, contextEngineId <SnmpEngineID value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 5, 32>>, encoding iso-8859-1, payload [0x80004fb805746e...6e65742d39141c88]> contextName b''
2023-04-28 06:12:44,163 pysnmp: generateRequestMsg: Message:
 version=1
 community=blackhole
 data=PDUs:
  set-request=SetRequestPDU:
   request-id=2613533
   error-status=noError
   error-index=0
   variable-bindings=VarBindList:
    VarBind:
     name=1.3.6.1.4.1.23423.1.4.0
     =_BindValue:
      value=ObjectSyntax:
       simple=SimpleSyntax:
        string-value=disconnect?







2023-04-28 06:12:44,167 pysnmp: sendPdu: MP succeeded
2023-04-28 06:12:44,167 pysnmp: sendMessage: outgoingMessage queued (59 octets) 
00000: 30 39 02 01 01 04 09 62 6C 61 63 6B 68 6F 6C 65 
00016: A3 29 02 03 27 E1 1D 02 01 00 02 01 00 30 1C 30 
00032: 1A 06 0B 2B 06 01 04 01 81 B6 7F 01 04 00 04 0B 
00048: 64 69 73 63 6F 6E 6E 65 63 74 3F
2023-04-28 06:12:44,169 pysnmp: sendPdu: sendPduHandle 1281665, timeout 1000*10 ms/20 ticks, retry 0 of 0
2023-04-28 06:12:44,170 pysnmp: handle_write: transportAddress <SnmpUDPAddress value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 6, 6>>, encoding iso-8859-1, payload [0.0.0.0/0]> -> ('10.175.246.2', 161) outgoingMessage (59 octets) 
00000: 30 39 02 01 01 04 09 62 6C 61 63 6B 68 6F 6C 65 
00016: A3 29 02 03 27 E1 1D 02 01 00 02 01 00 30 1C 30 
00032: 1A 06 0B 2B 06 01 04 01 81 B6 7F 01 04 00 04 0B 
00048: 64 69 73 63 6F 6E 6E 65 63 74 3F

2023-04-28 06:12:54,191 pysnmp: __expireRequest: req cachedParams {'messageProcessingModel': <SnmpMessageProcessingModel value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <ValueRangeConstraint object, consts 0, 2147483647>>, payload [1]>, 'sendPduHandle': 1281665, 'timeout': 20.0, 'cbFun': <bound method CommandGenerator.processResponsePdu of <pysnmp.entity.rfc3413.cmdgen.SetCommandGenerator object at 0x7f9ea6a216a0>>, 'cbCtx': (1146904507, <bound method SetCommandGenerator.processResponseVarBinds of <pysnmp.entity.rfc3413.cmdgen.SetCommandGenerator object at 0x7f9ea6a216a0>>, (<function setCmd.<locals>.__cbFun at 0x7f9ea6af47b8>, (True, <function setCmd.<locals>.cbFun at 0x7f9ea6af4730>, {}))), 'transportDomain': <TDomain value object, tagSet <TagSet object, tags 0:0:6>, payload [1.3.6.1.6.1.1]>, 'transportAddress': ('10.175.246.2', 161), 'securityModel': <SnmpSecurityModel value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <ValueRangeConstraint object, consts 0, 2147483647>, <ValueRangeConstraint object, consts 1, 2147483647>>, payload [2]>, 'securityName': <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>>, encoding utf-8, payload [s-373658917810689361]>, 'securityLevel': <SnmpSecurityLevel value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>, <SingleValueConstraint object, consts 1, 2, 3>>, namedValues <NamedValues object, enums noAuthNoPriv=1, authNoPriv=2, authPriv=3>, payload [noAuthNoPriv]>, 'contextEngineId': None, 'contextName': <SnmpAdminString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 0, 255>>, encoding utf-8, payload []>, 'pduVersion': 1, 'PDU': <SetRequestPDU value object, tagSet=<TagSet object, tags 128:32:3>, subtypeSpec=<ConstraintsIntersection object>, componentType=<NamedTypes object, types <NamedType object, type request-id=<Integer32 schema object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>>>>, <NamedType object, type error-status=<Integer schema object, tagSet <TagSet object, tags 0:0:2>, namedValues <NamedValues object, enums noError=0, tooBig=1, noSuchName=...Writable=17, inconsistentName=18>>>, <NamedType object, type error-index=<Integer schema object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts 0, <Integer value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>>, payload [2147483647]>>>>>, <NamedType object, type variable-bindings=<VarBindList schema object, tagSet=<TagSet object, tags 0:32:16>, subtypeSpec=<ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, <Integer value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>>, payload [2147483647]>>>, componentType=<VarBind schema object, tagSet=<TagSet object, tags 0:32:16>, subtypeSpec=<ConstraintsIntersection object>, componentType=<NamedTypes object, types <NamedType object, type name=<ObjectName schema object, tagSet <TagSet object, tags 0:0:6>>>, <NamedType object, type =<_BindValue schema object, tagSet=<TagSet object, untagged>, subtypeSpec=<ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 1, 1>>, componentType=<NamedTypes object, types <NamedType object, type value=<ObjectSyntax schema object, tagSet=<TagSet object, untagged>, subtypeSpec=<ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 1, 1>>, componentType=<NamedTypes object, types <NamedType object, type simple=<SimpleSyntax schema object, tagSet=<TagSet object, untagged>, subtypeSpec=<ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 1, 1>>, componentType=<NamedTypes object, types <NamedType object, type integer-value=<Integer schema object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>>>>, <NamedType object, type string-value=<OctetString schema object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>>, encoding iso-8859-1>>, <NamedType object, type objectID-value=<ObjectIdentifier schema object, tagSet <TagSet object, tags 0:0:6>>>>, sizeSpec=<ConstraintsIntersection object>>>, <NamedType object, type application-wide=<ApplicationSyntax schema object, tagSet=<TagSet object, untagged>, subtypeSpec=<ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 1, 1>>, componentType=<NamedTypes object, types <NamedType object, type ipAddress-value=<IpAddress schema object, tagSet <TagSet object, tags 64:0:0>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 4, 4>>, encoding iso-8859-1>>, <NamedType object, type counter-value=<Counter32 schema object, tagSet <TagSet object, tags 64:0:1>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts 0, 4294967295>>>>, <NamedType object, type timeticks-value=<TimeTicks schema object, tagSet <TagSet object, tags 64:0:3>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts 0, 4294967295>>>>, <NamedType object, type arbitrary-value=<Opaque schema object, tagSet <TagSet object, tags 64:0:4>, encoding iso-8859-1>>, <NamedType object, type big-counter-value=<Counter64 schema object, tagSet <TagSet object, tags 64:0:6>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts 0, 18446744073709551615>>>>, <NamedType object, type gauge32-value=<Gauge32 schema object, tagSet <TagSet object, tags 64:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts 0, 4294967295>>>>>, sizeSpec=<ConstraintsIntersection object>>>>, sizeSpec=<ConstraintsIntersection object>>>, <NamedType object, type unSpecified=<Null value object, tagSet <TagSet object, tags 0:0:5>, subtypeSpec <ConstraintsIntersection object, consts <SingleValueConstraint object, consts b''>>, encoding iso-8859-1, payload []>>, <NamedType object, type noSuchObject=<NoSuchObject value object, tagSet <TagSet object, tags 128:0:0>, subtypeSpec <ConstraintsIntersection object, consts <SingleValueConstraint object, consts b''>>, encoding iso-8859-1, payload [No Such Object c...ists at this OID]>>, <NamedType object, type noSuchInstance=<NoSuchInstance value object, tagSet <TagSet object, tags 128:0:1>, subtypeSpec <ConstraintsIntersection object, consts <SingleValueConstraint object, consts b''>>, encoding iso-8859-1, payload [No Such Instance...ists at this OID]>>, <NamedType object, type endOfMibView=<EndOfMibView value object, tagSet <TagSet object, tags 128:0:2>, subtypeSpec <ConstraintsIntersection object, consts <SingleValueConstraint object, consts b''>>, encoding iso-8859-1, payload [No more variable...in this MIB View]>>>, sizeSpec=<ConstraintsIntersection object>>>>, sizeSpec=<ConstraintsIntersection object>>, sizeSpec=<ConstraintsIntersection object>>>>, sizeSpec=<ConstraintsIntersection object>, payload [<Integer32 value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>>, payload [309295]>, <Integer value object, tagSet <TagSet object, tags 0:0:2>, namedValues <NamedValues object, enums noError=0, tooBig=1, noSuchName=...Writable=17, inconsistentName=18>, payload [noError]>, <Integer value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts 0, <Integer value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>>, payload [2147483647]>>>, payload [0]>, <VarBindList value object, tagSet=<TagSet object, tags 0:32:16>, subtypeSpec=<ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, <Integer value object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>>, payload [2147483647]>>>, componentType=<VarBind schema object, tagSet=<TagSet object, tags 0:32:16>, subtypeSpec=<ConstraintsIntersection object>, componentType=<NamedTypes object, types <NamedType object, type name=<ObjectName schema object, tagSet <TagSet object, tags 0:0:6>>>, <NamedType object, type =<_BindValue schema object, tagSet=<TagSet object, untagged>, subtypeSpec=<ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 1, 1>>, componentType=<NamedTypes object, types <NamedType object, type value=<ObjectSyntax schema object, tagSet=<TagSet object, untagged>, subtypeSpec=<ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 1, 1>>, componentType=<NamedTypes object, types <NamedType object, type simple=<SimpleSyntax schema object, tagSet=<TagSet object, untagged>, subtypeSpec=<ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 1, 1>>, componentType=<NamedTypes object, types <NamedType object, type integer-value=<Integer schema object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>>>>, <NamedType object, type string-value=<OctetString schema object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>>, encoding iso-8859-1>>, <NamedType object, type objectID-value=<ObjectIdentifier schema object, tagSet <TagSet object, tags 0:0:6>>>>, sizeSpec=<ConstraintsIntersection object>>>, <NamedType object, type application-wide=<ApplicationSyntax schema object, tagSet=<TagSet object, untagged>, subtypeSpec=<ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 1, 1>>, componentType=<NamedTypes object, types <NamedType object, type ipAddress-value=<IpAddress schema object, tagSet <TagSet object, tags 64:0:0>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 4, 4>>, encoding iso-8859-1>>, <NamedType object, type counter-value=<Counter32 schema object, tagSet <TagSet object, tags 64:0:1>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts 0, 4294967295>>>>, <NamedType object, type timeticks-value=<TimeTicks schema object, tagSet <TagSet object, tags 64:0:3>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts 0, 4294967295>>>>, <NamedType object, type arbitrary-value=<Opaque schema object, tagSet <TagSet object, tags 64:0:4>, encoding iso-8859-1>>, <NamedType object, type big-counter-value=<Counter64 schema object, tagSet <TagSet object, tags 64:0:6>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts 0, 18446744073709551615>>>>, <NamedType object, type gauge32-value=<Gauge32 schema object, tagSet <TagSet object, tags 64:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts 0, 4294967295>>>>>, sizeSpec=<ConstraintsIntersection object>>>>, sizeSpec=<ConstraintsIntersection object>>>, <NamedType object, type unSpecified=<Null value object, tagSet <TagSet object, tags 0:0:5>, subtypeSpec <ConstraintsIntersection object, consts <SingleValueConstraint object, consts b''>>, encoding iso-8859-1, payload []>>, <NamedType object, type noSuchObject=<NoSuchObject value object, tagSet <TagSet object, tags 128:0:0>, subtypeSpec <ConstraintsIntersection object, consts <SingleValueConstraint object, consts b''>>, encoding iso-8859-1, payload [No Such Object c...ists at this OID]>>, <NamedType object, type noSuchInstance=<NoSuchInstance value object, tagSet <TagSet object, tags 128:0:1>, subtypeSpec <ConstraintsIntersection object, consts <SingleValueConstraint object, consts b''>>, encoding iso-8859-1, payload [No Such Instance...ists at this OID]>>, <NamedType object, type endOfMibView=<EndOfMibView value object, tagSet <TagSet object, tags 128:0:2>, subtypeSpec <ConstraintsIntersection object, consts <SingleValueConstraint object, consts b''>>, encoding iso-8859-1, payload [No more variable...in this MIB View]>>>, sizeSpec=<ConstraintsIntersection object>>>>, sizeSpec=<ConstraintsIntersection object>>, sizeSpec=<ConstraintsIntersection object>, payload [<VarBind value object, tagSet=<TagSet object, tags 0:32:16>, subtypeSpec=<ConstraintsIntersection object>, componentType=<NamedTypes object, types <NamedType object, type name=<ObjectName schema object, tagSet <TagSet object, tags 0:0:6>>>, <NamedType object, type =<_BindValue schema object, tagSet=<TagSet object, untagged>, subtypeSpec=<ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 1, 1>>, componentType=<NamedTypes object, types <NamedType object, type value=<ObjectSyntax schema object, tagSet=<TagSet object, untagged>, subtypeSpec=<ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 1, 1>>, componentType=<NamedTypes object, types <NamedType object, type simple=<SimpleSyntax schema object, tagSet=<TagSet object, untagged>, subtypeSpec=<ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 1, 1>>, componentType=<NamedTypes object, types <NamedType object, type integer-value=<Integer schema object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>>>>, <NamedType object, type string-value=<OctetString schema object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>>, encoding iso-8859-1>>, <NamedType object, type objectID-value=<ObjectIdentifier schema object, tagSet <TagSet object, tags 0:0:6>>>>, sizeSpec=<ConstraintsIntersection object>>>, <NamedType object, type application-wide=<ApplicationSyntax schema object, tagSet=<TagSet object, untagged>, subtypeSpec=<ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 1, 1>>, componentType=<NamedTypes object, types <NamedType object, type ipAddress-value=<IpAddress schema object, tagSet <TagSet object, tags 64:0:0>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 4, 4>>, encoding iso-8859-1>>, <NamedType object, type counter-value=<Counter32 schema object, tagSet <TagSet object, tags 64:0:1>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts 0, 4294967295>>>>, <NamedType object, type timeticks-value=<TimeTicks schema object, tagSet <TagSet object, tags 64:0:3>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts 0, 4294967295>>>>, <NamedType object, type arbitrary-value=<Opaque schema object, tagSet <TagSet object, tags 64:0:4>, encoding iso-8859-1>>, <NamedType object, type big-counter-value=<Counter64 schema object, tagSet <TagSet object, tags 64:0:6>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts 0, 18446744073709551615>>>>, <NamedType object, type gauge32-value=<Gauge32 schema object, tagSet <TagSet object, tags 64:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts 0, 4294967295>>>>>, sizeSpec=<ConstraintsIntersection object>>>>, sizeSpec=<ConstraintsIntersection object>>>, <NamedType object, type unSpecified=<Null value object, tagSet <TagSet object, tags 0:0:5>, subtypeSpec <ConstraintsIntersection object, consts <SingleValueConstraint object, consts b''>>, encoding iso-8859-1, payload []>>, <NamedType object, type noSuchObject=<NoSuchObject value object, tagSet <TagSet object, tags 128:0:0>, subtypeSpec <ConstraintsIntersection object, consts <SingleValueConstraint object, consts b''>>, encoding iso-8859-1, payload [No Such Object c...ists at this OID]>>, <NamedType object, type noSuchInstance=<NoSuchInstance value object, tagSet <TagSet object, tags 128:0:1>, subtypeSpec <ConstraintsIntersection object, consts <SingleValueConstraint object, consts b''>>, encoding iso-8859-1, payload [No Such Instance...ists at this OID]>>, <NamedType object, type endOfMibView=<EndOfMibView value object, tagSet <TagSet object, tags 128:0:2>, subtypeSpec <ConstraintsIntersection object, consts <SingleValueConstraint object, consts b''>>, encoding iso-8859-1, payload [No more variable...in this MIB View]>>>, sizeSpec=<ConstraintsIntersection object>>>>, sizeSpec=<ConstraintsIntersection object>, payload [<ObjectName value object, tagSet <TagSet object, tags 0:0:6>, payload [1.3.6.1.4.1.23423.1.4.0]>, <_BindValue value object, tagSet=<TagSet object, untagged>, subtypeSpec=<ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 1, 1>>, componentType=<NamedTypes object, types <NamedType object, type value=<ObjectSyntax schema object, tagSet=<TagSet object, untagged>, subtypeSpec=<ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 1, 1>>, componentType=<NamedTypes object, types <NamedType object, type simple=<SimpleSyntax schema object, tagSet=<TagSet object, untagged>, subtypeSpec=<ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 1, 1>>, componentType=<NamedTypes object, types <NamedType object, type integer-value=<Integer schema object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>>>>, <NamedType object, type string-value=<OctetString schema object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>>, encoding iso-8859-1>>, <NamedType object, type objectID-value=<ObjectIdentifier schema object, tagSet <TagSet object, tags 0:0:6>>>>, sizeSpec=<ConstraintsIntersection object>>>, <NamedType object, type application-wide=<ApplicationSyntax schema object, tagSet=<TagSet object, untagged>, subtypeSpec=<ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 1, 1>>, componentType=<NamedTypes object, types <NamedType object, type ipAddress-value=<IpAddress schema object, tagSet <TagSet object, tags 64:0:0>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 4, 4>>, encoding iso-8859-1>>, <NamedType object, type counter-value=<Counter32 schema object, tagSet <TagSet object, tags 64:0:1>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts 0, 4294967295>>>>, <NamedType object, type timeticks-value=<TimeTicks schema object, tagSet <TagSet object, tags 64:0:3>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts 0, 4294967295>>>>, <NamedType object, type arbitrary-value=<Opaque schema object, tagSet <TagSet object, tags 64:0:4>, encoding iso-8859-1>>, <NamedType object, type big-counter-value=<Counter64 schema object, tagSet <TagSet object, tags 64:0:6>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts 0, 18446744073709551615>>>>, <NamedType object, type gauge32-value=<Gauge32 schema object, tagSet <TagSet object, tags 64:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts 0, 4294967295>>>>>, sizeSpec=<ConstraintsIntersection object>>>>, sizeSpec=<ConstraintsIntersection object>>>, <NamedType object, type unSpecified=<Null value object, tagSet <TagSet object, tags 0:0:5>, subtypeSpec <ConstraintsIntersection object, consts <SingleValueConstraint object, consts b''>>, encoding iso-8859-1, payload []>>, <NamedType object, type noSuchObject=<NoSuchObject value object, tagSet <TagSet object, tags 128:0:0>, subtypeSpec <ConstraintsIntersection object, consts <SingleValueConstraint object, consts b''>>, encoding iso-8859-1, payload [No Such Object c...ists at this OID]>>, <NamedType object, type noSuchInstance=<NoSuchInstance value object, tagSet <TagSet object, tags 128:0:1>, subtypeSpec <ConstraintsIntersection object, consts <SingleValueConstraint object, consts b''>>, encoding iso-8859-1, payload [No Such Instance...ists at this OID]>>, <NamedType object, type endOfMibView=<EndOfMibView value object, tagSet <TagSet object, tags 128:0:2>, subtypeSpec <ConstraintsIntersection object, consts <SingleValueConstraint object, consts b''>>, encoding iso-8859-1, payload [No more variable...in this MIB View]>>>, sizeSpec=<ConstraintsIntersection object>, payload [<ObjectSyntax value object, tagSet=<TagSet object, untagged>, subtypeSpec=<ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 1, 1>>, componentType=<NamedTypes object, types <NamedType object, type simple=<SimpleSyntax schema object, tagSet=<TagSet object, untagged>, subtypeSpec=<ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 1, 1>>, componentType=<NamedTypes object, types <NamedType object, type integer-value=<Integer schema object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>>>>, <NamedType object, type string-value=<OctetString schema object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>>, encoding iso-8859-1>>, <NamedType object, type objectID-value=<ObjectIdentifier schema object, tagSet <TagSet object, tags 0:0:6>>>>, sizeSpec=<ConstraintsIntersection object>>>, <NamedType object, type application-wide=<ApplicationSyntax schema object, tagSet=<TagSet object, untagged>, subtypeSpec=<ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 1, 1>>, componentType=<NamedTypes object, types <NamedType object, type ipAddress-value=<IpAddress schema object, tagSet <TagSet object, tags 64:0:0>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>, <ValueSizeConstraint object, consts 4, 4>>, encoding iso-8859-1>>, <NamedType object, type counter-value=<Counter32 schema object, tagSet <TagSet object, tags 64:0:1>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts 0, 4294967295>>>>, <NamedType object, type timeticks-value=<TimeTicks schema object, tagSet <TagSet object, tags 64:0:3>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts 0, 4294967295>>>>, <NamedType object, type arbitrary-value=<Opaque schema object, tagSet <TagSet object, tags 64:0:4>, encoding iso-8859-1>>, <NamedType object, type big-counter-value=<Counter64 schema object, tagSet <TagSet object, tags 64:0:6>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts 0, 18446744073709551615>>>>, <NamedType object, type gauge32-value=<Gauge32 schema object, tagSet <TagSet object, tags 64:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts 0, 4294967295>>>>>, sizeSpec=<ConstraintsIntersection object>>>>, sizeSpec=<ConstraintsIntersection object>, payload [<SimpleSyntax value object, tagSet=<TagSet object, untagged>, subtypeSpec=<ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 1, 1>>, componentType=<NamedTypes object, types <NamedType object, type integer-value=<Integer schema object, tagSet <TagSet object, tags 0:0:2>, subtypeSpec <ConstraintsIntersection object, consts <ValueRangeConstraint object, consts -2147483648, 2147483647>>>>, <NamedType object, type string-value=<OctetString schema object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>>, encoding iso-8859-1>>, <NamedType object, type objectID-value=<ObjectIdentifier schema object, tagSet <TagSet object, tags 0:0:6>>>>, sizeSpec=<ConstraintsIntersection object>, payload [<NoValue object>, <OctetString value object, tagSet <TagSet object, tags 0:0:4>, subtypeSpec <ConstraintsIntersection object, consts <ValueSizeConstraint object, consts 0, 65535>>, encoding iso-8859-1, payload [disconnect?]>, <NoValue object>]>, <NoValue object>]>, <NoValue object>, <NoValue object>, <NoValue object>, <NoValue object>]>]>]>]>}
2023-04-28 06:12:54,193 pysnmp: StatusInformation: {'errorIndication': RequestTimedOut('No SNMP response received before timeout',)}
2023-04-28 06:12:54,194 pysnmp: processResponsePdu: sendPduHandle 1281665, statusInformation {'errorIndication': RequestTimedOut('No SNMP response received before timeout',)}
2023-04-28 06:12:54,194 pysnmp: processResponsePdu: sendPduHandle 1281665, retry count 1 exceeded

The whole file is in here: https://filebin.net/i31mnfczav82d58e

from pysnmp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.