Changes between Version 5 and Version 6 of Tutorials/g0WmLTE/Tutorial0
- Timestamp:
- Jul 2, 2012, 5:35:58 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Tutorials/g0WmLTE/Tutorial0
v5 v6 5 5 6 6 This tutorial series assumes you have an [http://www.orbit-lab.org/userManagement/register ORBIT account], have [https://www.orbit-lab.org/schedule/ scheduled a session] on the ORBIT test bed, are familiar with [http://en.wikipedia.org/wiki/Secure_Shell SSH]'ing [http://www.orbit-lab.org/wiki/Tutorial/HelloWorld#a4.RunningtheHelloWorldexperiment into the test bed itself, and are familiar with the basics of running ORBIT experiments]. If you have not done these things yet, you may wish to do so before taking a look at this slightly more advanced experiment. If you are unfamiliar with or are entirely new to ORBIT, you may wish to start [http://www.orbit-lab.org/ here]. 7 8 ---- 7 9 8 10 == Getting Started == … … 17 19 18 20 === Interacting with the Base Station === 21 22 The base station receives instructions from [http://en.wikipedia.org/wiki/GET_(HTTP)#Request_methods "http get requests"] sent from the corresponding sandbox. For example, consider 23 {{{ 24 wget -qO- http://cons-wm-01:5052/wimaxrf/datapath/config/load?name=defaults 25 }}} 26 "wget" is the command to send an http request; "-qO-" gives options for outputting the result of the request to the screen; "cons-wm-01" is the name of the base station; "5052" is the port number; "/wimaxrf/datapath/config/load" selects the subsetting "load" from the path; "?" demarcates instructions; "name=defaults" assigns "defaults" to the property "name". 27 28 == Restoring the Base Station to Defaults == 29 30 To restore the base station to defaults, run the following commands: 31 {{{ 32 wget -qO- http://cons-wm-01:5052/wimaxrf/defaults 33 wget http://cons-wm-01:5052/wimaxrf/restart 34 }}} 35 After issuing the restart command, the base station will be unavailable for 2 minutes. 36 37 38 ---- 39