<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Thank you Bsc, but this in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/configuration-of-external-bridge-network/m-p/925063#M13690</link>
    <description>&lt;P&gt;Thank you Bsc, but this problem was my stupid mistake! I forgot to re-configure the user account after using micctrl --initdefaults. My network configuration has no problem. In addition, I confirmed that net.ipv4.ip_forward=1 is NOT required when only I login to mic by ssh, and it is required when mounting external nfs directory.&lt;/P&gt;

&lt;P&gt;Anyway, thanks for your help!&lt;/P&gt;</description>
    <pubDate>Fri, 28 Feb 2014 17:38:57 GMT</pubDate>
    <dc:creator>Satoshi_Ohshima</dc:creator>
    <dc:date>2014-02-28T17:38:57Z</dc:date>
    <item>
      <title>configuration of external bridge network</title>
      <link>https://community.intel.com/t5/Software-Archive/configuration-of-external-bridge-network/m-p/925059#M13686</link>
      <description>&lt;P&gt;Hi, all.&lt;/P&gt;

&lt;P&gt;I'm trying to configure external bridge network using examples from MPSS_Users_Guide.&lt;/P&gt;

&lt;P&gt;I want to access host CPU and MIC from other PCs at the same subnet network.&lt;/P&gt;

&lt;P&gt;Then, I wrote ifcfg-br0 file as follows&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;DEVICE=br0&lt;BR /&gt;
		BOOTPROTO=none&lt;BR /&gt;
		ONBOOT=yes&lt;BR /&gt;
		IPADDR=&amp;lt;IP_A&amp;gt;&lt;BR /&gt;
		NETMASK=255.255.255.0&lt;BR /&gt;
		TYPE=Bridge&lt;BR /&gt;
		MTF=9000&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;and executed following commands&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;micctrl --addbridge=br0 --type=external --ip=&amp;lt;IP_A&amp;gt; --netbits=16 mic0&lt;BR /&gt;
		micctrl --network=static --bridge=br0 --ip=&amp;lt;IP_B&amp;gt;&lt;/P&gt;

	&lt;P&gt;(micctrl --network=static --bridge=br0 --ip=&amp;lt;IP_B&amp;gt; --netbits=16 mic0 cause warning and the same incorrect result is obtained)&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;After that, network and mpss services are restarted.&lt;/P&gt;

&lt;P&gt;Then, IP address of each network interfaces are as follows&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;# ifconfig | grep -e "Link " -e "inet "&lt;BR /&gt;
		br0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Link encap:Ethernet&amp;nbsp; HWaddr xx:xx:xx:xx:xx:xx&lt;BR /&gt;
		&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; inet addr:&amp;lt;IP_A&amp;gt;&amp;nbsp; Bcast:&amp;lt;IP_A_Bcast&amp;gt;&amp;nbsp; Mask:255.255.255.0&lt;BR /&gt;
		eth0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Link encap:Ethernet&amp;nbsp; HWaddr xx:xx:xx:xx:xx:xx&lt;BR /&gt;
		&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; inet addr:&amp;lt;IP_C&amp;gt;&amp;nbsp; Bcast:&amp;lt;IP_A_Ccast&amp;gt;&amp;nbsp; Mask:255.255.0.0&lt;BR /&gt;
		lo&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Link encap:Local Loopback&lt;BR /&gt;
		&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; inet addr:127.0.0.1&amp;nbsp; Mask:255.0.0.0&lt;BR /&gt;
		mic0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Link encap:Ethernet&amp;nbsp; HWaddr xx:xx:xx:xx:xx:xx&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;As a result, I confirmed that I can login to CPU and MIC by ssh from host CPU.&lt;/P&gt;

&lt;P&gt;However, from other PCs, I can login to CPU but I can't login to MIC.&lt;/P&gt;

&lt;P&gt;Would you show me the correct procedures of network configuration ?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Kind regards&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2014 09:45:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/configuration-of-external-bridge-network/m-p/925059#M13686</guid>
      <dc:creator>Satoshi_Ohshima</dc:creator>
      <dc:date>2014-02-25T09:45:41Z</dc:date>
    </item>
    <item>
      <title>Hi Satoshi,</title>
      <link>https://community.intel.com/t5/Software-Archive/configuration-of-external-bridge-network/m-p/925060#M13687</link>
      <description>&lt;P&gt;Hi Satoshi,&lt;/P&gt;

&lt;P&gt;It sounds like forwarding is not enabled in your system. Can you check the output of the following command?&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;
/sbin/sysctl net.ipv4.ip_forward&lt;/PRE&gt;

&lt;P&gt;If return value is 0, then enable forwarding by executing the following:&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;
/sbin/sysctl -w net.ipv4.ip_forward=1&lt;/PRE&gt;

&lt;P&gt;If it still doesn't work, please check your firewall settings, in particular, the FORWARD CHAIN policy. Forwarding between the host and the mic should be allowed.&lt;/P&gt;

&lt;P&gt;Hope it helps.&lt;/P&gt;

&lt;P&gt;Best regards.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Feb 2014 09:12:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/configuration-of-external-bridge-network/m-p/925060#M13687</guid>
      <dc:creator>Bsc_Cns</dc:creator>
      <dc:date>2014-02-26T09:12:39Z</dc:date>
    </item>
    <item>
      <title>Thank you for your comment.</title>
      <link>https://community.intel.com/t5/Software-Archive/configuration-of-external-bridge-network/m-p/925061#M13688</link>
      <description>&lt;P&gt;Thank you for your comment.&lt;/P&gt;

&lt;P&gt;It was true that I didn't configure the net.ipv4.ip_forward parameter. Then, I modified the parameter and tried to configure mic. However, I still can not login to mic0.&lt;/P&gt;

