## glossary

What is MikroTik?

MikroTik is a Latvian company, founded in 1996, that manufactures network equipment and develops RouterOS — a Linux-based routing operating system. Its proposition is to deliver enterprise-grade features on hardware that costs far less than the traditional vendors’.

That capability-to-price ratio is what explains its penetration in Brazil, especially among regional internet service providers, which need advanced routing, bandwidth control and customer management without the budget of a large carrier.

RouterOS: the core product

RouterOS concentrates on a single platform functions that would normally require several separate appliances:

  • Routing — static and dynamic, with support for OSPF, BGP and MPLS.
  • Firewall — stateful filtering, NAT and packet marking.
  • Bandwidth control — queues and QoS with per-customer or per-service granularity.
  • Hotspot — a captive authentication portal for public networks and providers.
  • VPN — WireGuard, IPsec, OpenVPN and other tunnels.
  • Wireless — access points and long-distance point-to-point links.
Configuration via CLI: RouterOS hierarchical syntax
# firewall rule: accept already-established connections
/ip firewall filter
add chain=forward connection-state=established,related \
    action=accept comment="trafego ja conhecido"

# drop everything else coming from the internet
add chain=forward in-interface=ether1 action=drop \
    comment="bloqueia entrada nao solicitada"

# limit a customer's bandwidth
/queue simple
add name="cliente-102" target=192.168.10.102/32 \
    max-limit=50M/10M

How the equipment is operated

There are three paths: WinBox, the graphical application that is the most common way to configure devices and can connect even by MAC address when the IP is unreachable; the CLI, via SSH or terminal, preferred for automation and scripts; and the REST API, used to integrate the device into management systems. RouterOS also has its own scripting language, which can schedule tasks and react to events on the router itself.

The honest counterpoint

The flexibility has a cost. The learning curve is steep, and the official documentation is notoriously uneven — much of the knowledge circulates in forums and the community. The default configuration is permissive, which has already produced waves of compromised devices run by administrators who never hardened the firewall or updated the system. Keeping RouterOS up to date and restricting administrative access are not optional recommendations.

Where it makes sense

MikroTik shines at internet service providers, mid-sized corporate networks, study labs and any scenario demanding fine-grained control at low cost. For a simple home network, it is excess complexity with no payoff. The networking fundamentals needed to get the most out of it are in network communication, packet delay and latency and the distributed structure of DNS.

## faq

Frequently asked questions

Is MikroTik good for home use?

It works well and offers far more control than an ordinary router, but it demands manual configuration and networking knowledge. For someone who just wants Wi-Fi working with no effort, a conventional router does the job. For someone who wants to learn networking hands-on, it is excellent.

What is WinBox?

It is MikroTik’s graphical utility for configuring RouterOS devices. Its differentiator is being able to connect via MAC address, which makes it possible to recover access to a router even when the IP configuration is wrong or lost.

Why is MikroTik so popular among providers in Brazil?

Because it combines advanced routing features, bandwidth control and hotspot capabilities with hardware costs far below the traditional competitors’. That makes the operation of regional internet providers — of which Brazil has thousands — economically viable.