I want to backup my entire system using rsync incremental.To backup my entire system i need root privileges.The remote host where the backup is going to be sent dosn't allow root access.This behavior is because bastille.In sshd.conf i have
Code:
PermitRootLogin forced-commands-only
and in /root/.ssh/authorized_keys
Code:
from="192.168.1.6",command="/usr/local/bin/check_command" ssh-dss
check_command is a script that checks only the rsync command is permitted also without malicious codes.Bastille cancelled root login from /etc/securetty .I added back the ttys but still root login is not allowed where else could i check to allow root ????
Thanks