Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 서울시민카드
- docker
- bash
- yum
- Python
- Chrome
- Shell
- Kubernetes
- audit
- Elasticsearch
- CentOS
- Elk
- log
- GNOME
- 파이썬
- Linux
- zabbix
- K8S
- 크롬
- centos 7.5
- 디렉토리
- syslog
- rsyslog
- RHEL
- C
- PostgreSQL
- Audit Log
- GPU
- JSON
- 빅데이터
Archives
- Today
- Total
Sysops Notepad
[Docker] bridge-nf-call-iptables WARNING message 발생시 조치 방법 본문
728x90
Centos or RHEL에서 bridge-nf-call-iptables WARNING message 발생시 조치 방법 입니다.
bridge 네트워크를 통해 송수신되는 패킷이 iptables 설정을 우회한다는 의미다
컨테이너의 네트워크 패킷이 호스트머신의 iptables 설정에 따라 제어되도록 하는 설정
# docker info
WARNING: bridge-nf-call-iptables is disabled
WARNING: bridge-nf-call-ip6tables is disabled
- 해결 방법
# echo "net.bridge.bridge-nf-call-ip6tables = 1" >> /etc/sysctl.conf
# echo "net.bridge.bridge-nf-call-iptables = 1" >> /etc/sysctl.conf
# sudo sysctl -p
728x90
'업무 > sys' 카테고리의 다른 글
[Docker] 호스트와 컨테이너간 파일 복사 (0) | 2019.02.15 |
---|---|
[Docker] nvidia-docker2 run 사용시 옵션 (0) | 2019.02.15 |
[Linux] iops 측정 방법 (0) | 2019.01.18 |
[OS] Hyper-Threading disable or enable (0) | 2018.12.27 |
[GPU] Centos 7 nvidia driver, CUDA , kubernetes gpu device 설치 (0) | 2018.11.30 |
Comments