Skip to content

If you want to install a Mikrotik on the server, but also use the rest of the server, you should use this project.

Notifications You must be signed in to change notification settings

im-ecorp/mikrotik-routeros

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mikrotik-routeros

Install and run mikrotik routeros using docker

If you want to install a Mikrotik on the server, but also use the rest of the server, you should use Docker.

Pull the image

docker pull ghcr.io/im-ecorp/mikrotik-routeros:latest

or

docker pull hossein3piol/mikrotik-routeros:latest

You can use version tag instead of latest

for example hossein3piol/mikrotik-routeros:7.9

Run container using command

  • command line

    docker run -itd \
      --name mikrotik \
      -p 80:80 -p 443:443 -p 1194:1194 -p 8291:8291 -p 8729:8729 \
      --cap-add=NET_ADMIN \
      --device=/dev/net/tun \
      ghcr.io/im-ecorp/mikrotik-routeros:latest

to stop the container

docker stop mikrotik
docker rm mikrotik

Run container using compose

  • compose file

    version: '3.9'
    
    services:
       routers:
           container_name: "mikrotik"
           image: ghcr.io/im-ecorp/mikrotik-routeros:latest
           privileged: true
           ports:
               - "21:21"    #ftp
               - "22:22"    #ssh
               - "23:23"    #telnet
               - "80:80"    #http
               - "443:443"  #https
               - "1194:1194"  #OVPN
               - "1450:1450"  #L2TP
               - "8291:8291"  #winbox
               - "8728:8728"  #api
               - "8729:8729"  #api-ssl
               - "13231:13231"  #WireGuard
           cap_add:
               - NET_ADMIN
           devices:
               - /dev/net/tun
    

If you want to give your container static IP, its example is included in the project

Configure Openvpn

Click for Openvpn configuration details

Openvpn

  • first of all we need add private range IP address for each client to have an IP address

    I use 172.24.0.0/16 rage. you can use other range like 192.168.0.0/16 ip_pool

  • after setting IP pool, must get certificate for Openvpn certificate

  • crete profile for Openvpn profile

  • add new client in secret tab clinet

  • create Openvpn profile on interface tab interface I use 4646 port for Openvpn. You can use other ports

  • Finally, in order for each configuration to connect to the Internet, the firewall rule must be set firewall_nat

A Special Thanks to

If this project is helpful to you, you may wish to give it a🌟

  • USDT (TRC20): TH1iDsFr2wjgpptghFBn6h7DVt88pp5WoH

Stargazers over time

Stargazers over time

About

If you want to install a Mikrotik on the server, but also use the rest of the server, you should use this project.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published