function Get-MacAddress {
param( [string]$device= $( throw "Please specify device" ) )
if ( $device | ? { $_ -match "[0-9].[0-9].[0-9].[0-9]" } )
{
#"Searching by IP Address"
$ip = $device
} else {
#"Searching by Host Name"
$ip = [System.Net.Dns]::GetHostByName($device).AddressList[0].IpAddressToString
}
arp -d; # purge arp cache
$ping = ( new-object System.Net.NetworkInformation.Ping ).Send($ip);
$mac = arp -a;
if($ping)
{
( $mac | ? { $_ -match $ip } ) -match "([0-9A-F]{2}([:-][0-9A-F]{2}){5})" | out-null;
if ( $matches ) {
$matches[0];
} else {
"Not Found"
}
}
}
Get-MacAddress(192.168.2.231);
如果我跑了,我会得到以下内容:
192.168.56.1
我不确定我是如何获得IP而不是MAC。
我需要做的是获取IP地址的MAC,这样当我可以扫描IP时,我可以提取具有特定MAC的特定IP。
这些不是Windows机器,而是网络上的其他随机设备。
答案 0 :(得分:0)
固定。傻我。我传球不正确。
$device = "192.168.2.231";
Get-MacAddress($device);