source: server/other/openssh/openssh-config.xml@ 95079c36

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb v5_0 v5_0-pre1 v5_1 v5_1-pre1 xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 95079c36 was 5842069, checked in by Larry Lawrence <larry@…>, 21 years ago

update to openssh-3.6.1p2

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@927 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 2.3 KB
Line 
1<sect2>
2<title>Configuring <application>OpenSSH</application></title>
3
4<sect3><title>Config files</title>
5
6<para><filename>/etc/ssh/ssh_config</filename>,
7<filename>/etc/ssh/sshd_config </filename></para>
8<para>There are no required changes in either of these files. However
9you may wish to view them to make changes for appropriate security to
10your system. Configuration information can be found in the man pages for sshd, ssh and ssh-agent</para>
11</sect3>
12
13<sect3><title>sshd init.d script</title>
14
15<para>Note that you only want to start the sshd server if you want to be
16able to ssh <emphasis>into</emphasis> your machine. The ssh client
17doesn't need this script to be used. Having said that, if you want to
18run the ssh daemon, the sshd init.d script can be created using the following
19commands:</para>
20
21<para><screen><userinput><command>cat &gt; /etc/rc.d/init.d/sshd &lt;&lt; "EOF"</command>
22#!/bin/sh
23# Begin $rc_base/init.d/sshd
24
25# Based on sysklogd script from LFS-3.1 and earlier.
26# Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org
27
28source /etc/sysconfig/rc
29source $rc_functions
30
31case "$1" in
32 start)
33 echo "Starting SSH Server..."
34 loadproc /usr/sbin/sshd
35 ;;
36
37 stop)
38 echo "Stopping SSH Server..."
39 killproc /usr/sbin/sshd
40 ;;
41
42 reload)
43 echo "Reloading SSH Server..."
44 reloadproc /usr/sbin/sshd
45 ;;
46
47 restart)
48 $0 stop
49 sleep 1
50 $0 start
51 ;;
52
53 status)
54 statusproc /usr/sbin/sshd
55 ;;
56
57 *)
58 echo "Usage: $0 {start|stop|reload|restart|status}"
59 exit 1
60 ;;
61esac
62
63# End $rc_base/init.d/sshd
64<command>EOF
65chmod 755 /etc/rc.d/init.d/sshd</command></userinput></screen></para>
66
67<para>Create the symbolic links to this file in the relevant <filename
68class="directory">rc.d</filename> directories with the following commands:
69<screen><userinput><command>cd /etc/rc.d/init.d &amp;&amp;
70ln -sf ../init.d/sshd ../rc0.d/K30sshd &amp;&amp;
71ln -sf ../init.d/sshd ../rc1.d/K30sshd &amp;&amp;
72ln -sf ../init.d/sshd ../rc2.d/K30sshd &amp;&amp;
73ln -sf ../init.d/sshd ../rc3.d/S30sshd &amp;&amp;
74ln -sf ../init.d/sshd ../rc4.d/S30sshd &amp;&amp;
75ln -sf ../init.d/sshd ../rc5.d/S30sshd &amp;&amp;
76ln -sf ../init.d/sshd ../rc6.d/K30sshd</command></userinput></screen></para>
77
78</sect3>
79
80</sect2>
81
Note: See TracBrowser for help on using the repository browser.