Q5
Single choice
The SSHD service is controlled by the script in /etc/init.d/sshd, part of which is shown here:
[root@FAROUT ~] cat /etc/init.d/sshd
# !/bin/bash
#
# sshd Start up the OpenSSH server daemon
#
# chkconfig: 2345 55 25
# description: SSH is a protocol for secure remite shell access. \
# This service starts up the Open SSH server daemon.
#
You issue chkconfig commands to change the sshd service:
[root@FAROUT ~] # chkconfig sshd off [root@FAROUT ~] # chkconfig sshd reset
What is the result of the two commands issued?