This page has nothing to do with the book titled "Ssh for Dummies". This is just a simple "how to" for using ssh on systems where it is already installed. Because of the numberous ssh implementations, as well as the many configuration options, it is unlikely it will work for you anyway. But it just might.
The general idea behind public keys is that anybody who has the key can send a message to the key-owner; because the key owner has kep the private key private, only the key owner will be able to interpret the message.
For effective security, authentication mechanisms each party must verify the identity of the other party. Bottom line is that each party must have previously generated a public/private key pair and made the public key available to the other party.
Two distinct signature algorithms are available: DSA and RSA. The acceptable signature algorithms are dependent upon the configuration.
Steps:
ssh-keygen -t rsa
ssh-keygen -t rda
cat id_rsa.pub id_dsa.pub >sysa_pub
scp ~/.ssh/sysa_pub sysb:.ssh/
sysa_pub to the file authorized_keys
ssh sysb
cd .ssh
cat sysa_pub >>authorized_keys
| Topic SshForDummies . { Edit | Ref-By | Attach | Diffs | r1.2 | > | r1.1 } |
|
Revision r1.2 - 05 Apr 2004 - 20:52 by EliMantel Privacy Policy |
Copyright © 2000-2005 by the contributing authors.
All material on this collaboration tool is the property of the contributing authors. Collect email addresses here. Ideas, requests, problems regarding TWiki? Send feedback. |