Skip to content

MikroTik Router Configuration

Initial Setup & Security

1. Factory Reset

  • SystemReset Configuration
  • Important: Check No Default Configuration to start clean
  • After reset, default credentials are:
  • Username: admin
  • Password: (empty)

picsur.png

2. Secure Access (Do this before connecting to internet)

2.1 Limit management services

  • IPServices
  • Disable everything you don’t use
  • Keep only WinBox enabled

picsur.png

2.2 Change admin password / user

  • SystemUsers
  • Set a strong password (or create a new admin user and disable admin)

Internet Connection

3. Create PPPoE client

  • PPPNewPPPoE Client
  • Interface: ether1
  • User / Password: from ISP

4. NAT (Masquerade)

  • IPFirewallNATNew
  • Chain: srcnat
  • Out. Interface: your PPPoE interface (e.g. pppoe-out1)
  • Action: masquerade

5. Verify Connectivity

Test internet connection in terminal:

1
ping 8.8.8.8

picsur.png

LAN Configuration

6. Create Bridge

  • BridgeNew
  • Name: bridge

picsur.png

7. Add LAN ports to bridge

  • BridgePortsNew
  • Add ether2, ether3, ether4, ether5 to bridge

picsur.png

8. Assign gateway IP to bridge

  • IPAddressesNew
  • Address: 192.168.0.1/24
  • Interface: bridge

picsur.png

9. Set DNS servers

  • IPDNS
  • Servers: 1.1.1.1 (or your preferred DNS)

picsur.png

10. DHCP Server for LAN clients

  • IPDHCP ServerDHCP Setup
  • DHCP Server Interface: bridge
  • DHCP Address Space: 192.168.0.0/24
  • Gateway: 192.168.0.1
  • Address Pool: 192.168.0.20-192.168.0.254
  • DNS Server: 1.1.1.1
  • Lease Time: 24:00:00 (24 hours for home use)

11. Verify from a client PC

  • Connect to ether2ether5
  • Test ping 8.8.8.8