SSH... Bad configuration option: PermitLocalCommand

This is what I keep getting every time I try to use scp. This tells me I have been hacked at some point. How can I get scp to work so I can get my stuff off the server and onto another with ease?
Code:
[CMD]scp -r ca user@111.111.111.111:/usr/local/www/sites[/CMD]
command-line: line 0: Bad configuration option: PermitLocalCommand
lost connection
 
Can you do $ ssh -o PermitLocalCommand=no [email=user@111.111.111.111]user@111.111.111.111[/email]?

What do you get if you run the following commands?

Code:
[cmd=#]sh[/cmd]
[cmd=#]which scp[/cmd]
/usr/bin/scp
[cmd=#]strings $(which scp) | grep \/[/cmd]
/libexec/ld-elf.so.1
5/T 
I;,$v/I
%s/%s: name too long
%s/%s
/bin/cp
[color=blue]/usr/bin/ssh[/color]
 
Back
Top