Difference between revisions of "How to setup Murata LBEH59XUHC WiFi/BT module"

From IGEP - ISEE Wiki

Jump to: navigation, search
Line 1: Line 1:
 +
 +
== Ad-hoc ==
 +
 +
# Setting the operation mode to ad-hoc.
 +
iw dev wlan0 set type ibss
 +
# Setting wlan0 interface up.
 +
ip link set wlan0 up
 +
# Setting ESSID and frequency (2427MHz - channel 4)
 +
iw dev wlan0 ibss join "MyAd-Hoc" 2427
 +
# Setting ip address
 +
ip addr add 192.168.6.1/24 dev wlan0
 +
 
== Links ==
 
== Links ==
  

Revision as of 10:02, 2 October 2013

Ad-hoc

# Setting the operation mode to ad-hoc.
iw dev wlan0 set type ibss
# Setting wlan0 interface up.
ip link set wlan0 up
# Setting ESSID and frequency (2427MHz - channel 4)
iw dev wlan0 ibss join "MyAd-Hoc" 2427
# Setting ip address
ip addr add 192.168.6.1/24 dev wlan0

Links