| 46 | == Loading a Default Image == |
| 47 | |
| 48 | Much 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 | {{{ |
| 51 | omf-5.3 load -i wmx-tutorial.ndz -t node1-1.sb4.orbit-lab.org,node1-4.sb4.orbit-lab.org |
| 52 | }}} |
| 53 | |
| 54 | This 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 | {{{ |
| 59 | ssh root@node1-1 |
| 60 | }}} |
| 61 | |
| 62 | Check that the WiMAX drivers loaded correctly: |
| 63 | |
| 64 | {{{ |
| 65 | lsmod |
| 66 | lsmod | grep i2400m_usb |
| 67 | }}} |
| 68 | |
| 69 | If they didn't, load them: |
| 70 | |
| 71 | {{{ |
| 72 | modprobe i2400m_usb |
| 73 | }}} |
| 74 | |
| 75 | === Connect to the WiMAX Network === |
| 76 | |
| 77 | Next, use the WiMAX Configuration Utility (''wimaxcu'') to connect to the WiMAX network: |
| 78 | |
| 79 | {{{ |
| 80 | wimaxcu ron |
| 81 | wimaxcu connect network 51 |
| 82 | }}} |
| 83 | |
| 84 | === Assign an IP Address === |
| 85 | |
| 86 | By 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 | {{{ |
| 89 | ifconfig |
| 90 | ifconfig wmx0 10.41.14.1 netmask 255.255.0.0 up |
| 91 | ifconfig |
| 92 | }}} |
| 93 | |
| 94 | Note that the ''wmx0'' network card now has an IP address. |
| 95 | |
| 96 | == Testing Connection == |
| 97 | |
| 98 | Repeat 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 | {{{ |
| 101 | ssh root@node1-1 |
| 102 | ping 10.41.14.4 |
| 103 | }}} |
| 104 | |