Changes between Version 4 and Version 5 of GEC15Agenda/WiMAXTutorial/WSN
- Timestamp:
- 10/25/12 04:14:39 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GEC15Agenda/WiMAXTutorial/WSN
v4 v5 21 21 OML 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++]. 22 22 23 24 == Experiment Deployment ==25 26 23 '''Step 3''': Create a disk image with your applications installed 27 24 … … 40 37 This can take a while, so we've already created a disk image for use in this tutorial. It's called '''gec15sensor.ndz''' 41 38 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 }}} 39 You can load this disk image onto any number of nodes, instead of manually installing your application and configuring each node individually! 46 40 47 41 … … 64 58 Review these scripts with your instructor. 65 59 60 61 == Experiment Deployment == 62 63 64 '''Step 6''': Set up your environment 65 66 Load your disk image onto the set of nodes you want to use: 67 68 {{{ 69 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 70 }}} 71 72 73 Reset the base station to its default settings, and then restart it so that the changes will take effect: 74 75 {{{ 76 wget -qO- "http://wimaxrf:5052/wimaxrf/bs/default" 77 wget -qO- "http://wimaxrf:5052/wimaxrf/bs/restart" 78 }}} 79 80 Don't be alarmed if the second command returns a failure message; this is normal. 81 82 '''Step 7''': Load your WiMAX datapath 83 84 The 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 86 In this case, we are using the I2 network, so we will load the '''geni''' datapath configuration: 87 {{{ 88 wget -qO- "http://wimaxrf:5052/wimaxrf/datapath/config/load?name=geni" 89 }}} 90 66 91 == Experiment Execution == 67 92