13/05/2005, 14:49
|
| | | Fecha de Ingreso: junio-2004
Mensajes: 435
Antigüedad: 20 años, 5 meses Puntos: 2 | |
Hi:
Ya tengo solucionado el problema, por lo que he visto en la red el problema era el siguiente tenia instalado varios NIC, bueno cambiando en el archivo /etc/ssh/sshd_config
ListenAddress 0.0.0.0 por
ListenAddress 192.168.100. (IP del nic sobre que actua ssh)
Comentar que tambien he optado por deshabilitar el Ipv 6 desde /etc/modoutils/aliases
Aun que no tengo muy claro el significado de NIC ¿puede ser interface de red?
--------------------
¿Otra aplicación esta utilizando el puerto 22?
# netstat -A inet -an
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 0.0.0.0:515 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:199 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:139 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:20012 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:7634 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:631 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:445 0.0.0.0:* LISTEN
# lsof -i:22
COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
sshd 2971 root 4u IPv6 6695 TCP *:ssh (LISTEN)
#lsof -i tcp | grep ssh
sshd 2971 root 4u IPv6 6695 TCP *:ssh (LISTEN)
Última edición por amartinez; 13/05/2005 a las 15:21 |