Skip to content

Commit

Permalink
[2024-01-16 15:48:53] Ionut Bostan: EAP config
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonymccaigue committed Jan 16, 2024
1 parent 7575dc1 commit f021d43
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions packages/docusaurus/docs/build5-docs/70-eap-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,28 @@ EAP-TLS Network Configuration on RaspberryPi 4B using the RT5370 Wireless Adapte
```sudo apt install dnsmasq```
```sudo apt install hostapd```

2.
2. Edit or add /etc/dnsmasq.conf:
```
# Set the Wireless interface
interface=wlan1
# Set DHCP IP pool range
dhcp-range=10.0.0.10,10.0.0.20,255.255.255.0,24h
# Set the gateway IP address
# dhcp-option=3,192.168.1.1
dhcp-option=3,10.0.0.1
# Set DNS server address
dhcp-option=6,172.31.191.225
# Disable DNS server capability
port=0
```
3. Save the new configuration:
```sudo dnsmasq -C /etc/dnsmasq.conf```
4. Configure the wlan interface which will be used to interact with the wifi clients:
sudo nano /usr/local/bin/wlan0staticip.sh
Implementation partia based on methods as discussed in [Transforming Your Raspberry Pi into a Secure Enterprise Wi-Fi Controller with 802.1x Authentication](https://myitrambles.com/transforming-your-raspberry-pi-into-a-secure-enterprise-wi-fi-controller-with-802-1x-authentication/)
Implementation based in part on methods as discussed in [Transforming Your Raspberry Pi into a Secure Enterprise Wi-Fi Controller with 802.1x Authentication](https://myitrambles.com/transforming-your-raspberry-pi-into-a-secure-enterprise-wi-fi-controller-with-802-1x-authentication/)

0 comments on commit f021d43

Please sign in to comment.