Generating keys: Difference between revisions

From Noisebridge
Jump to navigation Jump to search
No edit summary
No edit summary
Line 16: Line 16:
</pre>
</pre>


Notice that 'pony.pub' is world readable, but the (private) pony key is only readable by you, the owner.
Notice that 'pony.pub' is world readable, but the (private) pony key is only readable by you, the owner. Feel free to write your public key down on your wiki user page, your tax returns or your favorite bathroom stall.

Revision as of 14:45, 7 December 2010

This is a tutorial for creating keys for use with pony

The command:

ssh-kegen -t dsa

will generate a DSA key pair that we can use to authenticate ourselves.

After pressing enter you'll be asked for a file location, with a default name of id_dsa located in your ~/.ssh/ directory. It's a good idea to give it a useful name (for our purpose, 'pony' will do). You'll also be asked for an optional pass phrase for the key. You can skip this by pressing enter if you like.

You'll now have two files, 'pony' and 'pony.pub' in your ~/.ssh/ directory:

-rw------- 1 switch switch  736 Dec  7 04:46 pony
-rw-r--r-- 1 switch switch  602 Dec  7 04:46 pony.pub

Notice that 'pony.pub' is world readable, but the (private) pony key is only readable by you, the owner. Feel free to write your public key down on your wiki user page, your tax returns or your favorite bathroom stall.