如何禁用 LAN(局域网)连接?
How do I disable a LAN (Local Area Network) connection?
我理解显示 Windows XP 防火墙状态的命令是:
netsh firewall show opmode
输出:
要禁用防火墙类型:
netsh firewall set opmode mode=disable profile=all
输出:
但是我找不到禁用本地连接的命令。
我该怎么做?
我找不到禁用的命令"Local Area Connection"
您需要使用 netsh
的 interface
选项。
要禁用:
netsh interface set interface "Local Area Connection" admin=disable
启用:
netsh interface set interface "Local Area Connection" admin=enable
备注:
- 将
Local Area Connection
替换为您的适配器的接口名称。
- 使用
netsh interface show interface
获取接口名称。
进一步阅读
- An A-Z Index of the Windows CMD command line - 所有与 Windows cmd 行相关的内容的绝佳参考。
- netsh - 配置网络接口,Windows 防火墙、路由和远程访问。
- Netsh commands for Interface IP
- Netsh Commands for Wireless Local Area Network (WLAN)
我理解显示 Windows XP 防火墙状态的命令是:
netsh firewall show opmode
输出:
要禁用防火墙类型:
netsh firewall set opmode mode=disable profile=all
输出:
但是我找不到禁用本地连接的命令。
我该怎么做?
我找不到禁用的命令"Local Area Connection"
您需要使用 netsh
的 interface
选项。
要禁用:
netsh interface set interface "Local Area Connection" admin=disable
启用:
netsh interface set interface "Local Area Connection" admin=enable
备注:
- 将
Local Area Connection
替换为您的适配器的接口名称。 - 使用
netsh interface show interface
获取接口名称。
进一步阅读
- An A-Z Index of the Windows CMD command line - 所有与 Windows cmd 行相关的内容的绝佳参考。
- netsh - 配置网络接口,Windows 防火墙、路由和远程访问。
- Netsh commands for Interface IP
- Netsh Commands for Wireless Local Area Network (WLAN)