Changes between Version 75 and Version 76 of GENIExperimenter/Tutorials/AnsibleHelloGENI/Execute


Ignore:
Timestamp:
03/25/15 16:40:53 (9 years ago)
Author:
sedwards@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GENIExperimenter/Tutorials/AnsibleHelloGENI/Execute

    v75 v76  
    306306{{{
    307307#!div style="background: #ffd; border: 3px ridge; width: 1000px;"
     308On 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}}}
     314On 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
    308324On the local node do:
    309325   {{{
     
    317333ansible -i inventory client -s -m shell -a "/local/scripts/client-iperf.sh &"
    318334   }}}
     335}}}
    319336}}}
    320337 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?