I have a question about the MT.
I have the version 2.8.26. When the clients, which have the ip addresse 192.168.1.xxx, open the Internet explorer and tap the IP from the Router (192.168.0.254) they can see the Mikrotik info page.
The same one is over Internet. When anybody tab the IP from the Mikrotik router, they can see the info page, too.
i have resolve the problem with firewall rules.
But now i can’t access to MT.
Can I use a trick to log in??
I have permitted only Network with IP 192.168.3.0/24.
I had made a backup before i change the setting.
My last possibility is to install the MT new, if it gives no trick.
download neighbor viewer from: http://www.mikrotik.com/download.html
it’s at the bottom of the page,then you can MAC telnet into the MT,as it bypassess firewall rules.
/ip firewall rule input add connection-state=invalid action=drop
comment=“Drop invalid connections”
/ip firewall rule input add connection-state=established
comment=“Allow established connections”
/ip firewall rule input add connection-state=related
comment=“Allow related connections”
/ip firewall rule input add protocol=udp comment=“Allow UDP”
/ip firewall rule input add protocol=icmp comment=“Allow ICMP Ping”
/ip firewall rule input add src-address=10.0.0.0/24
comment=“Allow access from our local network. Edit this!”
/ip firewall rule input add src-address=192.168.0.0/24 protocol=tcp dst-port=8080
comment=“This is web proxy service for our customers. Edit this!”
/ip firewall rule input add action=drop log=yes
comment=“Log and drop everything else”
My config is:
Internet Interface 62...**
Clients Interface 192.168.1.1
Clients IP static 192.168.2.1 - 192.168.2.254
my VPN connection 192.168.1.99
how i must config the command above, so that i can access from internet with Winbox over VPN and over the clients Interface.
i hope your can understand my question.
change this :
ip firewall rule input add src-address=10.0.0.0/24
comment=“Allow access from our local network. Edit this!”
to this:
ip firewall rule input add src-address=192.168.2.0/24
comment="Allow access from our Clienst IPs. "
this will give you winbox from your clients IP’s
add this rule after above:
ip firewall rule input add src-address=192.168.1.0/24
comment="Allow access from Clients interface/VPN. "
this will allow acces from VPN and clients interface
you do not want to allow acces from the net–that is the purpose of protecting the routers access,however I would delete your first rule as you drop and log everything else in the last rule.
It’s OK.
I would access from Internet, too over VPN.
At the moment i can this.
But when anyone ping the Router IP over internet, can see the Mikrotik default Page.
Can i make it, that only i can access from Internet over VPN.
Home ----------------Internet----------------MT