Changes between Version 7 and Version 8 of Tutorials/g0WmLTE/Tutorial0


Ignore:
Timestamp:
Jul 2, 2012, 5:59:24 PM (12 years ago)
Author:
jeffrabi
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Tutorials/g0WmLTE/Tutorial0

    v7 v8  
    4444----
    4545
     46== Loading a Default Image ==
     47
     48Much like it is recommended to reset the base station to default settings, it is also recommended to load up a "clean" disk image. This helps avoid conflicts with previous user settings. It can also save time manually setting up frequently-used properties.
     49
     50{{{
     51omf-5.3 load -i wmx-tutorial.ndz -t node1-1.sb4.orbit-lab.org,node1-4.sb4.orbit-lab.org
     52}}}
     53
     54This process may take a few minutes. When it is complete, confirm the installation by SSH'ing into the nodes and checking that the settings loaded correctly.
     55
     56=== Manually Confirming Settings ===
     57
     58{{{
     59ssh root@node1-1
     60}}}
     61
     62Check that the WiMAX drivers loaded correctly:
     63
     64{{{
     65lsmod
     66lsmod | grep i2400m_usb
     67}}}
     68
     69If they didn't, load them:
     70
     71{{{
     72modprobe i2400m_usb
     73}}}
     74
     75=== Connect to the WiMAX Network ===
     76
     77Next, use the WiMAX Configuration Utility (''wimaxcu'') to connect to the WiMAX network:
     78
     79{{{
     80wimaxcu ron
     81wimaxcu connect network 51
     82}}}
     83
     84=== Assign an IP Address ===
     85
     86By this point, the drivers are loaded, and the network is connected. However, the WiMAX card hasn't been given an IP address yet. Below is the recommended IP address for node 1 on sandbox 4. (Alternate IP addresses are allowed, but require additional configuration at other stages of an experiment.)
     87
     88{{{
     89ifconfig
     90ifconfig wmx0 10.41.14.1 netmask 255.255.0.0 up
     91ifconfig
     92}}}
     93
     94Note that the ''wmx0'' network card now has an IP address.
     95
     96== Testing Connection ==
     97
     98Repeat the previous steps for other nodes. To test the connection between two nodes, use the ''ping'' utility, which sends packets at an IP address and checks for confirmation of receipt. Assuming that nodes 1 and 4 have already been connected:
     99
     100{{{
     101ssh root@node1-1
     102ping 10.41.14.4
     103}}}
     104