Mikrotik hotspot setup

Mikrotik hotspot setup copy and paste line by line /ip address add address=172.16.1.1/24 comment=LAN disabled=no interface=LAN network=172.16.1.0 add address=192.168.137.100/24 comment=WAN disabled=no interface=WAN network=192.168.137.0 ——————————————————————————————— /ip pool add name=hs-pool-1 ranges=172.16.1.10-172.16.1.255 ——————————————————————————————— /ip dns set allow-remote-requests=yes cache-max-ttl=1w cache-size=10000KiB max-udp-packet-size=512 servers=192.168.137.1 ——————————————————————————————— /ip dhcp-server add address-pool=hs-pool-1 authoritative=after-2sec-delay bootp-support=static disabled=no interface=LAN lease-time=1h name=dhcp1 /ip dhcp-server config set store-leases-disk=5m /ip … Read more

How to limit upload and download to all users in network using mikrotik RouterOS

How to limit upload and download to all users in network using mikrotik RouterOS There are two ways how to make this: using mangle and queue trees, or, using simple queues. 1. Mark all packets with packet-marks upload/download: (lets constider that ether1-LAN is public interface to the Internet and ether2-LAN is local interface where clients … Read more