Confirmed users
137
edits
| Alankligman (talk | contribs) No edit summary | Alankligman (talk | contribs)  No edit summary | ||
| Line 30: | Line 30: | ||
| * (ack) apply tzimmermann's patch (https://bug928362.bugzilla.mozilla.org/attachment.cgi?id=8425481) and try to get a stable ad-hoc network on my mako devices | * (ack) apply tzimmermann's patch (https://bug928362.bugzilla.mozilla.org/attachment.cgi?id=8425481) and try to get a stable ad-hoc network on my mako devices | ||
| * (ehsan) figure out exactly what OLSR does | * (ehsan) figure out exactly what OLSR does | ||
| === Notes === | |||
| ==== Creating a wireless ad-hoc network (linux) ==== | |||
| ===== wpa_supplicant-adhoc.conf ===== | |||
| <pre> | |||
| ctrl_interface=DIR=/run/wpa_supplicant GROUP=wheel | |||
| # use 'ap_scan=2' on all devices connected to the network | |||
| #ap_scan=2 | |||
| network={ | |||
|     ssid="meshed" | |||
|     bssid=6d:65:73:68:65:64 | |||
|     mode=1 | |||
|     frequency=2432 | |||
|     proto=WPA | |||
|     key_mgmt=WPA-NONE | |||
|     pairwise=NONE | |||
|     group=TKIP | |||
| } | |||
| </pre> | |||
|   > wpa_supplicant -i wlp2s0 -c /etc/netctl/wpa_supplicant-adhoc.conf -D nl80211,wext | |||