반응형
🗂 macOS 로컬 방화벽 포트 설정 방법
- Terminal Application을 통해서 sudo nano /etc/pf.conf 명령어를 입력합니다.
- /etc/pf.conf 파일 내부의 최하단에 아래의 문구를 입력하여 저장합니다.
- pass in proto {tcp, udp} from any to any port {Port Number}
- (Example) pass in proto tcp from any to any port 10051
- 다시 Terminal Application을 통해서 sudo pfctl -vnf /etc/pf.conf 명령어를 입력한 뒤 전 단계에서 입력 한 포트번호가 열려있는지 확인합니다.
🗂 pfctl -vnf /etc/pf.conf
pfctl: Use of -f option, could result in flushing of rules
present in the main ruleset added by the system at startup.
See /etc/pf.conf for further details.
scrub-anchor "/*" all fragment reassemble
nat-anchor "/*" all
rdr-anchor "/*" all
anchor "/*" all
dummynet-anchor "/*" all
Loading anchor com.apple from /etc/pf.anchors/com.apple
anchor "/*" all
anchor "/*" all
🚀 REFERENCE
반응형
댓글