We are testing sftp but when we tried to send a file to our remote site this error appeared:
unable to initialize mechanism library [/usr/lib/gss/gl/mech_krb5.so]
xmalloc: zero size
lost connection
We checked for similar errors and a suggestion was to add the following lines to /etc/ssh/ssh_config and sshd_config files and after doing so it appeared to work.
To /etc/ssh/ssh_config add:
GSSAPIAuthentication=no
GSSAPIKeyExchange=no
StrictHostKeyChecking no
To /etc/ssh/sshd_config add:
GSSAPIAuthentication=no
GSSAPIKeyExchange=no
Then restart ssh:
/etc/init.d/sshd restart
Can you tell me what these parameters are doing and how we resolve our problem if we take them back out?
Thanks in advance
unable to initialize mechanism library [/usr/lib/gss/gl/mech_krb5.so]
xmalloc: zero size
lost connection
We checked for similar errors and a suggestion was to add the following lines to /etc/ssh/ssh_config and sshd_config files and after doing so it appeared to work.
To /etc/ssh/ssh_config add:
GSSAPIAuthentication=no
GSSAPIKeyExchange=no
StrictHostKeyChecking no
To /etc/ssh/sshd_config add:
GSSAPIAuthentication=no
GSSAPIKeyExchange=no
Then restart ssh:
/etc/init.d/sshd restart
Can you tell me what these parameters are doing and how we resolve our problem if we take them back out?
Thanks in advance