2019年5月14日 星期二

lftp 使用簡介

lftp是linux上一套常用的ftp client軟體,支援FTP、SFTP、FTPS等。

假設抓取 readme.txt,結束後離開:
使用SFTP時:

lftp -e "get -c readme.txt; exit" -u <user>,<password> sftp://<domain or ip>

使用FTP時:

lftp -e "get -c readme.txt; exit" -u <user>,<password> ftp://<domain or ip>

使用FTPS時:

lftp -u <user>,<password> ftp://<domain or ip> -e "\
set ftp:ssl-force true; set ftp:ssl-protect-data true; set ssl:verify-certificate no;\
get -c readme.txt; exit"

PS:此時先使用FTP連上,再強制使用SSL傳遞帳密及資料。

沒有留言:

張貼留言