เปิด Windows Firewall ไปยังการเชื่อมต่อทั้งหมดจากที่อยู่ IP ที่เฉพาะเจาะจง


คำตอบ:


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
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.