Windows上的IP别名ARP可以像在Unix上一样吗?

在FreeBSD上,当我有一个接口与两个IP:

ifconfig nic0 192.168.0.1 netmask 255.255.255.0 ifconfig nic0 alias 192.168.0.2 netmask 255.255.255.255 

如果我ping的别名,如果我ping从的主机,例如192.168.0.20,还没有在ARPcaching中,这将导致下面的ARP请求:

 Who has 192.168.0.20? Tell 192.168.0.1 

换句话说,ARP请求来自接口主IP。

但是,在Windows 7或Server 2008R2上,如果我configuration类似的界面:

 netsh int ipv4 set address "LAN" static 192.168.0.1 255.255.255.0 netsh int ipv4 add address "LAN" 192.168.0.2 255.255.255.255 skipassource=true 

当我这样做,它会导致这个ARP请求:

 Who has 192.168.0.20? Tell 192.168.0.2 

这是否可以改变,以及在Windows上,ARP请求总是来自主接口IP?