首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >从pingable IP地址中获取MAC地址列表

从pingable IP地址中获取MAC地址列表
EN

Stack Overflow用户
提问于 2015-12-29 05:43:02
回答 1查看 3.4K关注 0票数 0

目标:获取一个数组,其中包含主机名(通过DNS,如果没有找到,则为空)、网络上活动设备的MAC地址和IP地址。这必须适用于非窗口设备(交换机、ESX主机等),这样WMI就失效了。

我到目前为止所拥有的,基于这个帖子

代码语言:javascript
复制
    [CmdletBinding()]
Param (
    [string]$Network = "192.168.1",
    [int]$IPStart = 1,
    [int]$IPEnd = 255
)

$outArray = @()
ForEach ($IP in ($IPStart..$IPEnd))
{
    Try {
        $Ping = Get-WMIObject Win32_PingStatus -Filter "Address = '$Network.$IP' AND ResolveAddressNames = TRUE" -ErrorAction Stop
    }
    Catch {
        $windows = 0
        $hostname = ([system.net.dns]::GetHostByAddress($IP)).hostname
        Continue
    }
    if ($Ping.StatusCode -eq 0)
    {
        Try {
            $Adapters = Get-WmiObject Win32_NetworkAdapter -Filter "NetEnabled = True" -ComputerName $Ping.ProtocolAddressResolved -ErrorAction Stop
        }
        Catch {
            $windows = 0
            Continue
        }
        if ($windows -ne 0) {
            ForEach ($Adapter in $Adapters)
            {   $Config = Get-WmiObject Win32_NetworkAdapterConfiguration -Filter "Index = $($Adapter.Index)" -ComputerName $Ping.ProtocolAddressResolved
                ForEach ($IPAddr in $Config.IPAddress)
                {   $adapterInfo = New-Object PSObject -Property @{
                        Host = $Ping.ProtocolAddressResolved
                        'Interface Name' = $Adapter.Name
                        'IP Address' = $IPAddr
                        'MAC Address' = $Config.MACAddress
                    }
                    $outArray += $adapterInfo
                }
            }
        }
    }
    Else {
        $MACAddress = ?     # NEED THIS INFORMATION

        $hostinfo = New-Object PSObject -Property @{
                Host = ""
                'Interface Name' = "" # Don't care in this instance. Placeholder to keep the array happy
                'IP Address' = $IP
                'MAC Address' = $MACAddress
            }
        $outArray += $hostInfo
    }
}

$outArray | Export-CSV -Path .\ipinfo.csv -notypeinformation

编辑:这是最后的工作脚本,谁想要它作为一个参考。函数来自这里

代码语言:javascript
复制
[CmdletBinding()]
Param (
    [string]$Network = "192.168.1",
    [int]$IPStart = 1,
    [int]$IPEnd = 254
)

### FUNCTIONS ###
Function Get-MACFromIP {
param ($IPAddress)

$sign = @"
using System;
using System.Collections.Generic;
using System.Text;
using System.Net;
using System.Net.NetworkInformation;
using System.Runtime.InteropServices;

public static class NetUtils
{
    [System.Runtime.InteropServices.DllImport("iphlpapi.dll", ExactSpelling = true)]
    static extern int SendARP(int DestIP, int SrcIP, byte[] pMacAddr, ref int PhyAddrLen);

    public static string GetMacAddress(String addr)
    {
        try
                {                   
                    IPAddress IPaddr = IPAddress.Parse(addr);

                    byte[] mac = new byte[6];

                    int L = 6;

                    SendARP(BitConverter.ToInt32(IPaddr.GetAddressBytes(), 0), 0, mac, ref L);

                    String macAddr = BitConverter.ToString(mac, 0, L);

                    return (macAddr.Replace('-',':'));
                }

                catch (Exception ex)
                {
                    return (ex.Message);              
                }
    }
}
"@


$type = Add-Type -TypeDefinition $sign -Language CSharp -PassThru


$type::GetMacAddress($IPAddress)

}
### END FUNCTIONS ###

# - Clear the array before entering the loop.
$outArray = @()

# - Loop through each of the host addresses and do stuff.
ForEach ($IP in ($IPStart..$IPEnd))
{
    # - Try to get network information with WMI. If it doesn't work, set the hostname and tell the script that it's not a windows device.
    Try {
        $Ping = Get-WMIObject Win32_PingStatus -Filter "Address = '$Network.$IP' AND ResolveAddressNames = TRUE" -ErrorAction Stop
    }
    Catch {
        $windows = 0
        $hostname = ([system.net.dns]::GetHostByAddress($IP)).hostname
        Continue
    }

    # - If the ping does not return an error, do stuff.
    if ($Ping.StatusCode -eq 0)
    {
        # - Try to get the information from all the adapters on the windows host with WMI. If that doesn't work, tell the script it's not a windows host and keep on going.
        Try {
            $Adapters = Get-WmiObject Win32_NetworkAdapter -Filter "NetEnabled = True" -ComputerName $Ping.ProtocolAddressResolved -ErrorAction Stop
        }
        Catch {
            $windows = 0
            Continue
        }

        # - If it's windows, do stuff.
        if ($windows -ne 0) {
            ForEach ($Adapter in $Adapters) {
                # - Get the networking information from the adapter.
                $Config = Get-WmiObject Win32_NetworkAdapterConfiguration -Filter "Index = $($Adapter.Index)" -ComputerName $Ping.ProtocolAddressResolved

                # - Screen output to provide feedback (optional)
                Write-Host "The IP Address is $IPaddr"
                Write-Host "The MAC Address is $Config.MACAddress"

                # - Build the array with information from the network adapter
                ForEach ($IPAddr in $Config.IPAddress) {
                    $adapterInfo = New-Object PSObject -Property @{
                        Host = $Ping.ProtocolAddressResolved
                        'Interface Name' = $Adapter.Name
                        'IP Address' = $IPAddr
                        'MAC Address' = $Config.MACAddress
                    }
                    $outArray += $adapterInfo
                }
            }
        }

        # - If it's not windows, do stuff.
        Else {
            # - Set the IP Address and get the MAC Address from the IP.
            $IPAddr = $Network + "." + $IP
            $MACAddress = Get-MACFromIP $IPAddr
            Write-Host "The IP Address is $IPaddr"
            Write-Host "The MAC Address is $MACAddress"

            # - Build the array with information
            $hostinfo = New-Object PSObject -Property @{
                    Host = ""
                    'Interface Name' = "" # Don't care in this instance. Placeholder to keep the array happy
                    'IP Address' = $IPAddr
                    'MAC Address' = $MACAddress
                }
            $outArray += $hostInfo
        }
    }
}

# - Output the final array to a CSV file
$outArray | Export-CSV -Path .\ipinfo.csv -notypeinformation
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2015-12-29 05:53:51

有几种方法可以从Windows计算机远程获取MAC地址。

getmac /S <computername> /FO CSV | ConvertFrom-Csv

Get-WmiObject win32_networkadapterconfiguration | select description, macaddress

我发现getmac通常是您想要的数据,WMI查询需要进行一些过滤。但是,您可以根据您在脚本中发现的网络接口来比较和筛选来自WMI查询的结果。

另外,将[int]$IPEnd = 255更改为[int]$IPEnd = 254 255是网络的广播地址。

编辑:好吧,因为您似乎有一组要求很高的约束,但是您有一个冲突域(很高兴听到这个消息!)

似乎您需要直接调用iphlpapi.dll

有人已经解开了这个谜团,但是看看这个脚本:http://poshcode.org/2763

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/34505124

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档