Skip to content

Commit 790fbd9

Browse files
committed
Updated.
1 parent 1269f5d commit 790fbd9

4 files changed

+12
-14
lines changed

tasks/freeradius-setup-server-add-client-user.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ in the assembly -->
2424
<para>
2525
You can add a client and a user to test authentication for the FreeRADIUS server. The client is a client of the RADIUS server, such as a wireless access point or switch. The users are added in the user configuration file and the clients are added in the client configuration file. These configuration files are stored on the server where FreeRADIUS is installed.
2626
</para>
27-
<para>The machines that can use the devices of the FreeRADIUS server are defined in the <filename>client.conf</filename> file.</para>
27+
<para>The machines that can use the devices of the FreeRADIUS server are defined in the <filename>/etc/raddb/clients.conf</filename> file.</para>
2828
</abstract>
2929
</info>
3030
<procedure xml:id="add-client-user"><title>Configuring users and clients</title>
@@ -38,9 +38,9 @@ in the assembly -->
3838
Service-Type = New-User,
3939
Framed-IP-Address = 190.155.2.50</screen></step>
4040
<step>
41-
<para>Add a test client and user to test the authentication in <filename>/etc/raddb/client.conf</filename>.</para>
42-
<screen>vi /etc/raddb/client.conf</screen>
43-
<para>A test client, localhost, is provided in <filename>/etc/raddb/client.conf</filename>, with the secret <literal>testing123</literal>.</para>
41+
<para>Add a test client and user to test the authentication in <filename>/etc/raddb/clients.conf</filename>.</para>
42+
<screen>&prompt.sudo; vi /etc/raddb/clients.conf</screen>
43+
<para>A test client, localhost, is provided in <filename>/etc/raddb/clients.conf</filename>, with the secret <literal>testing123</literal>.</para>
4444
<screen>client private-networks {
4545
ipaddr = 190.1.0/22
4646
secret = testingabc-1
@@ -53,7 +53,7 @@ in the assembly -->
5353
</step><step>
5454
<para>Add clients of the RADIUS server, such as a wireless access point, network switch, or another form of NAS.</para>
5555
<para>Create a client configuration on your server by using the following example.</para>
56-
<para>Uncomment the following entry in <filename>/etc/raddb/client.conf</filename> and use the IP address of your test client machine or access gateway instead of the given IP address.</para>
56+
<para>Uncomment the following entry in <filename>/etc/raddb/clients.conf</filename> and use the IP address of your test client machine or access gateway instead of the given IP address.</para>
5757
<screen>client private-network-1 {
5858
ipaddr = 192.0.2.0/24
5959
secret = testing123-1
@@ -62,9 +62,9 @@ secret = testing123-1
6262
</step>
6363
<step>
6464
<para>On the client machine, install <command>freeradius-server-utils</command>. </para>
65-
<screen>&prompt.sudo;sudo zypper install freeradius-server and freeradius-server-utils</screen>
65+
<screen>&prompt.sudo; zypper install freeradius-server freeradius-server-utils</screen>
6666
</step>
6767
</procedure>
68-
<para>You can now add more users and configure databases. </para>
68+
<para>You can now add more users and configure database. </para>
6969
<para>Run one more login test from a different computer on your network. </para>
7070
</topic>

tasks/freeradius-setup-server-create-test-certificates.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ in the assembly -->
2323
<abstract><!-- can be changed via merge in the assembly -->
2424
<para>Certificates enable secure communication between the FreeRADIUS clients and the FreeRADIUS server.</para>
2525
<para>
26-
To allow access to the server, certificate authentication is required. To test the authentication using FreeRADIUS, you can create test certificates. The following example shows how to create test certificates to test FreeRADIUS. Ensure that you remove the test certificates and use the correct certificates after testing FreeRADIUS.</para>
26+
To allow access to the server, certificate authentication is required. To test the authentication using FreeRADIUS, you can create test certificates. The following example shows how to create test certificates to test FreeRADIUS. Ensure that you remove the test certificates created for testing and use the correct certificates after testing FreeRADIUS.</para>
2727
<note><para>The test certificates created are not suitable for production use.</para></note>
2828
</abstract>
2929
</info>

tasks/freeradius-setup-server-start-freeradius.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ in the assembly -->
2222
<meta name="maintainer" content="[email protected]" its:translate="no"/>
2323
<abstract><!-- can be changed via merge in the assembly -->
2424
<para>
25-
After adding client and user, you must start the FreeRADIUS daemon.
26-
</para>
25+
After adding client and user, you must start the FreeRADIUS daemon.</para>
2726
</abstract>
2827
</info>
2928
<procedure xml:id="start-freeradius"><title>Starting the FreeRADIUS daemon</title>

tasks/freeradius-setup-server-start-server.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,14 @@ in the assembly -->
2222
<meta name="maintainer" content="[email protected]" its:translate="no"/>
2323
<abstract><!-- can be changed via merge in the assembly -->
2424
<para>
25-
You must start FreeRADIUS on the server after installation.
25+
You must start FreeRADIUS on the server after installation. For testing, after creating bootstrap, start the FreeRADIUS server in debugging mode.
2626
</para>
2727
</abstract>
2828
</info>
2929
<procedure xml:id="freeradius-setup-server-start-freeradius-server"><title>Starting FreeRADIUS</title>
3030
<para>After the bootstrap is complete, start the server in debugging mode as a <literal>root</literal> user.</para>
3131
<step>
32-
<para>To do this, run the following command:</para>
33-
<note><para>Start the FreeRADIUS server in debugging mode only for testing. Other than for testing, use <command>sudo systemctl start freeradius</command></para></note>
32+
<note><para>Start the FreeRADIUS server in debugging mode only for testing. Other than for testing, use <command>&prompt.sudo; systemctl start freeradius</command></para></note>
3433

3534
<screen>&prompt.sudo; radiusd -X
3635
[...]
@@ -43,6 +42,6 @@ in the assembly -->
4342
Listening on proxy address :: port 58415
4443
Ready to process requests</screen>
4544
<para>The <literal>Listening</literal> and <literal>Ready to process requests</literal> appear when the server starts correctly.</para>
46-
</step>
45+
</step>
4746
</procedure>
4847
</topic>

0 commit comments

Comments
 (0)