我有一台 Windows 7 Professional 计算机,用作 RDP 服务器。我使用过远程应用程序工具生成 .RDP 文件以连接到 RemoteApp 应用程序。
以下是.RDP 文件:
allow desktop composition:i:1
allow font smoothing:i:1
alternate full address:s:Foobar
alternate shell:s:rdpinit.exe
devicestoredirect:s:*
disableremoteappcapscheck:i:1
drivestoredirect:s:*
full address:s:Foobar
prompt for credentials on client:i:1
promptcredentialonce:i:0
redirectcomports:i:1
redirectdrives:i:1
remoteapplicationmode:i:1
remoteapplicationname:s:PeachRA
remoteapplicationprogram:s:||PeachRA
span monitors:i:1
use multimon:i:1
此 RDP 文件在 Windows 10 客户端计算机上运行良好。但是,它无法在 Macbook Pro(使用 Microsoft 远程桌面客户端)或 Chromebook(使用 Xtralogic RDP 客户端)上运行 - 它无法在这些计算机上找到服务器。
.rdp 文件已full address
设置为Foobar
。
但是,我无法Foobar
从 Macbook Pro ping 通。我尝试从 Windows 客户端计算机 ping 通它,它似乎解析为 IPv6 地址:
C:\Users\AVS Office>ping Foobar
Pinging Foobar [fe80::d8f8:80f1:1492:9ee3%9] with 32 bytes of data:
Reply from fe80::d8f8:80f1:1492:9ee3%9: time<1ms
Reply from fe80::d8f8:80f1:1492:9ee3%9: time<1ms
Reply from fe80::d8f8:80f1:1492:9ee3%9: time<1ms
这是来自 Windows 10 客户端计算机的 ipconfig:
C:\Users\AVS Office>ipconfig /all
Windows IP Configuration
Host Name . . . . . . . . . . . . : Office-XXX-2
Primary Dns Suffix . . . . . . . :
Node Type . . . . . . . . . . . . : Hybrid
IP Routing Enabled. . . . . . . . : No
WINS Proxy Enabled. . . . . . . . : No
Ethernet adapter Local Area Connection:
Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Realtek PCIe GBE Family Controller
Physical Address. . . . . . . . . : D8-50-E6-BA-XX-XX
DHCP Enabled. . . . . . . . . . . : No
Autoconfiguration Enabled . . . . : Yes
Link-local IPv6 Address . . . . . : fe80::197f:d1f5:8fd2:3418%9(Preferred)
IPv4 Address. . . . . . . . . . . : 10.1.1.11(Preferred)
Subnet Mask . . . . . . . . . . . : 255.0.0.0
Default Gateway . . . . . . . . . : 10.1.1.1
DHCPv6 IAID . . . . . . . . . . . : 249057510
DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-1A-D0-4B-B5-D8-50-E6-BA-89-51
DNS Servers . . . . . . . . . . . : 10.1.1.1
NetBIOS over Tcpip. . . . . . . . : Enabled
Ethernet adapter Ethernet:
Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : VMware Virtual Ethernet Adapter for VMnet1
Physical Address. . . . . . . . . : 00-50-56-C0-00-01
DHCP Enabled. . . . . . . . . . . : Yes
Autoconfiguration Enabled . . . . : Yes
Link-local IPv6 Address . . . . . : fe80::4850:26e2:aa65:f8fb%5(Preferred)
IPv4 Address. . . . . . . . . . . : 192.168.48.1(Preferred)
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Lease Obtained. . . . . . . . . . : Wednesday, 16 November, 2016 4:24:29 PM
Lease Expires . . . . . . . . . . : Tuesday, 22 November, 2016 11:24:37 PM
Default Gateway . . . . . . . . . :
DHCP Server . . . . . . . . . . . : 192.168.48.254
DHCPv6 IAID . . . . . . . . . . . : 67129430
DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-1A-D0-4B-B5-D8-50-E6-BA-89-51
DNS Servers . . . . . . . . . . . : fec0:0:0:ffff::1%1
fec0:0:0:ffff::2%1
fec0:0:0:ffff::3%1
NetBIOS over Tcpip. . . . . . . . : Enabled
Tunnel adapter isatap.{F2493FFC-B6B8-4BE4-BF58-E26DC84389CB}:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Microsoft ISATAP Adapter
Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
DHCP Enabled. . . . . . . . . . . : No
Autoconfiguration Enabled . . . . : Yes
Tunnel adapter isatap.{8464D47A-BE0F-46F8-BDE2-3055AF381849}:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Microsoft ISATAP Adapter #2
Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
DHCP Enabled. . . . . . . . . . . : No
Autoconfiguration Enabled . . . . : Yes
我相信 Foobar 服务器也有一个 IPv4 地址 (10.1.1.2) - 我尝试设置 .RDP 文件以指向此地址。它确实连接了,但 RemoteApp 功能不起作用 - 它似乎打开了全屏 RDP 连接。
首先,为什么Windows客户端可以通过IPv6连接,而MBP和Chromebook却不能?
其次,为什么通过 IPv6 地址连接与使用 IPv4 地址连接会有所不同,特别是对于 RDP RemoteApp 功能而言?