I did a quick copy of your Sample1 script to get the user name for user 2 -
(important bits, all the rest pretty much identical)
print('\nGet User Name 2:')
rsp = self.intf.issue_raw_cmd([6, 0x46, 2])
self.print_rsp(rsp)
It returned -
00 41 44 4d 49 4e 00 00 00 00 00 00 00 00 00 00 00
Looking at tcpdump and using ipmitool to check the output -
ipmitool -H 192.168.0.24 -I lan -U ADMIN -P ADMIN raw 0x06 0x46 0x02
I'd expect the output to be only the data part of the response packet, which starts at 41... am I missing something (or wrong, or overly tired, or......)
I did a quick copy of your Sample1 script to get the user name for user 2 -
(important bits, all the rest pretty much identical)
It returned -
Looking at
tcpdumpand usingipmitoolto check the output -I'd expect the output to be only the data part of the response packet, which starts at
41... am I missing something (or wrong, or overly tired, or......)