Port Forwarding won't work on new RB750GL
Posted: Wed Mar 25, 2015 4:21 pm
I am following these instructions http://networkingforintegrators.com/201 ... g-example/
I use these same instructions on another routerboard and I can port forward with no problems. On a new RB750GL I cannot get it to port forward at all. Is there something different I need to do here?
I use these same instructions on another routerboard and I can port forward with no problems. On a new RB750GL I cannot get it to port forward at all. Is there something different I need to do here?
Code: Select all
# mar/25/2015 04:51:36 by RouterOS 6.27
# software id = 5YJQ-YBC1
#
/interface ethernet
set [ find default-name=ether1 ] name=ether1-gateway
set [ find default-name=ether2 ] name=ether2-master-local
set [ find default-name=ether3 ] master-port=ether2-master-local name=ether3-slave-local
set [ find default-name=ether4 ] master-port=ether2-master-local name=ether4-slave-local
set [ find default-name=ether5 ] master-port=ether2-master-local name=ether5-slave-local
/ip neighbor discovery
set ether1-gateway discover=no
/ip pool
add name=dhcp ranges=192.168.1.100-192.168.1.190
/ip dhcp-server
add address-pool=dhcp disabled=no interface=ether2-master-local name=default
/ip address
add address=192.168.1.1/24 comment="default configuration" interface=ether2-master-local network=192.168.1.0
/ip dhcp-client
add comment="default configuration" dhcp-options=hostname,clientid disabled=no interface=ether1-gateway
/ip dhcp-server network
add address=192.168.1.0/24 comment="default configuration" dns-server=192.168.1.1 gateway=192.168.1.1
/ip dns
set allow-remote-requests=yes
/ip dns static
add address=192.168.88.1 name=router
/ip firewall filter
add chain=input comment="default configuration" disabled=yes protocol=icmp
add chain=input comment="default configuration" connection-state=established,related disabled=yes
add action=drop chain=input comment="default configuration" disabled=yes in-interface=ether1-gateway
add chain=forward comment="default configuration" connection-state=established,related disabled=yes
add action=drop chain=forward comment="default configuration" connection-state=invalid disabled=yes
add action=drop chain=forward comment="default configuration" connection-nat-state=!dstnat connection-state=new \
disabled=yes in-interface=ether1-gateway
/ip firewall nat
add action=masquerade chain=srcnat comment="default configuration" out-interface=ether1-gateway
add action=dst-nat chain=dstnat dst-port=3389 in-interface=ether1-gateway log=yes protocol=tcp to-addresses=\
192.168.1.30 to-ports=3389
add action=dst-nat chain=dstnat dst-port=8822 in-interface=ether1-gateway protocol=tcp to-addresses=192.168.1.20 \
to-ports=22
/system clock
set time-zone-autodetect=no
/system identity
set name=H1
/tool mac-server
set [ find default=yes ] disabled=yes
add interface=ether2-master-local
add interface=ether3-slave-local
add interface=ether4-slave-local
add interface=ether5-slave-local
/tool mac-server mac-winbox
set [ find default=yes ] disabled=yes
add interface=ether2-master-local
add interface=ether3-slave-local
add interface=ether4-slave-local
add interface=ether5-slave-local