is there a way to controlled router mikrotik behind another router and don't have to use 3rd software ???
IP cloud is nice but only worked with router has public ip.
Thanks in advance and sorry for my bad english
could u show me how to redirecting port to the back routerCheck Romon, I believe it's the thing you need
http://wiki.mikrotik.com/wiki/Manual:RoMON
or you can do some NAT in your "front" router, redirecting some random port to the "back" router.
still not working =.=!!!
Hi, sorry for the late answer. Here is my config on 2 routers.Give real figures, what internal IP is your router B, what port(s) you want to translate, and export the firewall rule you created.
/ip firewall nat
add action=dst-nat chain=dstnat dst-address=[Router1 WAN IP] dst-port=50080 protocol=tcp to-addresses=172.16.10.x to-ports=80
I still cant do it =.=!!!Then, try thisassuming you want to access port 80 on Router B. If course, replace with real IPsCode: Select all/ip firewall nat add action=dst-nat chain=dstnat dst-address=[Router1 WAN IP] dst-port=50080 protocol=tcp to-addresses=172.16.10.x to-ports=80
2 NAT in router A&B with the same config right ?Hi ,
you are changing ports ! so it's a one way communication , packets reach Router B , but unable to come back , i think we should have 2 NAT here , one in router A , one in B
created firewall rules on both router A&B but still not workingHi ,
you are changing ports ! so it's a one way communication , packets reach Router B , but unable to come back , i think we should have 2 NAT here , one in router A , one in B
i know but ppl says i can ip cloud if i redirect port so i wan to try itYou can use romon
could you be more specific pls. I'm still new to thismake a VPN to another site under your control and with IP public address
this image shows the conceptcould you be more specific pls. I'm still new to thismake a VPN to another site under your control and with IP public address
Which router should i make a VPN ?
Look more confused now lol =]]. I think i will try to redirect it with nat rule :vthis image shows the conceptcould you be more specific pls. I'm still new to thismake a VPN to another site under your control and with IP public address
Which router should i make a VPN ?
/ip firewall nat
add action=dst-nat chain=dstnat dst-port=8292 in-interface=ether1 protocol=tcp to-addresses=172.16.10.2 to-ports=8291
Thanks for your replied. If i config like that i will be able to connect to routerB wherever i go right ?At first You should give router B, interface ether1 fixed IP address, i.e. 172.16.10.2, else it will not work, except You made reservation in router A DHCP server for router B (very probably, not).
Second, if You want to connect to it with Winbox, here is dst-nat rule for router A
By connecting with Winbox in address field You should write also port 8292, like this (only example) 10.10.10.1:8292Code: Select all/ip firewall nat add action=dst-nat chain=dstnat dst-port=8292 in-interface=ether1 protocol=tcp to-addresses=172.16.10.2 to-ports=8291
You need not change something on router B.
I think yes, DNS name should work, if resolved correctly. And yes, You will be able connect to router B from every place where router A is accessible.Thanks for your replied. If i config like that i will be able to connect to routerB wherever i go right ?
what about DNS name in ip cloud ? Can i use it ?
i couldn't not test it right now
So i won't be able to connect to routerB from other network outside of routerA ???I think yes, DNS name should work, if resolved correctly. And yes, You will be able connect to router B from every place where router A is accessible.Thanks for your replied. If i config like that i will be able to connect to routerB wherever i go right ?
what about DNS name in ip cloud ? Can i use it ?
i couldn't not test it right now
I don't mean physically accessible. If You can connect to router A from outside, also router B will be accessible.So i won't be able to connect to routerB from other network outside of routerA ???
chain=dstnat action=dst-nat to-addresses=192.168.0.33
dst-address=101.99.47.x log=no log-prefix=""
yours worked too.If You don't need access from outside to routerA, problem is solved.
RouterA will be inaccessible because connections from Internet to any port on routerA will be redirected to routerB. The idea of my slution was to give access to routerB keeping access to routerA.