The only thing i can not access is my ip-camera??
I narrowed it down to one rule that is causing the problem:
Code: Select all
/ip firewall filter
add action=drop chain=forward comment=\ "Drop all other traffic through the router" \ disabled=no
But then i get all sorts of other unwanted traffic. So i want that rule enabled.
I tried it with adding a nat rule (which is the "solution" you'll find all over the internet):
Code: Select all
/ip firewall nat
add action=dst-nat chain=dstnat disabled=no dst-address=86.86.86.860 dst-port=6080 protocol=tcp to-addresses=192.168.0.5 to-ports=6080
How can i get this cam working with the forward chain rule still active?