Podcast
Questions and Answers
¿Cuál es la función principal de OpenSSH?
¿Cuál es la función principal de OpenSSH?
¿Qué herramienta del servidor OpenSSH escucha las peticiones de conexión?
¿Qué herramienta del servidor OpenSSH escucha las peticiones de conexión?
¿Qué comando se utiliza para instalar el servidor OpenSSH en Ubuntu?
¿Qué comando se utiliza para instalar el servidor OpenSSH en Ubuntu?
¿Cuál de las siguientes opciones NO es un método de autenticación utilizado por OpenSSH?
¿Cuál de las siguientes opciones NO es un método de autenticación utilizado por OpenSSH?
Signup and view all the answers
¿Qué archivo se edita para configurar el comportamiento del servidor OpenSSH?
¿Qué archivo se edita para configurar el comportamiento del servidor OpenSSH?
Signup and view all the answers
¿Cuál de las siguientes afirmaciones sobre OpenSSH es correcta?
¿Cuál de las siguientes afirmaciones sobre OpenSSH es correcta?
Signup and view all the answers
¿Qué se debe utilizar para obtener más información sobre las directivas de configuración del servidor OpenSSH?
¿Qué se debe utilizar para obtener más información sobre las directivas de configuración del servidor OpenSSH?
Signup and view all the answers
¿Cuál de las siguientes herramientas cliente permite realizar una copia segura de archivos usando OpenSSH?
¿Cuál de las siguientes herramientas cliente permite realizar una copia segura de archivos usando OpenSSH?
Signup and view all the answers
¿Cuál es el primer paso recomendado antes de modificar el archivo /etc/ssh/sshd_config?
¿Cuál es el primer paso recomendado antes de modificar el archivo /etc/ssh/sshd_config?
Signup and view all the answers
¿Cuál es la directiva que se debe modificar para cambiar el puerto por el que escucha OpenSSH?
¿Cuál es la directiva que se debe modificar para cambiar el puerto por el que escucha OpenSSH?
Signup and view all the answers
Si quieres que el servidor OpenSSH muestre un banner de advertencia antes del inicio de sesión, ¿qué directiva debes usar?
Si quieres que el servidor OpenSSH muestre un banner de advertencia antes del inicio de sesión, ¿qué directiva debes usar?
Signup and view all the answers
¿Qué comando se utiliza para reiniciar el servidor sshd después de realizar cambios en el archivo de configuración?
¿Qué comando se utiliza para reiniciar el servidor sshd después de realizar cambios en el archivo de configuración?
Signup and view all the answers
¿Cuál sería una consecuencia de tener una directiva de configuración incorrecta en /etc/ssh/sshd_config?
¿Cuál sería una consecuencia de tener una directiva de configuración incorrecta en /etc/ssh/sshd_config?
Signup and view all the answers
Al habilitar la autenticación por clave pública en el archivo de configuración, ¿qué línea se debe añadir o modificar?
Al habilitar la autenticación por clave pública en el archivo de configuración, ¿qué línea se debe añadir o modificar?
Signup and view all the answers
Para proteger la copia de seguridad del archivo original, ¿cuál de los siguientes comandos se debe utilizar?
Para proteger la copia de seguridad del archivo original, ¿cuál de los siguientes comandos se debe utilizar?
Signup and view all the answers
¿Qué comando se utiliza para instalar el servidor OpenSSH?
¿Qué comando se utiliza para instalar el servidor OpenSSH?
Signup and view all the answers
Study Notes
OpenSSH Server Installation and Configuration
- OpenSSH is a free version of the Secure Shell (SSH) protocol that supports remote control and file transfers between computers.
- OpenSSH provides a daemon and clients to enable secure, encrypted remote control and file transfer operations.
- To install the OpenSSH server and client applications, use the following commands in a terminal:
-
sudo apt-get install openssh-server
-
sudo apt-get install openssh-client
-
- The OpenSSH server daemon,
sshd
, listens for client connections. - You can configure the default behavior of the OpenSSH server by editing the
/etc/ssh/sshd_config
file. - Examples of directives that can be changed in the
sshd_config
file:- To make OpenSSH listen on TCP port 2222 instead of the default port 22:
-
Port 2222
- To enable public-key authentication:
-
PubkeyAuthentication yes
- To display the contents of the
/etc/issue.net
file as a banner before login, use the banner directive: -
Banner /etc/issue.net
- To make configuration changes effective after editing the
sshd_config
file, restart the SSH server:-
sudo /etc/init.d/ssh restart
-
Testing OpenSSH Server
- Update system packages:
apt-get update
- Upgrade existing packages:
apt-get upgrade
- Install the OpenSSH server:
apt-get install openssh-server
- Run commands to test the service.
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.