-
Notifications
You must be signed in to change notification settings - Fork 2
/
ssh_server
24 lines (17 loc) · 969 Bytes
/
ssh_server
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
# Copiar la configuración del archivo sshd_config original y hacer una copia de seguridad
sudo cp /etc/ssh/sshd_config /etc/ssh/sshd_config.bak
# Modificar la configuración del archivo sshd_config
sudo sed -i 's/#PermitRootLogin prohibit-password/PermitRootLogin no/g' /etc/ssh/sshd_config
sudo sed -i 's/PasswordAuthentication yes/PasswordAuthentication no/g' /etc/ssh/sshd_config
# Reiniciar el servicio de SSH
sudo systemctl restart sshd
# Crear un nuevo usuario para SSH
echo "$(tput setaf 1)[$(tput setaf 3)*$(tput setaf 1)]$(tput setaf 6)Introduce el nombre del nuevo usuario para SSH:"
read ssh_user
sudo adduser $ssh_user
sudo usermod -aG sudo $ssh_user
# Información para el usuario
echo "$(tput setaf 1)[$(tput setaf 3)*$(tput setaf 1)]$(tput setaf 6)Usuario $ssh_user creado satisfactoriamente."
echo "$(tput setaf 1)[$(tput setaf 3)*$(tput setaf 1)]$(tput setaf 6)Puedes acceder por SSH con: ssh $ssh_user@<ip_del_servidor>"
tput sgr0