Mikrotik module collection for ansible
Find a file
Valentin fb9c4eddd7
Merge pull request #35 from computercolin/ppp_extensions_and_fixes
Added VPN extensions to existing modules
2022-06-08 07:50:08 -07:00
library Add ansible module for mikrotik vpn server config (ppp-server) 2022-06-08 01:20:50 -06:00
pythonlibs Make api authentication errors more verbose. 2022-06-08 01:17:39 -06:00
tasks fix spells 2017-06-21 15:42:40 -07:00
tests/integration Merge pull request #28 from amatamalas/ip_address 2018-03-20 15:19:52 -06:00
.gitignore ignore .vagrant 2017-05-30 23:24:49 -07:00
create_vagrant_mikrotik.sh Just updating the download image 2018-10-19 18:54:32 -03:00
LICENSE Initial commit 2017-01-10 14:58:57 -08:00
Pipfile add sample test task to use mt_facts module temporary, 2018-01-09 09:12:14 -08:00
Pipfile.lock add sample test task to use mt_facts module temporary, 2018-01-09 09:12:14 -08:00
README.md spell fix 2018-01-30 14:11:47 -08:00
Vagrantfile add vagrant 2017-05-25 16:35:42 -07:00

Ansible MikroTik modules

Introduction

This repository provides Ansible modules to manage MikroTik RouterOS-based devices.

Requirements

Ansible=2.4.2.0

At this time there are no external dependencies. However, there are additional Python modules that are required by the Ansible modules. You may find these in pythonlibs. Before using Ansible you should add these libraries to your Python path: export PYTHONPATH="$PYTHONPATH:$PWD/pythonlibs"

Development


In order to test this module, you'll need a RouterOS instance to target. If you have an existing RouterOS-based MikroTik device, you need only make sure the API service is enabled.

AWS EC2

You can use an ec2 CHR image for testing. Keep in mind that as of right now we can only set up two interfaces on most ec2 instances. https://aws.amazon.com/marketplace/pp/B01E00PU50?qid=1517274040207&sr=0-1&ref_=srh_res_product_title

Vagrant

This repository provides a Vagrantfile for setting up the x86 build of RouterOS for testing. To use it, you must first ensure Vagrant and VirtualBox are installed. Then, run ./create_vagrant_mikrotik.sh to download the official MikroTik Cloud Hosted Router (CHR) image from MikroTik, package it as a Vagrant .box file, and register the .box with Vagrant.

Then, you need only run vagrant up in the repository root to start the CHR.

Ansible setup

To use pipenv ensure pipenv is installed:

pip install pipenv

Then enable virtualenv and install dependencies:

pipenv shell

pipenv install

Installing

These modules are still in a very early stage of development; stay tuned for installation instructions later! :)