Categories
- Blog (1)
- Grandstream UCM (1)
- IP Telephony (45)
- KVM (1)
- Linux (54)
- Microsoft (5)
- Mikrotik (14)
- Network (16)
- Paloalto Firewall (1)
- Uncategorized (196)
- Vicidial (6)
- VMware (67)
-
Recent Posts
- Integrating VICIdial with CRM: Solving Custom Field and Data Sync Issues
- How to Remove +91 / 91 from Incoming Caller ID in VICIdial (Fix Lead Matching Issue)
- How to Retrieve VICIdial Admin Password from MySQL Database
- How to Manage KVM Virtual Machines on Ubuntu Server Using virsh
- Palo Alto UNAT Configuration – Step-by-Step Lab Guide (LAN → DMZ via WAN)
Category Archives: Mikrotik
How to bandwidth limit with simple queue on Mikrotik Router OS
How to bandwidth limit with simple queue on Mikrotik Router OS we have network topology like below picture and we want to limited download and upload for private network (download – 512 kbps and upload – 128 kbps).
Posted in Mikrotik
Leave a comment
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 … Continue reading
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 … Continue reading