Changes between Version 4 and Version 5 of GEC15Agenda/WiMAXTutorial/WSN


Ignore:
Timestamp:
10/25/12 04:14:39 (11 years ago)
Author:
Fraida Fund
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GEC15Agenda/WiMAXTutorial/WSN

    v4 v5  
    2121OML client libraries are also available for [http://pypi.python.org/pypi/oml4py/ Python] and [http://mytestbed.net/projects/oml/wiki/Client_Programming C or C++].
    2222
    23 
    24 == Experiment Deployment ==
    25 
    2623'''Step 3''':  Create a disk image with your applications installed
    2724
     
    4037This can take a while, so we've already created a disk image for use in this tutorial. It's called '''gec15sensor.ndz'''
    4138
    42 You can load this disk image onto any number of nodes, e.g.:
    43 {{{
    44 omf load -i gec15sensor.ndz -t omf.witest.node1,omf.witest.node2,omf.witest.node3,omf.witest.node4,omf.witest.node5,omf.witest.node6,omf.witest.node7
    45 }}}
     39You can load this disk image onto any number of nodes, instead of manually installing your application and configuring each node individually!
    4640
    4741
     
    6458Review these scripts with your instructor.
    6559
     60
     61== Experiment Deployment ==
     62
     63
     64'''Step 6''': Set up your environment
     65
     66Load your disk image onto the set of nodes you want to use:
     67
     68{{{
     69omf load -i gec15sensor.ndz -t omf.witest.node1,omf.witest.node2,omf.witest.node3,omf.witest.node4,omf.witest.node5,omf.witest.node6,omf.witest.node7
     70}}}
     71
     72
     73Reset the base station to its default settings, and then restart it so that the changes will take effect:
     74
     75{{{
     76wget -qO- "http://wimaxrf:5052/wimaxrf/bs/default"
     77wget -qO- "http://wimaxrf:5052/wimaxrf/bs/restart"
     78}}}
     79
     80Don't be alarmed if the second command returns a failure message; this is normal.
     81
     82'''Step 7''': Load your WiMAX datapath
     83
     84The datapath you select will determine how your WiMAX clients will be connected; for example, will they appear on the public Internet or on the Internet2 network?
     85
     86In this case, we are using the I2 network, so we will load the '''geni''' datapath configuration:
     87{{{
     88wget -qO- "http://wimaxrf:5052/wimaxrf/datapath/config/load?name=geni"
     89}}}
     90
    6691== Experiment Execution ==
    6792