In general, all you have to be concerned of is how to format the generated public key from your client machines to fit in the authorized_keys file on your centos server. For example, the following is the public key generated by puttygen on a Windows machine:
Code:
---- BEGIN SSH2 PUBLIC KEY ----
Comment: "rsa-key-20141013"
AAAAB3NzaC1yc2EAAAABJQAAAIEA2YAf4Y10NYtO13QVBFKLcT1DDKErK5oU4/0o
up4i2CnPRJVoBx2f2sIQMmw2Jq73WkyqwlAFr3iqtN5FLKVBcXLQilvpSXidboaG
19RyGOVt5eZubOS3lnaZ7eNHGwa/cbF/N0ma1zJVn6h2VYNQUEHwQiiI4yny2KaI
ioqvbgM=
---- END SSH2 PUBLIC KEY ----
should turn this into something like
Code:
ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAIEA2YAf4Y10NYtO13QVBFKLcT1DDKErK5oU4/0o
up4i2CnPRJVoBx2f2sIQMmw2Jq73WkyqwlAFr3iqtN5FLKVBcXLQilvpSXidboaG
19RyGOVt5eZubOS3lnaZ7eNHGwa/cbF/N0ma1zJVn6h2VYNQUEHwQiiI4yny2KaI
ioqvbgM= rsa-key-20141013
and add it to your centos machine's authorized_keys
I just don't know how the public key looks like in the other machines.
Also, I am just being general with my response since..
Quote:
Originally Posted by thealmightyos
I am hoping with the help from the security gurus here I can figure out the correct way to secure my system.
|
is quite a broad topic.