10 Windows 방화벽에서 IP 주소를 "허용"하고 해당 특정 주소의 모든 연결을 허용 할 수 있습니까? windows-server-2008-r2 firewall ipv4 whitelist rules — 아이 단 기사 소스
16 허용하려는 IP 주소가 다음과 같다고 가정합니다 192.0.2.55. netsh advfirewall firewall add rule name="Allow from 192.0.2.55" dir=in action=allow protocol=ANY remoteip=192.0.2.55 — 마크 헨더슨 소스 또한 다른 모든 허용 규칙을 비활성화하지 않으면 연결에서 규칙을 통해 연결됩니다. — Jay R.
2 Powershell에서 수행하는 방법은 다음과 같습니다. New-NetFirewallRule -Name Allow192.0.2.55 -DisplayName 'Allow from 192.0.2.55' -Enabled True -Direction Inbound -Protocol ANY -Action Allow -Profile ANY -RemoteAddress 192.0.2.55 — 오십 소스