{% extends "base.html" %} {% block title %}New device - MikroMon{% endblock %} {% block content %}

Add device

Configure RouterOS REST access
Back
{{ form.hidden_tag() }}
{{ form.name(class_="form-control", placeholder="e.g. MikroTik RB4011") }}
{{ form.host(class_="form-control", placeholder="192.168.1.1 or router.example.com") }}
{{ form.rest_scheme(class_="form-select", id="restScheme") }}
{{ form.rest_port(class_="form-control", id="restPort") }}
{{ form.rest_base_path(class_="form-control", placeholder="/rest") }}
{{ form.username(class_="form-control") }}
{{ form.password(class_="form-control", placeholder="••••••••") }}
{{ form.allow_insecure_tls(class_="form-check-input") }}

Tips
  • Use HTTPS for encrypted RouterOS REST.
  • Use HTTP only for local trusted networks when needed.
  • Default path is /rest.
{% endblock %}