Reputation: 847
I am trying to connect to remote solaris machine from a linux server using ssh but not able to connect to the solaris machine. I am using below ssd command to connect to the solaris machine
ssh <host_name>
After giving this command, I am not getting any prompt for username and password. Is it the limitation for linux to solaris connection ??
The output is:
root@host> ssh -v user@solaris_host
OpenSSH_5.3p1, OpenSSL 1.0.0-fips 29 Mar 2010
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to solaris_host [solaris_host] port 22.
debug1: connect to address solaris_host port 22: Connection timed out
ssh: connect to host solaris_host port 22: Connection timed out
Upvotes: 0
Views: 1811
Reputation: 9883
Go over following steps
ping
.22
is open on your remote host e.g. nmap -A 192.168.0.5/32 -p 22
svcs ssh
Come back, when the problem still exists.
Upvotes: 1