Changes between Version 21 and Version 22 of Documentation/FAQ
- Timestamp:
- Dec 21, 2005, 8:00:08 PM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Documentation/FAQ
v21 v22 122 122 123 123 Can I reboot or power cycle my nodes? 124 ------------------------------------ 124 -------------------------------------- 125 125 126 126 Yes. Each of the radio nodes is independently power controlled by the chasis manager. If your node hangs, or is otherwise unresponsive, you can reboot it. From the console machine, wget -0 - http://repository:5012/cmc/ and use the XML interface to modify the state of your node. … … 220 220 221 221 222 222 223 How do I set the rate to a fixed value? 223 224 ---------------------------------------- 224 225 node.net.w0.rate = '1M' 225 226 226 227 228 229 227 How do I set the transmit power for the card? 228 ---------------------------------------------- 229 If you are using nodehandler, all you need is to specify 230 node.net.w0.tx_power = value 231 232 nodeagent will take care of the underlying commands 233 234 If you are running it on your own, then 235 236 iwconfig eth2 txpower <-12 to 20> for Intel 237 238 echo <power-level> >> /proc/sys/dev/ath0/txpowlimit 239 240 The values are from 1 to 100 in milliwatts which translate to 0 to 18dBm (it is clamped at 18 dBm) 241 242 On the 64 node grid, I dont think you will be able to achieve isolation even with -12 dBm , you may still need some noise. 230 243 231 244 }}}