<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>《理解Docker容器网络之Linux Network Namespace》的评论</title>
	<atom:link href="http://tonybai.com/2017/01/11/understanding-linux-network-namespace-for-docker-network/feed/" rel="self" type="application/rss+xml" />
	<link>https://tonybai.com/2017/01/11/understanding-linux-network-namespace-for-docker-network/</link>
	<description>一个程序员的心路历程</description>
	<lastBuildDate>Wed, 25 Mar 2026 09:21:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>作者：bigwhite</title>
		<link>https://tonybai.com/2017/01/11/understanding-linux-network-namespace-for-docker-network/#comment-7284</link>
		<dc:creator>bigwhite</dc:creator>
		<pubDate>Thu, 11 Oct 2018 03:42:20 +0000</pubDate>
		<guid isPermaLink="false">http://tonybai.com/?p=2118#comment-7284</guid>
		<description>记得当时在我的host上 已经设置了  /proc/sys/net/ipv4/ip_forward = 1</description>
		<content:encoded><![CDATA[<p>记得当时在我的host上 已经设置了  /proc/sys/net/ipv4/ip_forward = 1</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：sherman</title>
		<link>https://tonybai.com/2017/01/11/understanding-linux-network-namespace-for-docker-network/#comment-7283</link>
		<dc:creator>sherman</dc:creator>
		<pubDate>Thu, 11 Oct 2018 03:00:40 +0000</pubDate>
		<guid isPermaLink="false">http://tonybai.com/?p=2118#comment-7283</guid>
		<description>你好， linux默认是把bridge的FORWORD给禁掉的，所以在Container_ns1里面是ping不通Container_ns2。需要给iptables加一个rule才行：sudo iptables -A FORWARD -i MyDocker0 -j ACCEPT</description>
		<content:encoded><![CDATA[<p>你好， linux默认是把bridge的FORWORD给禁掉的，所以在Container_ns1里面是ping不通Container_ns2。需要给iptables加一个rule才行：sudo iptables -A FORWARD -i MyDocker0 -j ACCEPT</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：bigwhite</title>
		<link>https://tonybai.com/2017/01/11/understanding-linux-network-namespace-for-docker-network/#comment-7262</link>
		<dc:creator>bigwhite</dc:creator>
		<pubDate>Thu, 30 Aug 2018 06:01:22 +0000</pubDate>
		<guid isPermaLink="false">http://tonybai.com/?p=2118#comment-7262</guid>
		<description>&quot;将veth0连在ns1中，将veth0挂在br0上&quot; 笔误？ veth1挂载br0上吧？</description>
		<content:encoded><![CDATA[<p>“将veth0连在ns1中，将veth0挂在br0上” 笔误？ veth1挂载br0上吧？</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：fay</title>
		<link>https://tonybai.com/2017/01/11/understanding-linux-network-namespace-for-docker-network/#comment-7261</link>
		<dc:creator>fay</dc:creator>
		<pubDate>Wed, 29 Aug 2018 07:59:14 +0000</pubDate>
		<guid isPermaLink="false">http://tonybai.com/?p=2118#comment-7261</guid>
		<description>你好，我在云主机上创建一个network namespce（ns1），之后创建一个linux网桥br0，以及一对veth pair（veth0和veth1）。之后，将veth0连在ns1中，将veth0挂在br0上，最后再将对外的eth1口也挂在br0上，并将eth1上的IP配在br0上。但是这样配置了之后，ping与br0 ip所在同一网段的IP均不通，这是什么原因呢？</description>
		<content:encoded><![CDATA[<p>你好，我在云主机上创建一个network namespce（ns1），之后创建一个linux网桥br0，以及一对veth pair（veth0和veth1）。之后，将veth0连在ns1中，将veth0挂在br0上，最后再将对外的eth1口也挂在br0上，并将eth1上的IP配在br0上。但是这样配置了之后，ping与br0 ip所在同一网段的IP均不通，这是什么原因呢？</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：li</title>
		<link>https://tonybai.com/2017/01/11/understanding-linux-network-namespace-for-docker-network/#comment-3552</link>
		<dc:creator>li</dc:creator>
		<pubDate>Fri, 14 Apr 2017 06:36:43 +0000</pubDate>
		<guid isPermaLink="false">http://tonybai.com/?p=2118#comment-3552</guid>
		<description>写的真好！受益匪浅！</description>
		<content:encoded><![CDATA[<p>写的真好！受益匪浅！</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：bigwhite</title>
		<link>https://tonybai.com/2017/01/11/understanding-linux-network-namespace-for-docker-network/#comment-1799</link>
		<dc:creator>bigwhite</dc:creator>
		<pubDate>Mon, 16 Jan 2017 13:06:02 +0000</pubDate>
		<guid isPermaLink="false">http://tonybai.com/?p=2118#comment-1799</guid>
		<description>之前写过一篇: 理解Docker跨多主机容器网络&lt;a href=&quot;http://tonybai.com/2016/02/15/understanding-docker-multi-host-networking/&quot; rel=&quot;nofollow&quot;&gt;http://tonybai.com/2016/02/15/understanding-docker-multi-host-networking/&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>之前写过一篇: 理解Docker跨多主机容器网络<a href="http://tonybai.com/2016/02/15/understanding-docker-multi-host-networking/" rel="nofollow">http://tonybai.com/2016/02/15/understanding-docker-multi-host-networking/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：徐国坤</title>
		<link>https://tonybai.com/2017/01/11/understanding-linux-network-namespace-for-docker-network/#comment-1796</link>
		<dc:creator>徐国坤</dc:creator>
		<pubDate>Mon, 16 Jan 2017 08:45:46 +0000</pubDate>
		<guid isPermaLink="false">http://tonybai.com/?p=2118#comment-1796</guid>
		<description>您现在描述的是单主机不同容器之间网络通信原理，那么如果要是跨主机呢？比如overlay网络，这方面的通信原理能分享下吗</description>
		<content:encoded><![CDATA[<p>您现在描述的是单主机不同容器之间网络通信原理，那么如果要是跨主机呢？比如overlay网络，这方面的通信原理能分享下吗</p>
]]></content:encoded>
	</item>
</channel>
</rss>
