<p>At the AMC MagicNet, we have nodes meshing both over ethernet and wirelessly. Node A at the "end" of the network is meshed to node B over wifi, and B is then meshed to the rest of the network over ethernet. From further inside the network, as a client on an access point, I am not able to route traffic to/from node A. I was able to fix this by changing the following firewall rules in <code>/etc/config/firewall</code> on node B:</p>

<pre><code>config zone
        option name 'mesh'
        option input 'ACCEPT'
        option output 'ACCEPT'
        option forward 'DROP'
        list network 'commotionwireless_46net'
        list network 'mesh'

config zone
        option name 'wan'
        option input 'DROP'
        option output 'ACCEPT'
        option forward 'DROP'
        option masq '1'
        list network 'wired'
</code></pre>

<p>to:</p>

<pre><code>config zone
        option name 'mesh'
        option input 'ACCEPT'
        option output 'ACCEPT'
        option forward 'ACCEPT'
        list network 'commotionwireless_46net'
        list network 'mesh'

config zone
        option name 'wan'
        option input 'DROP'
        option output 'ACCEPT'
        option forward 'ACCEPT'
        option masq '1'
        list network 'wired'
</code></pre>

<p>Perhaps, once we add an option to the basic config to mesh over ethernet, turning that on should change the firewall rules of the node accordingly.</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/128">view it on GitHub</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/3074564__eyJzY29wZSI6Ik5ld3NpZXM6QmVhY29uIiwiZXhwaXJlcyI6MTcxODk4MTAyOSwiZGF0YSI6eyJpZCI6MzUyMTk1MzN9fQ==--24f62f328337f1001eee9f20411d9d71d6ac072c.gif" width="1" /></p>