测试连接间歇性失败,缺少资源错误:
test-connection : Testing connection to computer 'SOMESERVER' failed: Error due to lack of resources
At line:1 char:45
+ ... ($server in $ServersNonProd.Name) { test-connection $server -Count 1}
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ResourceUnavailable: (SOMESERVER:String) [Test-Connection], PingException
+ FullyQualifiedErrorId : TestConnectionException,Microsoft.PowerShell.Commands.TestConnectionCommand
因此,当您需要在循环中测试计算机列表时,它不可靠且相当无用。是否有修复,替代或解决方法可靠地获得此功能?
这是我目前的解决方案,但它仍然不够可靠(有时它们仍会连续失败5次)并且由于所有延迟和重试而需要永久。
$Servers = Import-CSV -Path C:\Temp\Servers.csv
$result = foreach ($Name in $Servers.FQDN) {
$IP = $null
if ( Resolve-DNSName $Name -ErrorAction SilentlyContinue ) {
$IP = (Test-Connection -Count 1 -ComputerName $Name -ErrorAction SilentlyContinue).IPv4Address
if ( $IP -eq $null ) {
Start-Sleep -Milliseconds 100
$IP = (Test-Connection -Count 1 -ComputerName $Name -ErrorAction SilentlyContinue).IPv4Address
}
if ( $IP -eq $null ) {
Start-Sleep -Milliseconds 200
$IP = (Test-Connection -Count 1 -ComputerName $Name -ErrorAction SilentlyContinue).IPv4Address
}
if ( $IP -eq $null ) {
Start-Sleep -Milliseconds 300
$IP = (Test-Connection -Count 1 -ComputerName $Name -ErrorAction SilentlyContinue).IPv4Address
}
if ( $IP -eq $null ) {
Start-Sleep -Milliseconds 400
$IP = (Test-Connection -Count 1 -ComputerName $Name -ErrorAction SilentlyContinue).IPv4Address
}
}
new-object psobject -Property @{FQDN = $Name; "IP Address" = $IP}
}
正常ping(ping.exe)每次都有效,所以如果有一个很好的方法来解析PowerShell(主机上升或下降,IP响应),这似乎是理想的解决方案,但我只需要一些有用的东西,所以我对创意持开放态度。
答案 0 :(得分:11)
我偏向于使用.Net Ping class而不是Test-Connection
$Timeout = 100
$Ping = New-Object System.Net.NetworkInformation.Ping
$Response = $Ping.Send($Name,$Timeout)
$Response.Status
请注意,如果需要设置TTL / Fragmentation,Send方法可以采用其他参数。超时也是以毫秒为单位,只需$ name,我认为超时是5秒,这通常太长了。
答案 1 :(得分:11)
在较新版本的PowerShell中,-Quiet
上的Test-Connection
参数似乎始终返回True
或False
。它似乎并没有在旧版本上保持一致,但要么我现在做不同的事情,要么他们已经改进了它:
$Ping = Test-Connection -ComputerName $ComputerName -Count 1 -Quiet
然而,当网络根本无法使用时,我还没有对它进行过测试。
旧答案:
当DNS没有响应地址或网络不可用时, Test-Connection
无法做出明智的反应。也就是说,如果cmdlet决定它根本无法发送ping,则会以难以捕获或忽略的令人不快的方式发生错误。 Test-Connection
仅在您可以保证DNS将名称解析为地址并且网络始终存在时才有用。
我倾向于使用WMI ping:
$Ping = Get-WmiObject -Class Win32_PingStatus -Filter "Address='$ComputerName' AND Timeout=1000";
或CIM Pings:
$Ping2 = Get-CimInstance -ClassName Win32_PingStatus -Filter "Address='$ComputerName' AND Timeout=1000";
其中任何一个基本相同,但返回的格式略有不同。这里的主要缺点是您必须自己解决状态代码:
$StatusCodes = @{
[uint32]0 = 'Success';
[uint32]11001 = 'Buffer Too Small';
[uint32]11002 = 'Destination Net Unreachable';
[uint32]11003 = 'Destination Host Unreachable';
[uint32]11004 = 'Destination Protocol Unreachable';
[uint32]11005 = 'Destination Port Unreachable';
[uint32]11006 = 'No Resources';
[uint32]11007 = 'Bad Option';
[uint32]11008 = 'Hardware Error';
[uint32]11009 = 'Packet Too Big';
[uint32]11010 = 'Request Timed Out';
[uint32]11011 = 'Bad Request';
[uint32]11012 = 'Bad Route';
[uint32]11013 = 'TimeToLive Expired Transit';
[uint32]11014 = 'TimeToLive Expired Reassembly';
[uint32]11015 = 'Parameter Problem';
[uint32]11016 = 'Source Quench';
[uint32]11017 = 'Option Too Big';
[uint32]11018 = 'Bad Destination';
[uint32]11032 = 'Negotiating IPSEC';
[uint32]11050 = 'General Failure'
};
$StatusCodes[$Ping.StatusCode];
$StatusCodes[$Ping2.StatusCode];
或者,我也使用像@BenH这样的.Net Pings,这对你来说有很多帮助。有一个原因我不再使用它们来支持WMI和CIM,但我不能再记得那个原因了。
答案 2 :(得分:5)
Windows IP帮助程序将IP_REQ_TIMED_OUT错误定义为值11010,与Windows系统错误相同WSA_QOS_ADMISSION_FAILURE 11010“由于资源不足而导致错误。” 因此,在质疑案件中实际收到的内容可能是超时错误,而且只是被误解为“缺乏资源”。
答案 3 :(得分:0)
使用测试连接时,powershell v7不会出现此问题
答案 4 :(得分:0)
我要作弊并使用powershell 7。微软总是无法ping通。
test-connection -count 1 yahoo.com,microsoft.com | select destination,status
Destination Status
----------- ------
yahoo.com Success
microsoft.com TimedOut
或多线程:
echo yahoo.com microsoft.com | % -parallel { test-connection -count 1 $_ } |
select destination,status
Destination Status
----------- ------
yahoo.com Success
microsoft.com TimedOut
,'microsoft.com' * 10 | % -parallel { test-connection -count 1 $_ } |
select destination,status
Destination Status
----------- ------
microsoft.com TimedOut
microsoft.com TimedOut
microsoft.com TimedOut
microsoft.com TimedOut
microsoft.com TimedOut
microsoft.com TimedOut
microsoft.com TimedOut
microsoft.com TimedOut
microsoft.com TimedOut
microsoft.com TimedOut
# one time takes like 4 seconds
measure-command { ,'microsoft.com' * 10 | % -parallel { test-connection -count 1 $_ } |
select destination,status } | % seconds
9