Have to say Chris seems to have covered all bases. but to specify port 24 you just add the switch -p 24
Aaron
On Wednesday 21 November 2001 15:44, you wrote:
I am using it exactly as you specify but as mentioned in another reply I think that I need to specify port 24 but I don't know how.
Barry Samuels
Aaron Walker aaron@transversal.com wrote:
Barry,
how are you using ssh?
You need to type ssh -l <username> <host you want to connect to>
hopefully you will then get a message asking you if you are sure you want to this particular host to be added to your known_hosts file just type yes. You should now have shell access.
Aaron
On Wednesday 21 November 2001 15:15, you wrote:
My web site hosting company have just changed from Telnet to SSH.
I am unable to establish a connection and I'm not sure quite what
I'm
supposed to do at my end.
I'm running Debian Potato and have installed SSH. Do I need to do anything else in order to use it? I have looked at the man page
but,
as always, I don't understand it.
SSH appears to connect to the host but exits with 'secure
connection
refused'.
Any help gratefully received.
Barry Samuels
main@lists.alug.org.uk http://www.anglian.lug.org.uk/ http://lists.alug.org.uk/mailman/listinfo/main Unsubscribe? See message headers or the web site above!
Yes! It now works. However I get:
'The authenticity of host <host> cannot be established'
Is it something that I should worry about?
Thanks for the help everyone.
Barry Samuels
Aaron Walker aaron@transversal.com wrote:
Have to say Chris seems to have covered all bases. but to specify port 24 you just add the switch -p 24
Aaron
On Wednesday 21 November 2001 15:44, you wrote:
I am using it exactly as you specify but as mentioned in another
reply
I think that I need to specify port 24 but I don't know how.
Barry Samuels
Aaron Walker aaron@transversal.com wrote:
Barry,
how are you using ssh?
You need to type ssh -l <username> <host you want to connect
to>
hopefully you will then get a message asking you if you are sure
you
want to this particular host to be added to your known_hosts file just
type
yes. You should now have shell access.
Aaron
On Wednesday 21 November 2001 15:15, you wrote:
My web site hosting company have just changed from Telnet to
SSH.
I am unable to establish a connection and I'm not sure quite
what
I'm
supposed to do at my end.
I'm running Debian Potato and have installed SSH. Do I need
to do
anything else in order to use it? I have looked at the man
page
but,
as always, I don't understand it.
SSH appears to connect to the host but exits with 'secure
connection
refused'.
Any help gratefully received.
Barry Samuels
main@lists.alug.org.uk http://www.anglian.lug.org.uk/ http://lists.alug.org.uk/mailman/listinfo/main Unsubscribe? See message headers or the web site above!
Sounds like ssh is unable to do a reverse dns lookup on you. Probably means you have dynamic ipaddress, so dont worry to much
Aaron On Wednesday 21 November 2001 16:05, bsamuels@beenthere-donethat.org.uk wrote:
Yes! It now works. However I get:
'The authenticity of host <host> cannot be established'
Is it something that I should worry about?
Thanks for the help everyone.
Barry Samuels
Aaron Walker aaron@transversal.com wrote:
Have to say Chris seems to have covered all bases. but to specify port 24 you just add the switch -p 24
Aaron
On Wednesday 21 November 2001 15:44, you wrote:
I am using it exactly as you specify but as mentioned in another
reply
I think that I need to specify port 24 but I don't know how.
Barry Samuels
Aaron Walker aaron@transversal.com wrote:
Barry,
how are you using ssh?
You need to type ssh -l <username> <host you want to connect
to>
hopefully you will then get a message asking you if you are sure
you
want to this particular host to be added to your known_hosts file just
type
yes. You should now have shell access.
Aaron
On Wednesday 21 November 2001 15:15, you wrote:
My web site hosting company have just changed from Telnet to
SSH.
I am unable to establish a connection and I'm not sure quite
what
I'm
supposed to do at my end.
I'm running Debian Potato and have installed SSH. Do I need
to do
anything else in order to use it? I have looked at the man
page
but,
as always, I don't understand it.
SSH appears to connect to the host but exits with 'secure
connection
refused'.
Any help gratefully received.
Barry Samuels
main@lists.alug.org.uk http://www.anglian.lug.org.uk/ http://lists.alug.org.uk/mailman/listinfo/main Unsubscribe? See message headers or the web site above!
main@lists.alug.org.uk http://www.anglian.lug.org.uk/ http://lists.alug.org.uk/mailman/listinfo/main Unsubscribe? See message headers or the web site above!
on Wed, Nov 21, 2001 at 04:05:50PM +0000, bsamuels@beenthere-donethat.org.uk wrote:
Yes! It now works. However I get:
'The authenticity of host <host> cannot be established'
Is it something that I should worry about?
Maybe. As this is the first time you've successfully connected to the host you did not have a copy of the hosts public key in your ssh known_hosts file (located in ~/.ssh/known_hosts or for protocol 2 with older versions of openssh, ~/.ssh/known_hosts2). Therefore there is no way for your copy of ssh to verify the public key presented to you by the server is the correct one for that host. This key is, however, stored so should it change at a later date, you will be notified upon connect. This is how the server authenticates itself to you.
cat /etc/ssh_host*.pub or cat /etc/ssh/ssh_host*.pub should reveal the public ssh1/ssh2 rsa/dsa keys currently being used by sshd on the server, you can compare these to the one stored in ~/.ssh/known_hosts