리눅스(CentOS 기준)에서 시놀로지 나스로 백업 같은 쉘스크립트를 편하게 실행하기 위해서는 비번 입력 없이 접속이 가능해야합니다. 먼저 리눅스에서 아래 ssh-keygen 으로 RSA 암호키를 먼저 만듭니다. [root@localhost ~]# ssh-keygen -t rsa Generating public/private rsa key pair. Enter file in which to save the key (/root/.ssh/id_rsa): Created directory ‘/root/.ssh’. Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /root/.ssh/id_rsa. Your public key has been saved in /root/.ssh/id_rsa.pub. ssh-copy-id -p포트번호 나스어드민ID@192.168.1.2첫 접속시 비밀번호를 한번 입력하면 위에서 만든 key가 나스 서버로 복사가 됩니다. 이제 나스 서버로 접속해봅니다.ssh 나스어드민ID@192.168.1.2…