Changes for page FreeRADIUS EAP-TLS Example for 1x Authentication
Last modified by Jean Franco on 2022/06/23 22:09
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -8,7 +8,8 @@ 8 8 9 9 Below is an example of what you need to put in /etc/freeradius/eap.conf to handle the proper authentication methods, as well as enable future functionality. 10 10 11 -{{{# -*- text -*- 11 +{{code language="none"}} 12 +# -*- text -*- 12 12 ## 13 13 ## eap.conf -- Configuration for EAP types (PEAP, TTLS, etc.) 14 14 ## ... ... @@ -90,7 +90,8 @@ 90 90 mschapv2 { 91 91 #send_error = no 92 92 } 93 - }}}} 94 + } 95 +{{/code}} 94 94 95 95 == Set up clients.conf == 96 96 ... ... @@ -100,10 +100,12 @@ 100 100 101 101 In /etc/freeradius/clients.conf, add one group like: 102 102 103 -{{{client 192.168.0.0/24 { 105 +{{code language="none"}} 106 +client 192.168.0.0/24 { 104 104 secret = CHANGEME 105 105 nastype = other 106 -}}}} 109 +} 110 +{{/code}} 107 107 108 108 You can use single IPs (192.168.0.2 or 2001::beef) or netblocks (192.168.0.0/24 or 2001:beef::/64), and the device with that single IP or devices within that netblock will use the password specified as 'CHANGEME'. 109 109