Note

Docker Iptables 오류 본문

Dev/Etc

Docker Iptables 오류

레모네모 2019. 11. 24. 15:52
iptables failed: ~~~ ! -i docker0: iptables: No chain/target/match by that name

위와 같은 오류가 날 경우 아래와 같이 iptables에 DOCKER 체인을 등록해 주면 된다.

iptables -t nat -N DOCKER
iptables -t nat -A PREROUTING -m addrtype --dst-type LOCAL -j DOCKER
iptables -t nat -A PREROUTING -m addrtype --dst-type LOCAL ! --dst 127.0.0.0/8 -j DOCKER

'Dev > Etc' 카테고리의 다른 글

Nginx Loadbalance 설정  (0) 2019.11.24
CentOS 메일서버 설정 및 자바에서 메일 발송하기  (0) 2019.11.24
Docker Container  (0) 2019.11.24
Docker 기본 사용법  (0) 2019.11.24
MariaDB Replication(복제) 설정  (0) 2019.11.24
Comments