I have 2 RB411’s. I want a point to point link from RB411A to RB411B
on 192.168.1.0/24. I want a DHCP server on RB411B on 192.168.2.0/24. Bellow is how I tried.
RB411A:
interface wireless set wlan1 disabled=no mode=bridge band=5ghz ssid=ROB
interface bridge add name=bridge1
interface bridge port add interface=ether1
interface bridge port add interface=Wlan1
ip address add interface=bridge1 address=192.168.1.60/24
ip firewall nat add chain=srcnat action=masquerade
ip dns set allow-remote-requests=yes
system identity set name=RB411A
RB411A Connects wirelessly to RB411B:
interface wireless set wlan1 disabled=no mode=station band=5ghz ssid=ROB
ip address add interface=wlan1 address=192.168.1.61/24
ip address add interface=ether1 address=192.168.2.1/24
ip firewall nat add chain=srcnat action=masquerade
ip dns set allow-remote-requests=yes
system identity set name=RB411B
If I set it up like this I can’t ping 192.168.1.60 (RB411A) from the ether1 but I can from the Wlan1. I add a bridge
with Wlan1 and ether1 as ports to fix this but then I cant add a DHCP server on ether1. It seams if ether1 is used in
a bridge you cant use it as a DHCP.
This is the most basic function of any router It should be simple. What am I missing. Any help would be appreciated.