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