Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mikrotik RB433 LAN ports not used on initial config #158

Open
adamsteele opened this issue Nov 19, 2014 · 3 comments
Open

Mikrotik RB433 LAN ports not used on initial config #158

adamsteele opened this issue Nov 19, 2014 · 3 comments
Assignees

Comments

@adamsteele
Copy link

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).

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

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

After that eth0 (WAN) should be free to gateway as needed (assuming it is configured correctly).

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

@andygunn
Copy link

@jheretic - Can you take a look at this? Would it be possible to roll a custom 1.1 image for the 433 for me to test?

@jheretic
Copy link
Member

@andygunn sure, I won't have time to tackle that today, but I added it to my todo list.

@andygunn
Copy link

@jheretic awesome, thanks.

@jheretic jheretic removed the 1 - Ready label Jan 8, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants