Changes between Version 3 and Version 4 of Tutorial/HowToSwitch
- Timestamp:
- Nov 29, 2007, 12:24:45 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Tutorial/HowToSwitch
v3 v4 15 15 }}} 16 16 17 [[BR]] 17 18 === Getting Started === 18 19 … … 20 21 21 22 {{{ 22 tellnodeon all23 orbit tell on all 23 24 # will turn On the entire set of 20x20 nodes on the 'grid' 24 25 25 tellnodeoffs [[3,1],[5,6],[1,1..2]]26 orbit tell offs [[3,1],[5,6],[1,1..2]] 26 27 # will turn Off (soft) the nodes 3,1 and 5,6 and 1,1 and 1,2 27 28 28 tellnodeoffh system:topo:circle29 orbit tell offh system:topo:circle 29 30 # will turn Off (hard) the nodes in the topology file 'repository/system/topo/circle.rb' 30 31 31 tellnodeon mytopo32 orbit tell on mytopo 32 33 # will turn On the nodes in the topology file './mytopo.rb' 33 34 }}} 34 35 36 37 [[BR]] 35 38 === Learning More === 36 39 37 The complete available option /commands for ''tellnode'' are:40 The complete available options for this command is given by ''"orbit help tell"'': 38 41 39 42 {{{ 40 tellnode --help 43 orbit help tell 41 44 42 45 Switch ON/OFF the nodes in a testbed 43 46 Usage: 44 tellnode[-h]45 tellnode[COMMAND] [TOPOLOGY] [DOMAIN]47 orbit tell [-h] 48 orbit tell [COMMAND] [TOPOLOGY] [DOMAIN] 46 49 47 50 With: … … 57 60 58 61 Some Examples: 59 tellnodeon all grid60 tellnodeon 1,1..261 tellnodeoffs [[1,2],[1,1]] sb162 tellnodeoffs [[1,1],[2..6,1..2]]63 tellnodeoffh system:topo:all64 tellnodeoffh topo_grid_active62 orbit tell on all grid 63 orbit tell on 1,1..2 64 orbit tell offs [[1,2],[1,1]] sb1 65 orbit tell offs [[1,1],[2..6,1..2]] 66 orbit tell offh system:topo:all 67 orbit tell offh topo_grid_active 65 68 }}} 66 69