X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=nonm.html;h=1b0bfcc61b89559170948a8f354628bd00b8ebc4;hb=1e3e2841384dedcf4ffa680f0f942ce063addcff;hp=5baa4737dcba5c4d40842f70f5bd3bb829571395;hpb=83d673a1753c80c93dbe3f40dc78505260a6b921;p=martlubbers.net.git diff --git a/nonm.html b/nonm.html index 5baa473..1b0bfcc 100644 --- a/nonm.html +++ b/nonm.html @@ -79,5 +79,44 @@ update_config=1 Note that it resides by default in /usr/sbin. wpa_gui is a graphical frontend where you can add, remove, diagnose and change wireless networks with almost as much functionality as wpa_cli.

+ +

eduroam

+

+ Eduroam gives a nice configuration assistant tools nowadays that will generate a wpa_supplicant.conf entry for you. + Previously you could hash your password using md4 but I haven't tested whether this still works. +

+ +

update: cat broken

+ The tool worked before™ but not anymore on my debian testing version. + Therefore I've pasted my config here for later reference. + You get the ca_cert from the assistant tool. + I might upload that here as well. +
+network={
+	ssid="eduroam"
+	proto=RSN
+	key_mgmt=WPA-EAP
+	pairwise=CCMP
+	auth_alg=OPEN
+	eap=PEAP
+	identity="YOURUSERNAME@ru.nl"
+	anonymous_identity="anonymous@ru.nl"
+	password="YOURPASSWORD"
+#	ca_cert="/home/frobnicator/.cat_installer/ca.pem"
+	domain_suffix_match="authenticatie.ru.nl"
+	phase2="auth=MSCHAPV2"
+}
+		
+

+ +

openssl update

+

+ The new version of openssl disables everything lower than TLSv1.2. + If you see errors in /var/log/syslog about TLS you have to allow lower version TLS versions by changing the last two lines in /etc/ssl/openssl.cnf to: +

+MinProtocol = TLSv1.0
+CipherString = DEFAULT@SECLEVEL=1
+		
+