Made iperf verbose and fixed node command output.

This commit is contained in:
Bob Lantz
2010-03-09 21:47:32 -08:00
parent 1a9d2eac29
commit 47dbca2921
+2 -2
View File
@@ -128,7 +128,7 @@ class CLI( Cmd ):
def do_iperf( self, args ):
"Simple iperf TCP test between two hosts."
self.mn.iperf()
self.mn.iperf( verbose=True )
def do_iperfudp( self, args ):
"Simple iperf UDP test between two hosts."
@@ -181,7 +181,7 @@ class CLI( Cmd ):
while True:
try:
done, data = node.monitor()
info( '%s\n' % data )
info( '%s' % data )
if done:
break
except KeyboardInterrupt: