Changes between Version 4 and Version 5 of Tutorials/ICDCS2013/GettingStartedWithGENI_I/Procedure/Execute


Ignore:
Timestamp:
07/05/13 11:36:41 (11 years ago)
Author:
sedwards@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Tutorials/ICDCS2013/GettingStartedWithGENI_I/Procedure/Execute

    v4 v5  
    5252
    5353=== 4.2 Download and compile experiment software ===
    54   1. Download pingPlus software:
    55      a. Browse to: http://www.gpolab.bbn.com/local-sw/
    56      b. Select `pingPlus-0.2.tar.gz` and then press "Download".
    57      c. The software disclaimer will come up.  Press "Accept".
    58      d. When prompted save the file on your local machine.
    59      e. Upload pingPlus onto each of your nodes.
    60 {{{
    61 scp -P 30010 pingPlus-0.2.tar.gz sedwards@pc1.instageni.gpolab.bbn.com:.
    62 }}}
    63   2. Compile pingPlus
    64 {{{
    65 ssh into node
     54 1. Download the pingPlus software:
     55{{{
     56wget http://www.gpolab.bbn.com/experiment-support/Layer2Ping/pingPlus-0.2.tar.gz
     57}}}
     58 2. Decompress and compile the pingPlus software:
     59{{{
    6660tar xvfz pingPlus-0.2.tar.gz
    6761cd pingPlus-0.2
    6862make
     63}}}
     64 3. Your output should look like this:
     65{{{
     66client:~% wget http://www.gpolab.bbn.com/experiment-support/Layer2Ping/pingPlus-0.2.tar.gz
     67--2013-07-05 09:32:26--  http://www.gpolab.bbn.com/experiment-support/Layer2Ping/pingPlus-0.2.tar.gz
     68Resolving www.gpolab.bbn.com (www.gpolab.bbn.com)... 192.1.249.17
     69Connecting to www.gpolab.bbn.com (www.gpolab.bbn.com)|192.1.249.17|:80... connected.
     70HTTP request sent, awaiting response... 200 OK
     71Length: 4726 (4.6K) [application/x-gzip]
     72Saving to: `pingPlus-0.2.tar.gz'
     73
     74100%[================================================================================================================================================================>] 4,726       --.-K/s   in 0.07s
     75
     762013-07-05 09:32:27 (69.1 KB/s) - `pingPlus-0.2.tar.gz' saved [4726/4726]
     77
     78client:~% tar xvfz pingPlus-0.2.tar.gz
     79./._pingPlus-0.2
     80pingPlus-0.2/
     81pingPlus-0.2/._Makefile
     82pingPlus-0.2/Makefile
     83pingPlus-0.2/._packetFunctions.c
     84pingPlus-0.2/packetFunctions.c
     85pingPlus-0.2/._packetFunctions.h
     86pingPlus-0.2/packetFunctions.h
     87pingPlus-0.2/._pingPlus.c
     88pingPlus-0.2/pingPlus.c
     89pingPlus-0.2/._pingPlusListener.c
     90pingPlus-0.2/pingPlusListener.c
     91pingPlus-0.2/._README
     92pingPlus-0.2/README
     93client:~% cd pin
     94pingPlus-0.2/        pingPlus-0.2.tar.gz
     95client:~% cd pingPlus-0.2
     96client:~/pingPlus-0.2% make
     97gcc    -c -o packetFunctions.o packetFunctions.c
     98gcc    -c -o pingPlusListener.o pingPlusListener.c
     99gcc  packetFunctions.o pingPlusListener.o  -o pingPlusListener
     100gcc    -c -o pingPlus.o pingPlus.c
     101gcc  packetFunctions.o pingPlus.o -o pingPlus
    69102}}}
    70103