We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Only need to modify this: $Tlv = @{ 0x0001 = 'Device' 0x0002 = 'IPAddress' 0x0003 = 'Port' 0x0006 = 'Model' 0x000A = 'VLAN' 0x0016 = 'Management' }
$TypeString = 0x0001, 0x003, 0x006
to This: $Tlv = @{ 0x0001 = 'Device' 0x0002 = 'IPAddress' 0x0003 = 'Port' 0x0005 = 'Software' 0x0006 = 'Model' 0x000A = 'VLAN' 0x0016 = 'Management' }
$TypeString = 0x0001, 0x003, 0x005, 0x006
Tested... works great!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Only need to modify this:
$Tlv = @{
0x0001 = 'Device'
0x0002 = 'IPAddress'
0x0003 = 'Port'
0x0006 = 'Model'
0x000A = 'VLAN'
0x0016 = 'Management'
}
to This:
$Tlv = @{
0x0001 = 'Device'
0x0002 = 'IPAddress'
0x0003 = 'Port'
0x0005 = 'Software'
0x0006 = 'Model'
0x000A = 'VLAN'
0x0016 = 'Management'
}
Tested... works great!
The text was updated successfully, but these errors were encountered: