这是本文档旧的修订版!
自软件版本 v1.2.0.344 以来,对于大多数常见的 WiFi 场景,WiFi 设置应该相对容易。
一个值得注意的例外是无认证热点。 无认证热点 常见于火车和长途汽车、车站、酒店、机场或大型连锁咖啡馆。 它们是无需密码即可连接的 WiFi 网络,但需要 Web 浏览器才能连接到更广泛的 Internet。
打开RM然后转到wifi: 选择 SSID
/etc/wpa_supplicant/.我的是这样 /etc/wpa_supplicant/eduroam.confdeutsche-telekom-root-ca-2.crt 在示例配置中), 确保也上传它们/etc/systemd/system/multi-user.target.wants/wpa_supplicant@wlan0.service 3) 例如使用vi打开后 在 ExecStart 行使用 -c/etc/wpa_supplicant/eduroam.confsystemctl restart wpa_supplicant@wlan0.service警告:当 reMarkable 更新时,配置更改可能会丢失!
归功于 reddit/r/RemarkableTablet 上的 jfreax
要调试连接问题,请执行以下操作:
systemctl stop wpa_supplicant@wlan0.service
wpa_supplicant -C/var/run/wpa_supplicant -c/etc/wpa_supplicant/eduroam.conf -iwlan0
通过运行
wpa_supplicant
你应该会看到类似这样的输出:
Successfully initialized wpa_supplicant wlan0: Trying to associate with SSID 'eduroam' wlan0: Associated with 48:ff:36:e5:d1:98 wlan0: CTRL-EVENT-EAP-STARTED EAP authentication started wlan0: CTRL-EVENT-EAP-PROPOSED-METHOD vendor=0 method=25 wlan0: CTRL-EVENT-EAP-METHOD EAP vendor 0 method 25 (PEAP) selected wlan0: CTRL-EVENT-EAP-PEER-CERT depth=1 subject='/C=NL/ST=Noord-Holland/L=Amsterdam/O=TERENA/CN=TERENA SSL CA 3' hash=be4dd8c5d8 wlan0: CTRL-EVENT-EAP-PEER-CERT depth=0 subject='/C=BE/ST=Oost-Vlaanderen/L=Gent/O=Universiteit Gent/OU=DICT/CN=ugnps.ugent.be' hash=9c442326c372fcd43 wlan0: CTRL-EVENT-EAP-PEER-ALT depth=0 DNS:ugnps.ugent.be wlan0: CTRL-EVENT-EAP-PEER-ALT depth=0 DNS:ugnps1.ugent.be EAP-MSCHAPV2: Authentication succeeded EAP-TLV: TLV Result - Success - EAP-TLV/Phase2 Completed wlan0: CTRL-EVENT-EAP-SUCCESS EAP authentication completed successfully wlan0: WPA: Key negotiation completed with 48:ff:36:e5:d1:98 [PTK=CCMP GTK=CCMP] wlan0: CTRL-EVENT-CONNECTED - Connection to 48:ff:36:e5:d1:98 completed [id=0 id_str=] Cwlan0: CTRL-EVENT-DISCONNECTED bssid=48:ff:36:e5:d1:98 reason=3 locally_generated=1 nl80211: deinit ifname=wlan0 disabled_11b_rates=0
关键思想是在你的 reMarkable 中建立一个 SOCKS proxy 代理,然后尝试从另一个设备通过这个代理浏览网络。 这会将您重定向到强制门户页面,您可以照常填写该页面。
-D <port> ssh 标志,如下所示ssh -D 1337 root@10.11.99.1
对于 Windows PuTTY 用户,通过转到 PuTTY 配置菜单上的 Connection–>SSH–>Tunnels 来配置 ssh 端口转发。 在那里,通过制作 Source code 添加一个新的转发端口
1337
and selecting Dynamic. Then click Add and you should see “D1337” under Forwarded Ports. Now connect to your Remarkable.
about:preferences
and select Manual Proxy Configuration. The SOCKS host should be
localhost
and the port
1337
Make sure SOCKS v5 is checked too. After you are done with this guide, remember to revert the settings to their original values, or else FireFox will continue to attempt to connect through the proxy. (You can use any browser, just look up how to.)
Settings > Privacy & Security > Certificates and deselect the option “Query OCSP responder servers to confirm the current validity of certificates”. Please re enable after you have successfully connected to wifi to preserve OCSP validations during normal browsing.
The Remarkable on-screen keyboard only supports a limited number of characters. If you want to connect to a WiFi network with such a password, you can manually edit /home/root/.config/remarkable/xochitl.conf via SSH to add your WiFi network configuration. The WiFi configuration part looks something like this:
[wifinetworks] MyNetwork=@Variant(\0\0\0\b\0\0\0\x3\0\0\0\b\0s\0s\0i\0\x64\0\0\0\n\0\0\0\x6\0\x66\0o\0o\0\0\0\x10\0p\0r\0o\0t\0o\0\x63\0o\0l\0\0\0\n\0\0\0\x6\0p\0s\0k\0\0\0\x10\0p\0\x61\0s\0s\0w\0o\0r\0\x64\0\0\0\n\0\0\0\x6\0\x62\0\x61\0r)
The value part is encoded by QSettings from QT5 and contains the WiFi network ssid (network name), password and protocol (not sure which values are supported, at least psk). https://github.com/pascalw/remarkable-wifi-conf can be used to encode your network settings in the right format.
''