diff between ssh_config & sshd_config


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting diff between ssh_config & sshd_config
# 1  
Old 04-17-2007
diff between ssh_config & sshd_config

Hi,
Can anybody brief me the difference between ssh_config & sshd_config. I am looking for the functionality difference.

any help appreciated
Shihab
# 2  
Old 04-17-2007
ssh_config is the SSH client configuration file (i.e. is used by the ssh program itself). sshd_config is the SSH daemon configuration file (i.e. is used by sshd).

Cheers
ZB
# 3  
Old 04-17-2007
Hi ZB,
Thanks for your reply. I am writing 5 different sftp programs for 5 servers ( transferring different files from my server to 5 different servers ).
Since the Ciphers and other details may be different for different servers I am having 5 different ssh_config files.
What is the significance of sshd_config file here. can I have one for each ? or is this the file to be updated on the remote machine ?. Here also do I have to give Ciphers name ?

Sorry to ask too much questions

Regards
Shihab
# 4  
Old 04-17-2007
As ZB said, the sshd_config file is for the sshd daemon only. Your program will refer only to the ssh_config file.
# 5  
Old 04-17-2007
Ciphers may be separated by comma, e.g. "SHA-256, none, DES, blowfish, etc..."
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

HMC ssh_config file edit

Hi, How can we edit ssh_config file on HMC server. Best regards, (6 Replies)
Discussion started by: getrue
6 Replies

2. Shell Programming and Scripting

Parse diff output into very detailed & summary report

Hello all; I'll try an explain my dilemma as best I can. But first some background: 1- I am suppose to compare a database to itself before and after changes; basically generate audit trail report. 2- This database contains "RULES" (the id field) that we use for transmitting files. 3 - The... (0 Replies)
Discussion started by: gvolpini
0 Replies

3. UNIX for Dummies Questions & Answers

Modify the ssh_config file in Cygwin

Hi all, I have installed Cygwin on my PC and am trying to modify the ssh_config file in the folder 'c:\cygwin\etc\defaults\etc'. However I noticed the owner of that file belongs to root. Unfortunately when I'm opening cygwin each time the default displayed path = 'username@PC', which means I... (1 Reply)
Discussion started by: isaacniu
1 Replies

4. Shell Programming and Scripting

MaxAuthTries in sshd_config

I am not able to determine if the above setting is for outgoing or incoming connections. I do not have the rights to change it on my system to try this out. Anyone can help shed some light on this? Thank you. (2 Replies)
Discussion started by: Leion
2 Replies

5. AIX

sshd_config default

Hi All, On sshd_config remark, many of the lines are commented out, like below #PubkeyAuthentication yes Does that mean the default of PubkeyAuthentication is no (or yes)? Thanks for any comment you may add. edit by bakunin: corrected a typo in the title to preserve searchability... (2 Replies)
Discussion started by: itik
2 Replies

6. HP-UX

whats diff. B/W /etc/checklist & /etc/fstabs

hi all, I juz want to know y tr r 2 files of same content present... is tr any sp. reason s der. b/w /etc/checklist & /etc/fstab (1 Reply)
Discussion started by: rrlog
1 Replies

7. UNIX for Advanced & Expert Users

ssh_config

Hi, I have to create an sftp configuration file. the requirement is like this Encryption algorithm : ArcFour (Implementation of the 128bit RC4 algorithm) ‘arcfour128' Fallback: (3DES algorithm) ‘3des' How do I check the arcfour128 is implementation of RC4? Also I dont see 3des algorithm... (0 Replies)
Discussion started by: shihabvk
0 Replies

8. UNIX for Advanced & Expert Users

Diff b/w modification & updated time

Hi All, What is the difference b/w last modification time and last updated time. Thanks Sweta (1 Reply)
Discussion started by: sweta
1 Replies

9. UNIX for Dummies Questions & Answers

diff between $TERM & $DISPLAY

Can anybody pls explain me the diff between $TERM & $DISPLAY ? Thanks in advance. (1 Reply)
Discussion started by: Venky
1 Replies

10. UNIX for Dummies Questions & Answers

compilation diff between aix & solaris

what is the difference in awk stmt for awk in Aix & SOLARIS files="$@" for filename in $files do awk ' BEGIN { if ( FILENAME ~ ".*bad.trans.dsm" ) code = "bad"; else if ( FILENAME ~ ".*here.*.dsm" ) code = "here"; else ... (2 Replies)
Discussion started by: ls1429
2 Replies
Login or Register to Ask a Question