Hello everybody,
I’m currently using the new Chateau LTE 12 with RouterOS V7.0 on board. The Chateau LTE 12 is connected via LTE to a local operator network and the Internet connection is shared in the LAN with a switch.
Right now I have to activate the Port forwarding on my Chateau LTE 12 for using some containers on my NAS. The port I have to activate is 80.
I have tried different scripts found also in this forum, but none of them worked properly. Even if I change the port number, the port forwarding is not working.
For example, I tried to create a NAT rule with the following parameters:
I have created the NAT rule using the following fields:
Chain: dstnat
protocol: tcp
dst port: 80
action: dst-nat
to addresses: 192.168.10.25 (NAS IP address)
port: 80
Have you some suggestions for solving this problem? Thanks!
Did you try to change the external port ? For example use dst port: 8080 and port: 80
Is the counter on the specific rule zero or it counts packets ?
In any case, Low ports ( <1024 ) might be blocked from your ISP for security reasons… Thats why i suggested changing your external port…
First of all, Local address, is an address configured–assigned to one of the Routers interfaces…
So, if for example you are in the subnet 10.10.10.0/24, and your Router has the address 10.10.10.1/24 and a host, the address 10.10.10.254/24, only 10.10.10.1/24 is a Local address…
Also, from a quick look, i saw you have a drop all on the forward chain in your Firewall filter, last rule…
(1) The bridge is the interface, not ether1
/ip address
add address=192.168.10.1/24 comment=defconf interface=ether1 network=
192.168.10.0
should be
/ip address
add address=192.168.10.1/24 comment=defconf interface=bridge network=
192.168.10.0
(2) The default firewall rules are fine!!!
(3) The dstnat rules need work!! First they are both disabled! and good thing because they are horribly configured, best to delete them!
Port Forwarding…
FORMAT for fixed WANIP addresses (static)
add action=dst-nat chain=dstnat dst-address=ACTUAL WANIP protocol=XXX dst-port=yy
to-addresses=LANIP of Server to-ports (not required if same as dst-port - used only when port translation is required)
FORMAT for dynamic WANIP
add action=dst-nat chain=dstnat in-interface-list=WAN protocol=XXX dst-port=yy
to-addresses=LANIP of Server etc…
In your case it seems you want to use the public IP of the IP Cloud provided by the router as the argument/parameter for the address which is fine as well.
FORMAT
add action=dst-nat chain=dstnat dst-address-list=MyDDNS protocol=xxx dst-port=yy
to-addresses=LANIP of server etc…
Normal dst nat rule -----> from the internet port is visible but appears closed
Generally speaking, if a port is in listening state you can check if it is Open through the internet or not…
So thats not really true…
Actually a closed port is a port that is reachable but no application is listening on it…
So if a ( TCP ) port is reachable and an application is listening to that port, if that port is not blocked by any firewall then it will appear as Open even through the Internet …
Okay looking at your config again…
This is still not fixed ?? Remove the line in red!!! You have the address covered in the second line with the correct bridge setting.
/ip address add address=192.168.10.1/24 comment=defconf interface=ether1 network=
192.168.10.0
add address=192.168.10.1/24 comment=defconf interface=bridge network=
192.168.10.0