Questions about ssh


 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers Questions about ssh
# 1  
Old 11-25-2019
Questions about ssh

Lets say a brand new user types:


Code:
ssh-keygen

then:
Code:
ssh-copy-id -i remoteServerLocation.com

What all happens on the server side? For instance, obviously the id_rsa.pub key is copied to the servers "authorized_keys" file but what else happens?
Is anything added to the servers "known_hosts" file?

My account on the server side has 4 files @ ~/.ssh: "authorized_keys", "id_rsa", "id_rsa.pub" and "known_hosts". Why does it have id_rsa and id_rsa.pub? Were those
generated when I ran the ssh-copy-id command or were they generated when someone from it ran ssh-cop-id on the server side?
# 2  
Old 11-25-2019
Quote:
Originally Posted by Circuits
Lets say a brand new user types:


Code:
ssh-keygen

then:
Code:
ssh-copy-id -i remoteServerLocation.com

What all happens on the server side? For instance, obviously the id_rsa.pub key is copied to the servers "authorized_keys" file but what else happens?
Is anything added to the servers "known_hosts" file?
known_hosts is for the client side ssh-copy-id will not change the servers known_hosts file

Quote:
Originally Posted by Circuits
My account on the server side has 4 files @ ~/.ssh: "authorized_keys", "id_rsa", "id_rsa.pub" and "known_hosts". Why does it have id_rsa and id_rsa.pub? Were those
generated when I ran the ssh-copy-id command or were they generated when someone from it ran ssh-cop-id on the server side?
id_rsa and id_rsa.pub are generated by ssh-keygen on the server side, these would be used to another servers by sharing id_rsa.pub with this other machine. They are not touched by clients running ssh-copy-id
This User Gave Thanks to Chubler_XL For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Find active SSH servers w/ ssh keys on LAN

Hi, I am trying to complete my bash script in order to find which SSH servers on LAN are still active with the ssh keys, but i am frozen at this step: #!/bin/bash # LAN SSH KEYS DISCOVERY SCRIPT </etc/passwd \ grep /bin/bash | cut -d: -f6 | sudo xargs -i -- sh -c ' && cat... (11 Replies)
Discussion started by: syrius
11 Replies

2. UNIX for Beginners Questions & Answers

Ssh script to validate ssh connection to multiple serves with status

Hi, I want to validate ssh connection one after one for multiple servers..... password less keys already setup but now i want to validate if ssh is working fine or not... I have .sh script like below and i have servers.txt contains all the list of servers #/bin/bash for host in $(cat... (3 Replies)
Discussion started by: sreeram4
3 Replies

3. Shell Programming and Scripting

Ssh = ssh expect and keep everything not change include parameter postion

I have write a script which contains ssh -p 12345 dcplatform@10.125.42.50 ssh 127.0.0.1 -p 5555 "$CMD" ssh root@$GUEST_IP "$CMD" before I use public key, it works well, now I want to change to "expect", BUT I don't want to change above code and "parameter position" I can post a... (1 Reply)
Discussion started by: yanglei_fage
1 Replies

4. Homework & Coursework Questions

Print questions from a questions folder in a sequential order

1.) I am to write scripts that will be phasetest folder in the home directory. 2.) The folder should have a set-up,phase and display files I have written a small script which i used to check for the existing users and their password. What I need help with: I have a set of questions in a... (19 Replies)
Discussion started by: moraks007
19 Replies

5. Shell Programming and Scripting

Using ssh to add register key on ssh server

Hi, I want to use ssh to add a register key on remote ssh server. Since there are space characters in my register key string, it always failed. If there is no space characters in the string, it worked fine. The following is what I have tried. It seems that "ssh" command doesn't care about double... (9 Replies)
Discussion started by: leaftree
9 Replies

6. AIX

ssh public key setup questions.

Hi all, I have N number of AIX hosts, where I need to login frequently and do some routine tasks (run some scripts). I need to setup ssh public/private key, so I can auto-login via a master (wrapper) script and run each script in each server. I am trying to setup/generate ssh keys, but am... (6 Replies)
Discussion started by: haroon_a
6 Replies

7. Shell Programming and Scripting

could not send commands SSH session with Net::SSH::Expect

I am using Net::SSH::Expect to connect to the device(iLO) with SSH. After the $ssh->login() I'm able to view the prompt, but not able to send any coommands. With the putty I can connect to the device and execute the commands without any issues. Here is the sample script my $ssh =... (0 Replies)
Discussion started by: hansini
0 Replies

8. Shell Programming and Scripting

SSH questions

#!/bin/ksh ssh-keygen -t rsa for host in `cat filename` do ssh ${LOGNAME}@$host "mkdir -p ~/.ssh" echo "Please key in password for host:"$host" (only if prompted)" ________________________________________________________ scp ~/.ssh/id_rsa.pub ${LOGNAME}@$host:~/id_rsa.pub ... (1 Reply)
Discussion started by: pinnacle
1 Replies

9. UNIX for Advanced & Expert Users

ssh-keygen questions (not working)

I have created the keys and placed the public key in the remote user directory (not the server root). (remote machine: dwebapp1) ex: /home/webarch/user_name/.ssh/authorized_keys2 cannot ssh into the remote machine using the following command: ssh ${dwebapp1} the manned description gives... (10 Replies)
Discussion started by: tekline
10 Replies
Login or Register to Ask a Question