X-Git-Url: https://git.grml.org/?a=blobdiff_plain;f=grml_tips;h=4546d3c98d6b7a881625140dbdb61adb1d6d6693;hb=250a5184541b90358179cd6494d61aa47c749928;hp=ba9cbebe34c86dbc5963af46c10418f005182bfd;hpb=c6d9f7c7aeb21af70894983eab78009744f081da;p=grml-tips.git diff --git a/grml_tips b/grml_tips index ba9cbeb..4546d3c 100644 --- a/grml_tips +++ b/grml_tips @@ -2982,3 +2982,22 @@ user@host.example.com:~# Notice: using 'ssh -D 8080 ..' you will get a socks5-proxy listening on localhost:8080 which you can use to tunnel everything through your "dns-uplink". -- +Configure a MadWifi device for adhoc mode: + +Disable the autocreation of athX devices: +# echo "options ath_pci autocreate=none" > /etc/modprobe.d/madwifi + +Remove the autocreated device for now: +# wlanconfig ath0 destroy + +Configuration in /etc/network/interfaces: + +iface ath0 inet static + madwifi-base wifi0 + madwifi-mode adhoc + ... + +Hints: + - Do not use interface names without ending 0 (otherwise startup fails). + - Only chooss unique names for interfaces. +--