본문 바로가기

그 밖에 유용한 자료

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

 | 
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















출처 http://noogue.tistory.com/20