You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.2 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# **nc**
## 说明
**nc命令** 用于设置路由器。执行本指令可设置路由器的相关参数
## 选项
```markdown
-g<网关> 设置路由器跃程通信网关最丢哦可设置8个
-G<指向器数目> 设置来源路由指向器其数值为4的倍数
-h 在线帮助
-i<延迟秒数> 设置时间间隔,以便传送信息及扫描通信端口
-l 使用监听模式,管控传入的资料
-n 直接使用IP地址而不通过域名服务器
-o<输出文件> 指定文件名称把往来传输的数据以16进制字码倾倒成该文件保存
-p<通信端口> 设置本地主机使用的通信端口
-r 乱数指定本地与远端主机的通信端口
-s<来源位址> 设置本地主机送出数据包的IP地址
-u 使用UDP传输协议
-v 显示指令执行过程
-w<超时秒数> 设置等待连线的时间
-z 使用0输入/输出模式,只在扫描通信端口时使用
```
## 实例
```bash
nc -v -z -w2 192.168.0.3 1-100 # TCP端口扫描,扫描192.168.0.3 的端口 范围是 1-100
nc -u -z -w2 192.168.0.1 1-1000 # 扫描UDP端口,扫描192.168.0.3 的端口 范围是 1-1000
nc -nvv 192.168.0.1 80 # 扫描指定端口,扫描 80端口
```