&lt;P&gt;Here is my current IP configurations:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;br0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Link encap:Ethernet&amp;nbsp; HWaddr xx:xx:xx:xx:xx:xx&lt;BR /&gt;
		&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; inet addr:&amp;lt;IP_A&amp;gt;&amp;nbsp; Bcast:&amp;lt;IP_A_BCAST&amp;gt;&amp;nbsp; Mask:&amp;lt;IP_A_MASK&amp;gt;&lt;BR /&gt;
		eth0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Link encap:Ethernet&amp;nbsp; HWaddr xx:xx:xx:xx:xx:xx&lt;BR /&gt;
		&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; inet addr:&amp;lt;IP_C&amp;gt;&amp;nbsp; Bcast:&amp;lt;IP_C_BCAST&amp;gt;&amp;nbsp; Mask:&amp;lt;IP_C_MASK&amp;gt;&lt;BR /&gt;
		lo&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Link encap:Local Loopback&lt;BR /&gt;
		&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; inet addr:127.0.0.1&amp;nbsp; Mask:255.0.0.0&lt;BR /&gt;
		mic0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Link encap:Ethernet&amp;nbsp; HWaddr xx:xx:xx:xx:xx:xx&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;While I think I can login to mic by connecting &amp;lt;IP_A&amp;gt;, I accessed the host CPU.&lt;/P&gt;

&lt;P&gt;Do you have any solutions?&lt;/P&gt;

&lt;P&gt;Thanks, Satohshi OHSHIMA&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;FYI, these are of my ifcfg-* files:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;# cat ifcfg-mic0&lt;BR /&gt;
		DEVICE=mic0&lt;BR /&gt;
		ONBOOT=yes&lt;BR /&gt;
		NM_CONTROLLED="no"&lt;BR /&gt;
		BRIDGE=br0&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;# cat ifcfg-br0&lt;BR /&gt;
		DEVICE=br0&lt;BR /&gt;
		BOOTPROTO=none&lt;BR /&gt;
		ONBOOT=yes&lt;BR /&gt;
		IPADDR=&amp;lt;IP_A&amp;gt;&lt;BR /&gt;
		NETMASK=&amp;lt;IP_A_MASK&amp;gt;&lt;BR /&gt;
		TYPE=Bridge&lt;BR /&gt;
		MTF=9000&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;This is my iptables rules. Do I need to configure some rules? (There are no rules on MPSS_Users_Guide.)&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;# iptables -L&lt;BR /&gt;
		Chain INPUT (policy ACCEPT)&lt;BR /&gt;
		target&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; prot opt source&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; destination&lt;/P&gt;

	&lt;P&gt;Chain FORWARD (policy ACCEPT)&lt;BR /&gt;
		target&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; prot opt source&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; destination&lt;/P&gt;

	&lt;P&gt;Chain OUTPUT (policy ACCEPT)&lt;BR /&gt;
		target&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; prot opt source&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; destination&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2014 08:18:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/configuration-of-external-bridge-network/m-p/925061#M13688</guid>
      <dc:creator>Satoshi_Ohshima</dc:creator>
      <dc:date>2014-02-27T08:18:29Z</dc:date>
    </item>
    <item>
      <title>I think you should connect</title>
      <link>https://community.intel.com/t5/Software-Archive/configuration-of-external-bridge-network/m-p/925062#M13689</link>
      <description>&lt;P&gt;I think you should connect straight to the mic console to see if the network configuration is ok. First of all ensure your mic is online:&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;
micctrtl -s mic0&lt;/PRE&gt;

&lt;P&gt;After, connect via minicom software to device /dev/ttyMIC0 with Bps/Par/bits = 57600 8N1 (this works for me) and try to do an ifconfig to see if the network interface is properly configured.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2014 10:46:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/configuration-of-external-bridge-network/m-p/925062#M13689</guid>
      <dc:creator>Bsc_Cns</dc:creator>
      <dc:date>2014-02-27T10:46:28Z</dc:date>
    </item>
    <item>
      <title>Thank you Bsc, but this</title>
      <link>https://community.intel.com/t5/Software-Archive/configuration-of-external-bridge-network/m-p/925063#M13690</link>
      <description>&lt;P&gt;Thank you Bsc, but this problem was my stupid mistake! I forgot to re-configure the user account after using micctrl --initdefaults. My network configuration has no problem. In addition, I confirmed that net.ipv4.ip_forward=1 is NOT required when only I login to mic by ssh, and it is required when mounting external nfs directory.&lt;/P&gt;

&lt;P&gt;Anyway, thanks for your help!&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2014 17:38:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/configuration-of-external-bridge-network/m-p/925063#M13690</guid>
      <dc:creator>Satoshi_Ohshima</dc:creator>
      <dc:date>2014-02-28T17:38:57Z</dc:date>
    </item>
    <item>
      <title>Hi - I think I went through</title>
      <link>https://community.intel.com/t5/Software-Archive/configuration-of-external-bridge-network/m-p/925064#M13691</link>
      <description>&lt;P&gt;Hi - I think I went through the same problems in an earlier topic - 490138.&amp;nbsp; I tried to leave a comment yesterday, but maybe it doesn't like URLs.&amp;nbsp; If you check that topic, you will see that we did solve it and it all works for us now - with limitations on commands you can use.&amp;nbsp; Have a look at my comments in that topic - you will need to specify the correct gateway on the phi co-pros themselves...they default to zero.&amp;nbsp; Tho' it was all tested on MPSS 3.1.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2014 17:24:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/configuration-of-external-bridge-network/m-p/925064#M13691</guid>
      <dc:creator>Sally_H_</dc:creator>
      <dc:date>2014-03-19T17:24:04Z</dc:date>
    </item>
  </channel>
</rss>

