Risposte:
Per impostazione predefinita, Windows 2008 non risponde ai ping. Abilitare:
Strumenti amministrativi
Windows Firewall con sicurezza avanzata
Regole d'ingresso
Condivisione file e stampanti (richiesta eco - ICMPv4-IN)
Abilita regola
Ora dovresti essere in grado di eseguire il ping del server dalla LAN.
Abilitare il ping tramite Windows Firewall dalla riga di comando in questo modo:
netsh firewall set icmpsetting 8
Apparentemente questo è cambiato in Windows Server 2008 R2 e versioni successive, in:
netsh advfirewall firewall add rule name="ICMP Allow incoming V4 echo request"
protocol=icmpv4:8,any dir=in action=allow
Questo è ... un bel boccone.
in PowerShell puoi usare:
# allow-icmp.ps1
# Sets up windows firewall to allow inbound ICMP - using PowerShell
# Thomas Lee - tfl@psp.co.uk
#create firewall manager object
$FWM=new-object -com hnetcfg.fwmgr
# Get current profile
$pro=$fwm.LocalPolicy.CurrentProfile
# Check Profile
if ($pro.IcmpSettings.AllowInboundEchoRequest) {
"Echo Request already allowed"
} else {
$pro.icmpsettings.AllowInboundEchoRequest=$true
}
# Display ICMP Settings
"Windows Firewall - current ICMP Settings:"
"-----------------------------------------"
$pro.icmpsettings
Ti consigliamo di consentire i pacchetti ICMP attraverso. Il ping non usa TCP, quindi non c'è alcuna porta da aprire.
Un altro modo di risolvere questo problema:
netsh advfirewall firewall add rule name="ICMP Allow incoming V4 echo request" protocol=icmpv4:8,any dir=in action=allow
Prestare attenzione a utilizzare le virgolette corrette. Alcuni siti Web sostituiscono le virgolette con simboli simili che causano errori di sintassi. Cf inserire qui la descrizione del collegamento
Esegui questi 2 in admin PowerShell, abilita i ping in entrata sia ipv6 che ipv4 su tutte le reti (pubblica / privata / dominio):
Set-NetFirewallRule -DisplayName "File and Printer Sharing (Echo Request - ICMPv4-In)" -enabled True
Set-NetFirewallRule -DisplayName "File and Printer Sharing (Echo Request - ICMPv6-In)" -enabled True
È equivalente a questo /server//a/6049/147813