Windows Server 2008 路由/NAT-USB 无线适配器未显示

Windows Server 2008 路由/NAT-USB 无线适配器未显示

我有一个运行 Windows 2008 Server Enterprise 的多宿主系统,并且我正尝试与连接到该系统的其他网络共享 USB wifi 适配器上的 Internet 连接。

为此,我安装了 DHCP、DNS 和路由及远程访问服务。DHCP 和 DNS 运行良好,但 NAT 是个问题。

在此位置:

Network Polic and Access Services
   Routing and Remote Access
      IPv4
         NAT

我已将所有内部网络接口添加为私有接口(wifi适配器未显示在列表中),当我尝试“新建接口...”将 USB wifi适配器添加为公共接口时,我只会看到此对话框:

---------------------------
Routing and Remote Access
---------------------------
No new router interfaces are available for addition.
---------------------------
OK   
---------------------------

例如netsh routing ip nat show global输出以下数据:

netsh routing ip nat>show interface

NAT Local Wired Configuration
---------------------------
Mode              : Private Interface

NAT Local Wireless Configuration
---------------------------
Mode              : Private Interface

NAT Internal Configuration
---------------------------
Mode              : Private Interface

netsh routing ip show interface显示以下数据:

netsh routing ip>show interface
State       Type         Interface
----------  -----------  ---------------------------------------------
Enabled     Dedicated    {6EABF40E-36FA-4AEA-9524-E967F73E0348}
Enabled     Dedicated    Local Wired
Enabled     Dedicated    Local Wireless
Enabled     Internal     Internal
Enabled     Loop Back    Loopback

(我想知道 GUID 命名的适配器是否是 wifi 适配器。)

ipconfig /all以下是相关 wifi 适配器的输出:

Wireless LAN adapter Inet:

  Connection-specific DNS Suffix  . :
  Description . . . . . . . . . . . : Belkin Wireless G USB Network Adapter #2
  Physical Address. . . . . . . . . : 00-17-3F-8F-76-75
  DHCP Enabled. . . . . . . . . . . : No
  Autoconfiguration Enabled . . . . : Yes
  Link-local IPv6 Address . . . . . : fe80::cd31:4169:aead:c138%13(Preferred)
  IPv4 Address. . . . . . . . . . . : 192.168.100.1(Preferred)
  Subnet Mask . . . . . . . . . . . : 255.255.255.0
  Default Gateway . . . . . . . . . : 192.168.100.254
  DNS Servers . . . . . . . . . . . : 192.168.100.1
  NetBIOS over Tcpip. . . . . . . . : Enabled

(之所以是 #2 是因为我之前拔掉了它然后又重新加了回去。)

我从服务器上发布这个问题,USB wifi 接口是它出去的唯一途径,所以它肯定是有效的。我只是不知道如何让 NAT 知道它。

答案1

我找到了一种似乎可以可靠地重新通知 NAT 我的适配器的方法。

  • 在服务器管理器中选择“路由和远程访问”
  • 在上下文(或操作)菜单中选择“禁用路由和远程访问”
  • 然后“配置并启用……”
  • 无线适配器再次可见,以便使用 NAT 进行选择和配置。

相关内容