PDA

View Full Version : how to use ssh?


icecube
29th July 2005, 05:16 PM
hi all
i have been using telnet for long time ..now i decided to switch on to ssh .
im using FC4 sshd is running
but from the terminal iwhen i use the command
ssh user@ssh.xx.xxx.xx.xxx

i get ssh: ssh.xx.xxx.xx.xxx: Name or service not known
so what is the problem the firewall is enabled to use ssh

regards

Quella
29th July 2005, 05:40 PM
What are you using for a client program? Also, what platform is the client on (linux, Windows, etc.). SSH is just like Telnet (but secure), you just issues the command 'ssh <ip_address>' if you are using the command line program.

Quella

rioguia
29th July 2005, 06:12 PM

ssh hostname.domainname.tld -l username

NOT

ssh user@ssh.xx.xxx.xx.xxx

R-HaT
29th July 2005, 06:20 PM
hi

look

[root@localhost fc4]# ssh
usage: ssh [-1246AaCfgkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]
[-D port] [-e escape_char] [-F configfile]
[-i identity_file] [-L [bind_address:]port:host:hostport]
[-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]
[-R [bind_address:]port:host:hostport] [-S ctl_path]
[user@]hostname [command]
[root@localhost fc4]# ssh fedoraforum.org
The authenticity of host 'fedoraforum.org (70.85.88.134)' can't be established.
RSA key fingerprint is 0b:7c:4a:14:15:d2:04:97:46:f4:4c:56:eb:7c:98:13.
Are you sure you want to continue connecting (yes/no)? y
Please type 'yes' or 'no': yes
Warning: Permanently added 'fedoraforum.org,70.85.88.134' (RSA) to the list of known hosts.
root@fedoraforum.org's password:

icecube
29th July 2005, 06:48 PM
ok thanks for your reply it's working now :)