Fixed bigTreePing64.

More edits for INSTALL and README files.
Batteries still not included (for the moment.) ;-)
This commit is contained in:
Bob Lantz
2009-12-11 03:58:54 -08:00
parent 3da2b1482c
commit b3dd44d41b
4 changed files with 36 additions and 7 deletions
+16 -1
View File
@@ -695,7 +695,22 @@ class Cli( object ):
# Commands
def help( self, args ):
"Semi-useful help for CLI"
print "available commands are:", self.cmds
print "Available commands are:", self.cmds
print
print "You may also send a command to a node using:"
print " <node> command {args}"
print "For example:"
print " mininet> h0 ifconfig"
print
print "The interpreter automatically substitutes IP addresses"
print "for node names, so commands like"
print " mininet> h0 ping -c1 h1"
print "should work."
print
print "Interactive commands are not really supported yet,"
print "so please limit commands to ones that do not"
print "require user interaction, and that will terminate"
print "after a reasonable amount of time."
def nodes( self, args ):
"List available nodes"
print "available nodes are:", [ node.name for node in self.nodelist]