Changes between Version 75 and Version 76 of GENIExperimenter/Tutorials/AnsibleHelloGENI/Execute
- Timestamp:
- 03/25/15 16:40:53 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GENIExperimenter/Tutorials/AnsibleHelloGENI/Execute
v75 v76 306 306 {{{ 307 307 #!div style="background: #ffd; border: 3px ridge; width: 1000px;" 308 On the server node do: 309 {{{ 310 #!sh 311 iperf_server_log="/var/www/iperflogs/iperf-server.log" 312 sudo bash -c "iperf -s -i 10 &> $iperf_server_log" 313 }}} 314 On the client node do: 315 {{{ 316 #!sh 317 /local/scripts/client-wget.sh& 318 /local/scripts/client-iperf.sh& 319 }}} 320 }}} 321 322 {{{ 323 #!comment 308 324 On the local node do: 309 325 {{{ … … 317 333 ansible -i inventory client -s -m shell -a "/local/scripts/client-iperf.sh &" 318 334 }}} 335 }}} 319 336 }}} 320 337 a. Browse to the server node (as in the original HelloGENI example). Do you see the same behavior you saw when you ran the original HelloGENI exercise?