PSDiscoveryProtocol icon indicating copy to clipboard operation
PSDiscoveryProtocol copied to clipboard

Please add Software (contains version) to ConvertFrom-CDPPacket. Its the software running on the connected Cisco device.

Open TrevorW7 opened this issue 5 months ago • 0 comments

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!

TrevorW7 avatar Feb 07 '24 15:02 TrevorW7