<p>The Routerboard RB433 has 3 ethernet ports. One WAN port (eth0) and a pair of LAN ports (eth1). When Commotion is initially installed it only sets up eth0 to be used (binding br-lan to eth0's MAC).</p>

<p>To get the LAN ports working you must first add <code>option ifname 'eth1'</code> to <code>/etc/config/networking</code> under the <code>config interface 'lan'</code> section.<br><br>
Next you must delete the br-lan interface and set it back up using eth1:</p>

<pre><code>ifconfig br-lan down
brctl delbr br-lan
brctl addbr br-lan
brctl addif br-lan eth1
ifconfig br-lan 10.0.0.1 netmask 255.255.255.0 up
</code></pre>

<p>After that eth0 (WAN) should be free to gateway as needed.</p>

<p>I haven't looked through how Commotion initially configures things so I don't have anything pull-able but this should be a start.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br>Reply to this email directly or <a href="https://github.com/opentechinstitute/commotion-router/issues/158">view it on GitHub</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AC7qBNPKS27zbxPjTeAT3yhk5jm0Co6zks5nPARXgaJpZM4C9fps.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
  <div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
    <link itemprop="url" href="https://github.com/opentechinstitute/commotion-router/issues/158"></link>
    <meta itemprop="name" content="View Issue"></meta>
  </div>
  <meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>