본문 바로가기

개발/기타

시놀로지 나스 Rsync 하기 위해 SSH 접속 설정하기(Synology Nas)

반응형

백업을 하기 위해 그냥 탐색기에서 복사 붙여 넣기를 하다가 속도도 느리고 최근에 수정된 파일 찾기도 힘들고 해서 하다 보니 현타가 왔다 ㅋㅋㅋ

 

그래서 Rsync 가능한가.. 하고 보니 오잉? 되네!!

몇가지 설정이 필요했다.

 

 

 

 

 

 

 

 

 

관리자 계정으로 로그인을 합니다.

Synology Nas 로그인 화면

 

 

 

 

 

 

 

 

 

SSH 서비스를 활성화합니다.

제어판의 터미널 및 SNMP

 

제어판에 들어가서

① 터미널 및 SNMP로 이동 후

② SSH 서비스 활성화를 체크해 줍니다.

③ SSH 포트를 설정합니다. 기본 포트는 22지만 22 포트를 그냥 쓰면 공격이 많이 들어온다고 하니 외부에서 접속 가능하다면 포트 변경!

 

 

 

 

 

 

 

 

 

SSH 접속해 보기

SSH 접속 프로그램을 이용해서 접속 해 봅니다.

저는 Xshell을 이용 중입니다.

ssh 접속 명령어는 이렇게 합니다.

ssh 사용자아이디@나스IP

 

 

 

접속을 해 보겠습니다. ssh 접속 명령어를 입력하면 비밀번호 입력하는 창이 나오는데 비밀번호 입력하면 됩니다.

비밀번호 입력하는 방식은 접속 프로그램마다 다를 수 있어요.

[C:\~]$ ssh playon@192.168.x.x


Connecting to 192.168.x.x:22...
Connection established.
To escape to local shell, press 'Ctrl+Alt+]'.

WARNING! The remote SSH server rejected X11 forwarding request.

Using terminal commands to modify system configs, execute external binary
files, add files, or install unauthorized third-party apps may lead to system
damages or unexpected behavior, or cause data loss. Make sure you are aware of
the consequences of each command and proceed at your own risk.

Warning: Data should only be stored in shared folders. Data stored elsewhere
may be deleted when the system is updated/restarted.

Permission denied, please try again.

Connection closed.

Disconnected from remote host(192.168.x.x:22) at 18:58:28.

Type `help' to learn how to use Xshell prompt.

 

접속이 안됩니다!! 😨

위 포트 설정하는 곳에서 20022 포트로 변경을 한걸 깜박했네요 ㅋㅋ

 

 

 

포트를 추가해서 다시 시도!

[C:\~]$ ssh playon@192.168.x.x:20022


Connecting to 192.168.x.x:20022...
Connection established.
To escape to local shell, press 'Ctrl+Alt+]'.

WARNING! The remote SSH server rejected X11 forwarding request.

Using terminal commands to modify system configs, execute external binary
files, add files, or install unauthorized third-party apps may lead to system
damages or unexpected behavior, or cause data loss. Make sure you are aware of
the consequences of each command and proceed at your own risk.

Warning: Data should only be stored in shared folders. Data stored elsewhere
may be deleted when the system is updated/restarted.

Permission denied, please try again.

Connection closed.

Disconnected from remote host(192.168.x.x:20022) at 19:04:06.

Type `help' to learn how to use Xshell prompt.

 

그래도 안됩니다!!!!!! 🙄

권한 설정이 필요할 것 같네요. ㅎ..

 

 

 

 

 

 

 

 

 

접속 아이디 권한 주기

사용자에게 관리자 권한주기

다시 제어판에 들어간 후,

① 사용자 및 그룹에 들어갑니다.

② 접속할 아이디를 더블 클릭합니다. (위에 편집 버튼 눌러도 됩니다.)

 

 

 

 

① 위에 탭 중에 사용자 그룹으로 이동 후

② administrators 항목에 체크를 해줍니다.

그리고 저장!

 

 

 

 

 

 

 

 

 

다시 SSH 접속해 보기

[C:\~]$ ssh backuptool@192.168.x.x:20022


Connecting to 192.168.x.x:20022...
Connection established.
To escape to local shell, press 'Ctrl+Alt+]'.

WARNING! The remote SSH server rejected X11 forwarding request.

Using terminal commands to modify system configs, execute external binary
files, add files, or install unauthorized third-party apps may lead to system
damages or unexpected behavior, or cause data loss. Make sure you are aware of
the consequences of each command and proceed at your own risk.

Warning: Data should only be stored in shared folders. Data stored elsewhere
may be deleted when the system is updated/restarted.

Could not chdir to home directory /var/services/homes/playon: No such file or directory
playon@SYNOLOGY-NAS:/$

 

예~ 접속 성공~~~

 

하지만 rsync가 필요한 엘지 넷하드 NAS에 ssh 접속이 안된다!!!!!! 이런 ㅋㅋ

안되면 뭐.. 또 탐색기에서 복사 붙여 넣기 해야지 ㅠㅠ

 

 

 

반응형