Skip to content

Instantly share code, notes, and snippets.

@nemith
Created April 1, 2017 00:03
Show Gist options
  • Save nemith/5581bbe411dff52e16ffee27d7a743a6 to your computer and use it in GitHub Desktop.
Save nemith/5581bbe411dff52e16ffee27d7a743a6 to your computer and use it in GitHub Desktop.
(vlan, port1, port2) = struct.unpack('HBB', '\x02\x00\x28\x0a')
slot = (port1&0xf0)>>4
mod = (port1&0x08) ^ (port2&0x08) << 1
port = (port1&0x07) ^ (port2&0x07)<<3
print "Gi{}/{}".format(slot, mod + port)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment