X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=grml_tips;h=66f46a541a30d81d6dc2e36d540779e78c06ad58;hb=42d529ed4951169521e868ba6bd35abc70de8c1a;hp=5a12dca5f4b02786b893aaa60a5f197c2a17b52e;hpb=8c5e9082ffa6acdde2322529133b89541a5dc75d;p=grml-tips.git diff --git a/grml_tips b/grml_tips index 5a12dca..66f46a5 100644 --- a/grml_tips +++ b/grml_tips @@ -2651,7 +2651,8 @@ See: man grml-terminalserver + http://grml.org/terminalserver/ -- Debugging SSL communications: -% openssl s_client -connect server.adress:993 +% openssl s_client -connect server.adress:993 > output_file +% openssl x509 -noout -text -in output_file or @@ -2982,3 +2983,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. +--