An Example SSH Config file for PSAS CVS Access
If you don't have one already, create the file config
in the .ssh
directory in your home directory:
mkdir ~/.ssh/config
Then, add this to it:
Compression=yes
Host=cvs.psas.pdx.edu
User=<psas_username>
IdentityFile=~/.ssh/<your_id_dsa_file>
That will:
- Automatically log you in as
instead of whatever your login is on your local box - Automatically use the generated key when you login to cvs.psas.pdx.edu
Note that this is pretty handy; you can add more entries if you work on multiple CVS projects.