본문 바로가기
#컴퓨터 과학 [Computer Science]/운영체제 (Operating System)

[OS - 🍎 macOS] macOS 로컬 방화벽 포트 설정 (How to open a port in macOS)

by cy_mos 2020. 7. 22.
반응형

🗂 macOS 로컬 방화벽 포트 설정 방법

  1. Terminal Application을 통해서 sudo nano /etc/pf.conf 명령어를 입력합니다. 
  2. /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
  3.  다시 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

 

Q100474 : Flix 통신을위한 방화벽의 포트 열기

개요 이 기사에서는 Flix 서버와의 통신을 가능하게하기 위해 방화벽에서 포트를 여는 과정을 설명합니다. 추가 정보 Flix 클라이언트가 인증 할 수없고 Flix에 로그인 할 수없는 경우 Flix가 통신하

support.foundry.com

 

반응형

댓글