Thanks to all who produced scli - it's a rather useful tool.

Is it possible to incorporate "friendly" port-names in some of the output? For example:

$ scli -c 'show bridge vlan details USR' sw-1 public
100-scli version 0.3.1 (c) 2001-2007 Juergen Schoenwaelder
Vlan Id:           48
Vlan Name:         USR_48
Egress Ports:      0-23,30-46,72-75,96-113,116-143
Forbidden Ports:  
Untagged Ports:    0-23,30-46,72-75,96-113,120-139
Status:            active

Would be more useful if it displayed as:

$ scli -c 'show bridge vlan details USR' sw-1 public
100-scli version 0.3.1 (c) 2001-2007 Juergen Schoenwaelder
Vlan Id:           48
Vlan Name:         USR_48
Egress Ports:      A1-A24,B7-B23,D1-D4,E1-E18,E21-F24
Forbidden Ports:  
Untagged Ports:    A1-A24,B7-B23,D1-D4,E1-D18,F1-F20
Status:            active

I've dug around in fmt.c, and looks like I could make the necessary change in fmt_port_set, but not sure if that would be the best place to do it.

Would also be useful to have Tagged Ports listed in the output. I know that's not in the mib, so it would have to be parsed out.

Tim:>