I have a 2 DSL modems that I need to bond as a single connection without using Double NAT. Those who dealt with VoIP know what is double NET problem for SIP traffic.
What i have so far:
RouterBoard 750 (6.4)
2 DSL modems set to bridge mode, connected to port 3 (WAN1) and 4 (WAN2). Port 5 is Local port connected to the rest of the network and IP phones. Port 5 is a DHCP for 192.168.0.0/24 network. I have manged to PPPoE both of them and then bond them. Cant get them routed and translated correctly to 192.168.0.1.
Here is my config (What i’ve configured):
DSL (Local, WAN1, WAN2)
/interface enable Local,WAN1,WAN2
/ip dhcp-client add interface=WAN1 disabled=no
/ip dhcp-client add interface=WAN2 disabled=no/ interface pppoe-client
add interface=WAN1 user=“User3” password=“Password”
add-default-route=yes use-peer-dns=yes disabled=noadd interface=WAN2 user=“User4” password=“Password”
add-default-route=yes use-peer-dns=yes disabled=no/ip address add address=192.168.0.1/24 interface=Local
/ip firewall nat add chain=srcnat src-address=192.168.0.0/24 action=masquerade
/ip dhcp-server setup
/ip dns set allow-remote-requests=yes
/interface bonding
add slaves=WAN1,WAN2add address=192.168.0.1/24 interface=bond1
/ip route
add dst-address=0.0.0.0/0 gateway=192.168.0.1 distance=2 check-gateway=ping
I get 2 public addressees which needed to be translated (NATed) to Local interface 192.168.0.0/24 network. Also will need to configure a Firewall.
What else do I need to add to make it work?
Thanks for help in advance.