$ftp xx.xx.xx.xx
username
password
ftp> passive
(需要关闭passive模式,不然上传不了)
查看远程FTP服务器文件命令:
ftp> ls
若ls卡住不动(如上图),是由于防火墙未关闭导致。
(service iptables stop 临时关闭防火墙,处理完成后再开启:service iptables start)
连接OK后,即可进行文件上传下载操作了,命令如下:
ftp> cd /remotedir
ftp> put /home/test remote_test
ftp> get remote_test /home/local_test