美文网首页
CentOS 7 使用 nc 从服务器上传下载文件

CentOS 7 使用 nc 从服务器上传下载文件

作者: awker | 来源:发表于2018-08-29 01:42 被阅读0次

1、安装 nc

# yum install nc -y

2、下载文件

// 在 45.77.17.128 这台主机监听 9988 端口(注意符号是 "<" )
# nc -l 9988 < Python-3.6.6.tar.xz

// 在 192.168.1.254 这台主机下载文件(注意符号是 ">" )
# nc --recv-only 45.77.17.128 9988 > Python-3.6.6.tar.xz

3、上传文件

// 在 45.77.17.128 这台主机监听 9988 端口(注意符号是 ">" )
# nc -l 9988 > command.tar.gz

// 在 192.168.1.254 这台主机上传文件(注意符号是 "<" )
# nc --send-only 45.77.17.128 9988 < command.tar.gz

相关文章

网友评论

      本文标题:CentOS 7 使用 nc 从服务器上传下载文件

      本文链接:https://www.haomeiwen.com/subject/lngcwftx.html