Hey,
i have a EDUROAM account from my company (user/pw) and a ca.pem certificate that i stole off a linux machine that was connected.
I want a openwrt router to connect to the network and share the internet to my lan. I am failing conntecting to the EDUROAM network.
What i did so far:
installed OpenWrt 23.05.3 + Luci -> reset
connected to luci -> set a pw -> scanned with radio1, can see eduroam ssid
scp /home/user/Desctop/ca.pem root@192.168.1.1:/etc/ssl/certs/
ssh root@192.168.1.1
vi /etc/config/wireless added:
config wifi-iface 'eduroam'
option device 'radio1'
option network 'wwan'
option mode 'sta'
option ssid 'eduroam'
option encryption 'wpa2+ccmp'
option eap_type 'peap'
option auth 'MSCHAPV2'
option identity 'xxxxxxx'
option password 'xxxxxxxxx
option anonymous_identity 'xxxxxxxx'
option ca_cert '/etc/ssl/certs/ca.pem'
option auth_server 'server'
option auth_server2 'server2'
config interface 'wwan'
option proto 'dhcp'
Also changed all radios to enabled.
/etc/init.d/network reload
/etc/init.d/network restart
Could not get the wifi to connect. Did i miss anything?