Handle interfaces (e.g. real interfaces) without remote Node.
This commit is contained in:
+1
-1
@@ -111,7 +111,7 @@ class CLI( Cmd ):
|
|||||||
for switch in self.mn.switches:
|
for switch in self.mn.switches:
|
||||||
output( switch.name, '<->' )
|
output( switch.name, '<->' )
|
||||||
for intf in switch.intfs.values():
|
for intf in switch.intfs.values():
|
||||||
name = switch.connection[ intf ][ 1 ]
|
node, name = switch.connection.get( intf, ( None, 'Unknown ' ) )
|
||||||
output( ' %s' % name )
|
output( ' %s' % name )
|
||||||
output( '\n' )
|
output( '\n' )
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user