Translate

Mostrando las entradas con la etiqueta Telnet. Mostrar todas las entradas
Mostrando las entradas con la etiqueta Telnet. Mostrar todas las entradas

martes, 25 de octubre de 2011


Proceso:

·         Instalación de telnet:
o   Star>Administrative Tools>Server Manager>Features>add Feature.



o   Seguir el wizard habiendo seleccionado las opciones: Telenet client y Telenet server
·         Activación del servicio:
o   Star>Administrative Tools>Configuration>Services
o   Buscar Telnet>(click derecho) propiedades>Startup type: Automatic.




Category: articles

Proceso:

·         Instalación de telnet: sudo apt-get install telnetd
·         Activación del servicio: sudo /etc/init.d/openbsd-inetd restart
·         Cambiar ip del servidor: nano /etc/networking/interfaces
o   Se comentan por seguridad la línea: iface eth0 inet dhcp con el carácter '#'
o   Se mueve el servidor al segmento de red del adaptador host-only

#línea para que sirva la IP estática
auto eth0
iface eth0 inet static
address 192.168.56.3
gateway 192.168.56.254
netmask 255.255.255.0
network 192.168.56.0
broadcast 192.168.56.255



Category: articles