Solved ssh generation

Hi,

I haven't generated ssh key for a long time and I was wondering if anyone could tell me what syntax to use for optimum security in FreeBSD 10.2.
In the past I used:
ssh-keygen -b 4096 -f ~/.ssh/id_rsa4096_test -C fred@freebsd_test -o -a 500
 
Thank you for the link above :)
I had made a few adjustments to my /ssh/sshd_config file.
Just a quick question... When securing ssh on the server, do I need to do anything with /ssh/ssh_config?
Do I only need to add setting in there is I am going to ssh to other server from it?
 
In my ssh_config on all servers and workstations I have the following at the top of the file:

Code:
Host *
[INDENT]IdentitiesOnly yes
UseRoaming no[/INDENT]

I also have a specification for KexAlgorithms, MACs, and ciphers - you will need to set this according to your environment and the types of systems you are connecting to.
 
Back
Top