PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : seltsamer sshd - ssh login ok, aber kein scp



meinereinerseiner
20.11.09, 11:18
hallo,

ich hab eine seltsamkeit mit scp auf ein centos 5.4 system.

ssh login geht:


tom@devil-ng:~/tmp> ssh root@192.168.122.2
Last login: Fri Nov 20 12:07:04 2009 from 10.100.105.1


ein scp liefert jedoch nur:


tom@devil-ng:~/tmp> scp plepps.c root@192.168.122.2:/tmp

########################################

ohne was kopiert zu haben.

das selber verhalten, wenn ichs auf der kiste lokal zu localhost versuche.


wenn ich scp -v aufrufe, kommt aus meiner sicht auch nix was mich weiterbringt:

tom@devil-ng:~/tmp> scp -v plepps.c root@192.168.122.2:/tmp
Executing: program /usr/bin/ssh host 192.168.122.2, user root, command scp -v -t /tmp
OpenSSH_4.6p1, OpenSSL 0.9.8e 23 Feb 2007
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to 192.168.122.2 [192.168.122.2] port 22.
debug1: Connection established.
debug1: identity file /home/tom/.ssh/id_rsa type 1
debug1: identity file /home/tom/.ssh/id_dsa type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_4.3
debug1: match: OpenSSH_4.3 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_4.6
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-cbc hmac-md5 none
debug1: kex: client->server aes128-cbc hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Host '192.168.122.2' is known and matches the RSA host key.
debug1: Found key in /home/tom/.ssh/known_hosts:263
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
debug1: Next authentication method: publickey
debug1: Offering public key: /home/tom/.ssh/id_rsa
debug1: Server accepts key: pkalg ssh-rsa blen 277
debug1: read PEM private key done: type RSA
debug1: Authentication succeeded (publickey).
debug1: channel 0: new [client-session]
debug1: Entering interactive session.
debug1: Sending environment.
debug1: Sending env LANG = de_DE@euro
debug1: Sending command: scp -v -t /tmp

########################################
debug1: client_input_channel_req: channel 0 rtype exit-status reply 0
debug1: channel 0: free: client-session, nchannels 1
debug1: fd 0 clearing O_NONBLOCK
debug1: fd 1 clearing O_NONBLOCK
debug1: Transferred: stdin 0, stdout 0, stderr 0 bytes in 0.1 seconds
debug1: Bytes per second: stdin 0.0, stdout 0.0, stderr 0.0
debug1: Exit status 0

es muss irgendwie am root user liegen, nehme ich einen normalen user auf der kiste gehts.
ich habe mal auf verdacht /root/.ssh verschoben, nich das die rsa keys schuld sind, das wars aber auch nicht.
selinux ist aus, firewall auch, messagelog schweigt vor sich hin.

hat jemand eine idee?

thx,
tom

marce
20.11.09, 11:42
SELinux aktiv?

meinereinerseiner
20.11.09, 11:43
SELinux aktiv?

nachdem ich schon das letzte mal deswegen auf die nase gefallen bin, habe ich diesmal doppelt gekuckt, das es aus ist. :)

tom

marce
20.11.09, 11:47
hm, wir haben hier keinerlei Probleme beim Kopieren - auch unter root@.

andere Ziel-VZ als tmp schon mal probiert? Poste auch mal die sshd.conf...

meinereinerseiner
20.11.09, 12:06
[root@sys ~]# egrep ^[^#] /etc/ssh/sshd_config
Protocol 2
SyslogFacility AUTHPRIV
PasswordAuthentication yes
ChallengeResponseAuthentication no
GSSAPIAuthentication yes
GSSAPICleanupCredentials yes
UsePAM yes
AcceptEnv LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES
AcceptEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT
AcceptEnv LC_IDENTIFICATION LC_ALL
X11Forwarding yes
Subsystem sftp /usr/libexec/openssh/sftp-server


da wurde auch nicht rumgefummelt, es lief ja auch schon und ansich bastel ich nur am postfix dort, das hat ja nun so rein garnichts mit ssh zu tun.

tom

marce
20.11.09, 12:12
findest Du zu
Subsystem sftp /usr/libexec/openssh/sftp-server evtl. anderweitig irgendwelche Konfigurationen (z.b. in /etc/security/)

meinereinerseiner
20.11.09, 12:20
:mad: - habs - hatte was in die .bashrc vom root geschrieben, wo er mir beim login gleich den postfix queue status anzeigt, das mochte dann wohl das scp nicht - das is aber auch sowas von hinterhälltig!
hab den kram jetzt in ein script nach /etc/profile.d gelegt, nun rennt alles.

was ein stress zum freitag.

tom