如何禁用LAN(局域网)连接?

时间:2016-07-09 16:03:50

标签: command-line windows-xp windows-firewall

我理解显示Windows XP防火墙状态的命令是:

netsh firewall show opmode

哪个输出:

enter image description here

禁用防火墙类型:

netsh firewall set opmode mode=disable profile=all

哪个输出:

enter image description here

但我找不到禁用本地连接的命令。

我该怎么做?

enter image description here

1 个答案:

答案 0 :(得分:1)

我找不到禁用“本地连接”

的命令

您需要使用interface的{​​{1}}选项。

要禁用:

netsh

启用:

netsh interface set interface "Local Area Connection" admin=disable

注意:

  • netsh interface set interface "Local Area Connection" admin=enable 替换为适配器的接口名称。
  • 使用Local Area Connection获取接口名称。

进一步阅读