Child pages
  • 802.1X secured wifi installation

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Managing users

Adding users

Replace 'user' with the desired username.

Code Block
mysql -uroot
	use radius;
	INSERT INTO radcheck VALUES ('','usernameuser','NT-Password',':=','');
exit
adduser usernameuser # When prompted for "Current password:", ignore and press enter

...

It is sufficient to use standard utilities such as 'passwd', the password will be updated in the MySQL database as well. Tested with 'passwd' and User Accounts applet in GNOME. In case prompted with "Current password:" (exactly as written here) it is sufficient to ignore and press enter.

Deleting users

Replace 'user' with the desired username.

Code Block
mysql -uroot
	use radius;
	@@@@@@@DELETE FROM radcheck WHERE username='user';
exit
deluser usernameuser


WiFi router (NAS) configuration

...