Module to perform Mikrotik Routerboard Netinstall via Etherboot
Project description
pyNetinstall
Free and Open Source netInstall implementation for Flashing Mikrotik RouterBoards
Introduction
pyNetinstall is meant as a component of a zero-touch deployment system. Using it one can configure RouterBoards en masse easily. The plug-in system allows interfacing pyNetinstall with existing data center infrastructure management systems, uploading individual firmware and configuration per device based on MAC address, model type and serial number.
It is possible to run pyNetinstall in a Container on a Routerboard itself, providing a self-contained, (nearly) zero-touch deployment station.
Unlike the official tooling, pyNetinstall does not include DHCP and TFTP
servers; these services should be handled by e.g. dnsmasq
or the one included
with RouterOS.
Usage
python -m pynetinstall [-c CONFIG] [-i INTERFACE] [-v]
-c CONFIG: Path to the configuration file. Defaults to /etc/pynetinstall.ini
.
-i INTERFACE: Ethernet interface to listen on. Defaults to eth0
.
-l LOGGING: Python logging configuration. Defaults to stderr.
-1: Enable one-shot mode (exit after flashing once).
-v: Increase verbosity. Default is errors and warnings.
-h: Display help and exit.
Theory of Operation
Mikrotik provides a special boot image (embedded in the netinstall tools) that will flash a RouterOS firmware and configuration file on the device. The firmware and configuration is transmitted over a proprietary UDP based protocol, which pyNetinstall implements.
The netinstall protocol provides some device information, including model and serial numbers. By implementing a simple python module, these can be used as parameters to dynamically select firmware and configuration, or directly stream them from HTTP.
The boot image itself is loaded by the RouterBOOT bootloader using BOOTP/DHCP and TFTP. Usually, RouterBoards can be set to boot from network once by pressing reset for 15 seconds while powering on.
Deploy on Mikrotik
By building a small container and setting up DHCP and TFTP, pyNetinstall can be deployed directly on another RouterBoard running RouterOS 7.4 or higher.
This process is a relatively involved; see pyNetinstall on RouterOS for an example.
Deploy on Linux (dnsmasq)
Setup dnsmasq
to provide DHCP and TFTP, so your RouterBoard can boot via
BOOTP. Boot images can be obtained either by extracting them from
netinstall.exe
, or alternatively, some can be downloaded from the
unaffiliated merlinthemagic/MTM-Mikrotik repo.
Below is a sample dnsmasq configuration. Depending on the CPU architecture of your RouterBoard, a different boot file must be used. CPU architectures can be differentiated through the vendor class identifier sent with the DHCP request.
interface=eth0
dhcp-range=10.0.0.101,10.0.0.200,10m
dhcp-boot=vendor:Mips_boot,netinstall.mips
dhcp-boot=vendor:MMipsBoot,netinstall.mmips
dhcp-boot=vendor:ARM__boot,netinstall.arm32
dhcp-boot=vendor:ARM64__boot,netinstall.arm64
enable-tftp
tftp-root=/var/ftpd
tftp-no-blocksize
Using the default plugin
pyNetinstall includes a simple plugin that serves a single firmware and optionally a single configuration file.
The default plugin reads the firmware
and config
parameters from
pynetinstall.ini
. To disable uploading the config file, just remove the line
from pynetinstall.ini
.
[pynetinstall]
firmware=<PATH_TO_ROUTEROS_NPK>
config=<PATH_TO_CONFIG_RSC>
Providing a custom plugin
By writing a small python module the served firmware and configuration file can be varied at runtime, based on the device connected.
To load a custom plugin, the plugin
parameter should be defined in
pynetinstall.ini
. It expects the name of a Python module, a colon, and the
name of a class. The module will be searched for in Python's path ($PWD, $PATH
or $PYTHONPATH). The class is loaded once on startup and reused for each
flashing operation.
[pynetinstall]
plugin=<PYTHON_MODULE>:<CLASS_NAME>
# additional keys or sections defined by the plugin
Such a plugin is simply a python class that implements get_files(info)
,
returning a tuple (firmware, config). Firmware and config may be returned as a
path on disk (string), an HTTP or HTTPS URL (string), or a file object as
returned by e.g. open()
.
Additionally, config may be None
if no custom default configuration is
desired. If firmware is None
, an error is assumed and the current flashing
process is aborted and pyNetinstall resets for the next flashing cycle.
get_files()
is passed an InterfaceInfo object, which contains information on
the connected RouterBoard. The available attributes are described in the example
below.
Implementing __init__(config)
is optional and only required if access
to pynetinstall.ini
is needed through the passed ConfigParser object.
Exceptions raised during __init__()
will result in pyNetinstall exiting.
class Plugin:
def __init__(self, config: ConfigParser):
...
def get_files(self, info: InterfaceInfo):
...
# info.mac.hex(':') = MAC address
# info.model = model name
# info.arch = CPU architecture
# info.min_os = oldest supported rOS version
# info.lic_id = installed license id
# info.lic_key = installed license key
return firmware, configuration_or_None
Extracting Boot Images
You will need to aquire the boot images that the official netinstall tool uses. These are not included as they are not licensed for re-distribution. However, it is fairly easy to extract them from the Mikrotik's Netinstall tool. This guide describes the Linux CLI version, but the same techniques should work on the Windows GUI version as well.
-
Download
netinstall-<version>.tar.gz
The latest version that is linked in the Downloads page General section should work fine for all RouterOS versions. The Download Archive has links to older versions. -
Start
netinstall-cli
sudo ./netinstall-cli -a 127.0.0.2 netinstall-cli
-
Install
dhtest
For Fedora, openSuse and RHEL packages are in the default repositories. On Debian or Ubuntu download the dhtest sources and compile them withmake
. -
Run
dhtest
sudo dhtest -T 5 -o ARM64__boot -i lo
This will set up extraction of the arm64/aarch64 image. Other valid options areMips_boot
,MMipsBoot
,Powerboot
,e500_boot
,e500sboot
,440__boot
,tile_boot
,ARM__boot
andARM64__boot
. -
Download the image
curl tftp://127.0.0.1/linux.arm > netinstall.arm64
The filename is alwayslinux.arm
. Restartnetinstall-cli
and rundhtest
agagin before downloading another image.
Acknowledgements
This project is based on the wonderful reverse engineering work of merlinthemagic.
License
Copyright 2022-2023 DVT - Daten-Verarbeitung Tirol GmbH. Made available under the terms of the GNU General Public License, version 3.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file pynetinstall-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: pynetinstall-1.0.1-py3-none-any.whl
- Upload date:
- Size: 28.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7257d16a4a4de6d8410cae73ee3e8996f23d390b6286ef16f20f81b8c7d7d529 |
|
MD5 | debbe7035721bbda3c912fdd78fe5401 |
|
BLAKE2b-256 | 4a34c75e9e6d9d278f814afe796041546660e0559c9d5fadff04b051b697df49 |