Linux - scp를 이용한 파일 전송 (ssh 22번포트)

linux에서 ftp대신 scp를 이용해 22번 포트로 파일을 전송 할 수 있습니다.

사용법

1. scp 파일 계정@IP:상대방파일경로
ex) scp test.txt root@192.168.0.8:/scptest

2. scp -P 포트 파일 계정@IP:상대방파일경로
ex) scp -P 22 test.txt root@192.168.0.8:/scptest

1번의 경우 디폴트로 22번 포트를 사용합니다. 그러나 2번 방법은 포트를 직접 지정 할 수 있는데, ssh의 포트를 22번으로 사용하지 않는 경우 사용 할 수 있습니다.


-------------------EX----------------------
--전송자--
[root@localhost scptest]# cat test.txt
SCP
TEST
FILE
[root@localhost scptest]# scp test.txt root@192.168.0.8:/scptest
root@192.168.0.8's password: 
test.txt                                      100%   14     0.0KB/s   00:00    
--전송자--

--수신자--
[root@localhost scptest]# ls
test.txt
[root@localhost scptest]# cat test.txt
SCP
TEST
FILE
--수신자--
-------------------EX----------------------