在 Windows Server 中僅對特定 IP 位址啟用 ping?

在 Windows Server 中僅對特定 IP 位址啟用 ping?

這個問題一個用戶解決瞭如何啟用 ping,但以通用方式 - 對於每個人。

這裡顯示的命令是:

netsh advfirewall firewall add rule name="ICMP Allow incoming V4 echo request"
    protocol=icmpv4:8,any dir=in action=allow

但我想要實現的是僅啟用來自單一IP位址的icmp請求(這是另一台伺服器)

我怎麼做?有人能指出我正確的方向嗎?

答案1

在命令中加入netsh advfirewall以下參數:

remoteip=IPAddress

相關內容