Configuracion De Ssh
Enviado por gfjkckhbkj • 12 de Febrero de 2015 • 259 Palabras (2 Páginas) • 235 Visitas
CONFIGURACIÓN DE SSH, TELNET, FTP
Revisamos si ya está instalado el ssh :
$ service ssh status
ssh: unrecognized service
Instalar paquete openssh-server (se requiere conexión a internet). Nos cambiamos a usuario root:
$ sudo su root
[sudo] password for user:
Luego ejecutamos el comando para la instalación:
# apt-get install openssh-server
Para comprobar si quedó funcionando:
$ service ssh status
ssh start/running, process 2505
Para comprobar todos los servicios
$ nmap localhost
Starting Nmap 5.00 ( http://nmap.org ) at 2011-02-24 13:45 CST
Warning: Hostname localhost resolves to 2 IPs. Using 127.0.0.1.
Interesting ports on localhost (127.0.0.1):
Not shown: 998 closed ports
PORT STATE SERVICE
22/tcp open ssh
631/tcp open ipp
PARA DESCARGAR LOS PAQUETES DE INTERNET:
# apt-get install -d openssh-server
Leyendo lista de paquetes... Hecho.
Necesito descargar 2378kB de archivos.
Se utilizarán 4870kB de espacio de disco adicional después de desempaquetar.
¿Desea continuar [S/n]? s
Des:1 http://mx.archive.ubuntu.com hardy-updates/main openssh-blacklist 0.1-1ubuntu0.8.04.1 [2124kB]
Des:2 http://mx.archive.ubuntu.com hardy-updates/main openssh-server 1:4.7p1-8ubuntu1.2 [254kB]
En el directorio /var/cache/apt/archives se encuentran los paquetes descargados que son los siguientes:
openssh-blacklist_0.1-1ubuntu0.8.04.1_all.deb
openssh-server_1%3a4.7p1-8ubuntu1.2_i386.deb
COPIAR LOS PAQUETES EN LA COMPUTADORA DONDE SE VAYAN A INSTALAR Y EJECUTAR:
# dpkg -i openssh-blacklist_0.1-1ubuntu0.8.04.1_all.deb...
# dpkg -i openssh-server_1%3a4.7p1-8ubuntu1.2_i386.deb
FUNCIONAMIENTO
# adduser ana
$ ssh ana@localhost
PARA TELNET
# apt-get install telnetd
Para Reiniciar
# /etc/init.d/openbsd-inetd restart
PARA FTP
Instalar Paquete de FTP
# apt-get install vsftpd
# gedit /etc/vsftpd.conf
Descomentar las siguientes lineas
Local_enable = YES
Write_enable = YES
Para Reiniciar
# service vsftpd restart
Configuración IP
# cd /etc/network
# cp interfaces interfacesOLD
abrir el archivo "interfaces"
# nano ./interfaces
auto lo
iface lo inet loopback
Modificamos el archivo para que contenga lo siguiente:
auto eth0
iface eth0 inet static
address 10.27.43.2 # ip fija
netmask 255.255.255.0 #
...