Skip to content
Snippets Groups Projects
Commit ac75d7cf authored by Bob Lantz's avatar Bob Lantz
Browse files

Inadvertently added verbosity into Node.setIP(); removed.

parent fb7658c8
No related branches found
No related tags found
No related merge requests found
......@@ -199,7 +199,7 @@ def newIntf( self ):
return intfName
def setIP( self, intf, ip, bits ):
"Set an interface's IP address."
result = self.cmdPrint( [ 'ifconfig', intf, ip + bits, 'up' ] )
result = self.cmd( [ 'ifconfig', intf, ip + bits, 'up' ] )
self.ips[ intf ] = ip
return result
def setHostRoute( self, ip, intf ):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment