Changes between Version 75 and Version 76 of GENIExperimenter/Tutorials/ClickExample/Execute
- Timestamp:
- 07/18/14 14:13:20 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GENIExperimenter/Tutorials/ClickExample/Execute
v75 v76 153 153 #!div style="background: #ddf; border: 2px ridge; width: 685px; " 154 154 {{{ 155 ping -c 3 hostB155 [mberman@hostA ~]$ ping -c 3 hostB 156 156 }}} 157 157 The command should succeed, with output like this: … … 185 185 #!div style="background: #ddf; border: 2px ridge; width: 685px; " 186 186 {{{ 187 ping -c 3 hostb187 [mberman@hostA ~]$ ping -c 3 hostb 188 188 }}} 189 189 The command should take twelve seconds to time out, then fail with output like this: … … 200 200 == 2a. Start Click Routers == 201 201 202 The extractor scriptproduces a click configuration file for each of your routers.202 `extractClickConfig.py` produces a click configuration file for each of your routers. 203 203 i. On a local terminal run the following command four times, each time substituting the `<router_name>` with one of `top`, `bottom`, `left`, `right`: 204 204 {{{ 205 205 #!div style="background: #ffd; border: 2px ridge; width: 685px;" 206 206 {{{ 207 remote-execute --useSliceAggregates <slicename> -m"sh ./startClick.sh"207 ssh -A <router_name> "sh ./startClick.sh" 208 208 }}} 209 209 You'll get output like this. … … 216 216 warning: eth4: no IPv4 address assigned 217 217 }}} 218 (Don't worry if you get warning messages, Click is just reminding you that you have no IP addresses in your core network.) 219 }}} 218 Don't worry if you get warning messages, Click is just reminding you that you have no IP addresses in your core network. 220 219 221 220 The output of the click router is redirected to `/tmp/click.out` on each host. 221 }}} 222 222 223 223 Congratulations! You are now running a non-IP core network on your four routers, along with a (primitive) non-IP multipath routing algorithm. You're ready to experiment with this configuration. … … 230 230 #!div style="background: #fdd; border: 2px ridge; width: 685px;" 231 231 {{{ 232 [mberman@host b~]$ nc -ul 24565232 [mberman@hostB ~]$ nc -ul 24565 233 233 }}} 234 234 }}} … … 237 237 #!div style="background: #ddf; border: 2px ridge; width: 685px;" 238 238 {{{ 239 [mberman@host a ~]$ nc -u hostb24565239 [mberman@hostA ~]$ nc -u hostB 24565 240 240 }}} 241 241 }}}