feat: add remaining blogs

This commit is contained in:
2022-08-10 18:05:40 -04:00
parent ec6a5df04b
commit 81a7f8b541
28 changed files with 715 additions and 3 deletions

View File

@@ -0,0 +1,30 @@
---
title: "Using IWD with YRDSB Wi-Fi"
date: "2021-09-14"
tags:
- tech
---
The iNet Wireless Daemon (iwd) is a lightweight and stable Wi-Fi manager for Linux systems. However, some configuration is needed for it to work properly on WPA Enterprise (802.1X) networks. For YRDSB:
<!-- more -->
Create the file with the following contents at `/var/lib/iwd/<ssid>.8021x`
```ini
[Security]
EAP-Method=PEAP
EAP-Identity=<username>
EAP-PEAP-Phase2-Method=MSCHAPV2
EAP-PEAP-Phase2-Identity=<username>
EAP-PEAP-Phase2-Password=<password>
[Settings]
AutoConnect=true
```
…and then connect to the network normally.
```
iwctl station wlan0 connect YRDSB-S
```