目 录CONTENT

文章目录

netsh 相关使用命令

JomBarry
2024-04-21 / 0 评论 / 0 点赞 / 32 阅读 / 0 字 / 正在检测是否收录...

一个命令行脚本工具,用于查看或更改本地计算机的网络配置。它可以在命令行接口(CLI)中运行,并支持多种子命令,允许用户管理包括 IP 地址、网络接口、防火墙设置等在内的网络组件。

# 查看当前IP配置(显示当前机器的网络接口配置,包括分配的 IP 地址、子网掩码、默认网关等)
netsh interface ip show config

# 设置静态IP地址(将名为“本地连接”的网络接口的 IP 地址设置为静态地址 192.168.1.100,子网掩码设置为 255.255.255.0,网关设置为 192.168.1.1)
netsh interface ip set address "本地连接" static 192.168.1.100 255.255.255.0 192.168.1.1 1

# 设置DNS服务器地址 将名为“本地连接”的网络接口的 DNS 服务器地址设置为 8.8.8.8(Google 的公共 DNS)
netsh interface ip set dns "本地连接" static 8.8.8.8

# 重置网络配置(可以重置网络接口的 IP 配置,通常用于解决网络问题)
netsh int ip reset

# 配置Windows 防火墙(添加一条规则,允许入站的 TCP 流量通过 80 端口。)
netsh advfirewall firewall add rule name="Open Port 80" dir=in action=allow protocol=TCP localport=80

# 查看所有网络接口(显示所有网络接口及其状态)
netsh interface show interface

# 查看所有网络代理接口
netsh interface portproxy show all

# 切换到WLAN环境配置
netsh wlan show profiles

# 端口映射转发(将 xxx.xxx.xxx.xxx:26790 转发到 127.0.0.1:26790)
netsh interface portproxy add v4tov4 listenport=26790 listenaddress=127.0.0.1 connectport=26790 connectaddress=xxx.xxx.xxx.xxx
0
  1. 支付宝打赏

    qrcode alipay
  2. 微信打赏

    qrcode weixin
Traffmonetizer VPS 回血赚取额外收益

评论区