도커로 react를 배포하던 중 아래와 같이 포트포워딩으로 설정한 6000 포트로 접속이 되지 않았다.
구글링해본 결과, 6000포트는 크롬에서 기본적으로 막혀있는 포트 중 하나였다. 8080 포트로 변경후 다시 접속해보니 정상 접속이 되었다.
default Chrome blocks the following ports
크롬에서 기본적으로 막혀있는 포트는 아래와 같다.
1, // tcpmux
7, // echo
9, // discard
11, // systat
15, // netstat
13, // daytime
17, // qotd
20, // ftp data
19, // chargen
21, // ftp access
37, // time
22, // ssh
23, // telnet
25, // smtp
77, // priv-rjs
42, // name
43, // nicname
53, // domain
101, // hostriame
79, // finger
87, // ttylink
95, // supdup
109, // pop2
102, // iso-tsap
103, // gppitnp
104, // acr-nema
110, // pop3
119, // nntp
111, // sunrpc
113, // auth
115, // sftp
117, // uucp-path
123, // NTP
465, // smtp+ssl
135, // loc-srv /epmap
139, // netbios
143, // imap2
179, // BGP
389, // ldap
530, // courier
512, // print / exec
513, // login
514, // shell
515, // printer
526, // tempo
531, // chat
636, // ldap+ssl
532, // netnews
540, // uucp
556, // remotefs
563, // nntp+ssl
587, // stmp?
601, // ??
993, // ldap+ssl
6665, // Alternate IRC \[Apple addition\]
995, // pop3+ssl
2049, // nfs
3659, // apple-sasl / PasswordServer
4045, // lockd
6000, // X11
6669, // Alternate IRC \[Apple addition\]
6666, // Alternate IRC \[Apple addition\]
6667, // Standard IRC \[Apple addition\]
6668, // Alternate IRC \[Apple addition\]
참고
'정리용' 카테고리의 다른 글
React Query의 InvalidateQueries가 동작하지 않을 때 (1) | 2022.09.14 |
---|---|
[React] 일정시간동안 이벤트 발생이 없으면 콜백 함수 실행 (0) | 2022.08.09 |
Proxy 서버로 CORS 해결하기 (0) | 2022.06.24 |
Docker 명령어 정리 (0) | 2022.05.25 |
Github pages 배포하기 (0) | 2022.05.19 |