MikroTik Certified Internetworking Engineer (MTCINE)
1 Introduction to Networking
1-1 Basic Networking Concepts
1-2 OSI Model
1-3 TCPIP Model
1-4 Network Devices
1-5 Network Topologies
2 MikroTik RouterOS Basics
2-1 Introduction to RouterOS
2-2 RouterOS Interface
2-3 Basic Configuration
2-4 User Management
2-5 System Logging
3 IP Addressing and Subnetting
3-1 IPv4 Addressing
3-2 Subnetting
3-3 IPv6 Addressing
3-4 IPv6 Subnetting
3-5 NAT and PAT
4 Routing
4-1 Static Routing
4-2 Dynamic Routing Protocols
4-3 OSPF
4-4 BGP
4-5 EIGRP
5 Wireless Networking
5-1 Wireless Basics
5-2 Wireless Security
5-3 Wireless Configuration
5-4 Wireless Bridging
5-5 Wireless Repeaters
6 VPN Technologies
6-1 VPN Basics
6-2 IPsec VPN
6-3 OpenVPN
6-4 L2TPPPTP
6-5 SSL VPN
7 Quality of Service (QoS)
7-1 QoS Basics
7-2 Traffic Shaping
7-3 Policing
7-4 Prioritization
7-5 Queue Types
8 Firewall and Security
8-1 Firewall Basics
8-2 Firewall Rules
8-3 NAT Rules
8-4 Filtering Rules
8-5 Hotspot and Captive Portal
9 Advanced Topics
9-1 VLANs
9-2 MPLS
9-3 High Availability
9-4 Load Balancing
9-5 Monitoring and Troubleshooting
MikroTik RouterOS Basics Explained

MikroTik RouterOS Basics Explained

1. Interface Configuration

Interface configuration is a fundamental aspect of managing a MikroTik RouterOS device. It involves setting up and managing network interfaces, which are the physical and virtual connections that allow the router to communicate with other devices. Key tasks include assigning IP addresses, configuring VLANs, and setting up bridge interfaces.

Example: Imagine you are setting up a new office network. You need to configure the router's Ethernet ports to connect to different departments. Each port might be assigned a specific IP address and VLAN tag to ensure proper traffic segregation.

Steps to configure an interface:

  1. Log in to the MikroTik device using Winbox or the command line.
  2. Navigate to the "Interfaces" menu.
  3. Select the interface you want to configure (e.g., ether1).
  4. Assign an IP address and subnet mask (e.g., 192.168.1.1/24).
  5. Apply the settings and verify the interface status.

2. Firewall Configuration

Firewall configuration in MikroTik RouterOS is crucial for securing your network. It involves setting up rules to control incoming and outgoing traffic based on various criteria such as source and destination IP addresses, ports, and protocols. The firewall can be configured to block unwanted traffic, allow specific services, and log traffic for auditing purposes.

Example: Consider a scenario where you want to allow only HTTPS traffic (port 443) to a web server while blocking all other traffic. You would create a firewall rule to permit traffic on port 443 and deny all other traffic to that server.

Steps to configure a firewall rule:

  1. Log in to the MikroTik device using Winbox or the command line.
  2. Navigate to the "IP" menu and select "Firewall."
  3. Choose the appropriate firewall chain (e.g., "input," "output," or "forward").
  4. Create a new rule to permit or deny traffic based on your requirements.
  5. Apply the rule and test the configuration to ensure it works as expected.