From ac75d7cff41b7a5fd321fdee59b0ce9c9e447dd2 Mon Sep 17 00:00:00 2001 From: Bob Lantz <rlantz@cs.stanford.edu> Date: Mon, 14 Dec 2009 13:46:36 -0800 Subject: [PATCH] Inadvertently added verbosity into Node.setIP(); removed. --- mininet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mininet.py b/mininet.py index 30c57c7c..bba518ea 100755 --- a/mininet.py +++ b/mininet.py @@ -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 ): -- GitLab