docker之网络管理
Posted zoulixiang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了docker之网络管理相关的知识,希望对你有一定的参考价值。
一、安装网桥管理工具
[[email protected] web]# yum install bridge-utils -y
二、docker网络的4种模式
- host模式,使用--net=host指定。
- container模式,使用--net=container:NAME_or_ID指定。
- none模式,使用--net=none指定。
- bridge模式,使用--net=bridge指定,默认设置。
删除命令
[[email protected] web]# docker network ls
[[email protected] web]# docker network rm host
二、查看网桥所有信息
2.host模式
[[email protected] web]# docker run -itd --name=ubuntu_test --net host ubuntu
以上是关于docker之网络管理的主要内容,如果未能解决你的问题,请参考以下文章