网络请求
DNS
DNS 解析检索与查询:
$ dig ns alicdn.com
nc
想要连接到某处: nc [-options] hostname port[s][ports] …
,绑定端口等待连接: nc -l -p port [-options][hostname] [port]
:
-g gateway source-routing hop point[s], up to 8
-G num source-routing pointer: 4, 8, 12, …
-h 帮助信息
-i secs 延时的间隔
-l 监听模式,用于入站连接
-n 指定数字的 IP 地址,不能用 hostname
-o file 记录 16 进制的传输
-p port 本地端口号
-r 任意指定本地及远程端口
-s addr 本地源地址
-u UDP 模式
-v 详细输出——用两个
-v 可得到更详细的内容
-w secs timeout 的时间
-z 将输入输出关掉——用于扫描时,其中端口号可以指定一个或者用 lo-hi 式的指定范围。
常见用法:
# 端口扫描
$ nc -v -w 2 192.168.2.34 -z 21-24
# 监听
$ nc -l 1234
$ nc 192.168.2.34 1234
# 文件拷贝,从 192.168.2.33 拷贝文件到 192.168.2.34
$ nc -l 1234 > test.txt # 192.168.2.34
$ nc 192.168.2.34 < test.txt # 192.168.2.33
# 发送端
$ cat a.txt | nc -l 3333
# 接收端
$ nc 192.168.0.3 3333 > a.txt