This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
getting_started:20_install_ubuntu_freeradius_3 [2022/06/13 06:17] admin [Configuring FreeRADIUS version 3.x] |
getting_started:20_install_ubuntu_freeradius_3 [2022/08/31 21:56] (current) admin |
||
---|---|---|---|
Line 16: | Line 16: | ||
sudo systemctl status freeradius | sudo systemctl status freeradius | ||
</ | </ | ||
- | |||
====== Configuring FreeRADIUS version 3.x ====== | ====== Configuring FreeRADIUS version 3.x ====== | ||
* Do the following to configure FreeRADIUS 3.x to work with RADIUSdesk | * Do the following to configure FreeRADIUS 3.x to work with RADIUSdesk | ||
- | + | <code bash> | |
- | * Configure the site-wide shared secret. This will be the value used by ALL Dynamic Clients. | + | # Stop the service if it is already running |
+ | sudo systemctl stop freeradius | ||
+ | # Backup the original FreeRADIUSdirectory | ||
+ | sudo mv / | ||
+ | # Extract the RADIUSdesk modified FreeRADIUS directory | ||
+ | sudo tar xzf / | ||
+ | sudo mv / | ||
+ | sudo chown -R freerad. / | ||
+ | sudo mkdir / | ||
+ | chown freerad. / | ||
+ | </ | ||
+ | | ||
<code bash> | <code bash> | ||
sudo vi / | sudo vi / | ||
Line 95: | Line 105: | ||
<code bash> | <code bash> | ||
# Members of the admin group may gain root privileges | # Members of the admin group may gain root privileges | ||
- | %admin ALL=(ALL) ALL www-data ALL = NOPASSWD:/ | + | %admin ALL=(ALL) ALL www-data ALL = NOPASSWD:/ |
</ | </ | ||
* Confirm that this line is now inside the / | * Confirm that this line is now inside the / |