윈도우 방화벽 포트 추가하기

Windows tips 2010. 7. 8. 19:07
1. 윈도우 XP 용 SSL 과 TLS 포트 허용 추가 커맨드
netsh firewall add portopening UDP 443 SSL
netsh firewall add portopening TCP 443 TLS

2. 윈도우 7 용 SSL 과 TLS 포트 허용 추가 커맨드
netsh advfirewall firewall add rule name="SSL OUT" protocol=UDP dir=out localport=443 action=allow
netsh advfirewall firewall add rule name="SSL IN" protocol=UDP dir=in localport=443 action=allow
netsh advfirewall firewall add rule name="TLS OUT" protocol=TCP dir=out localport=443 action=allow
netsh advfirewall firewall add rule name="TLS IN" protocol=TCP dir=in localport=443 action=allow

설정

트랙백

댓글