MndpTray is a Windows utility that allows you, to monitor and manage MikroTik devices, on your network from the system tray.
The information is broadcast using the MikroTik Discovery Protocol (MNDP), which allows MikroTik RouterOS devices to discover other MikroTik RouterOS devices on the same network segment. This makes it possible for MndpTray to provide information about the host, to other MikroTik RouterOS devices and for other MikroTik RouterOS devices, to retrieve this information and display it in their own management interfaces.
By providing this information, MndpTray makes it easier for network administrators to monitor and manage their MikroTik RouterOS devices, as they can quickly see the status of all the devices on their network without having to log in to each device individually.
winget install --accept-source-agreements mndptray.core
mndptray
MNDP similar to CDP and LLDP, but Mikrotik specific, typically includes the following information:
MndpService is a background service, which is send information about running host
Linux install one-liner
sudo su -c "bash <(wget -qO- https://github.com/xmegz/MndpTray/releases/download/v2.2.0/install.sh)" root
Standalone package for intergation and testing
namespace MndpTray.Protocol.Test
{
using System;
using System.Threading;
/// <summary>
/// Startup Class.
/// </summary>
public static class Program
{
/// <summary>
/// Startup Method.
/// </summary>
public static void Main()
{
MndpListener.Instance.Start();
MndpListener.Instance.OnDeviceDiscovered += Instance_OnDeviceDiscovered;
MndpSender.Instance.Start(MndpHostInfo.Instance);
Console.WriteLine("--- Start ---");
Console.WriteLine("Press any key to stop");
while (!Console.KeyAvailable)
Thread.Sleep(100);
Console.WriteLine("--- Stop ---");
MndpListener.Instance.Stop();
MndpSender.Instance.Stop();
}
private static void Instance_OnDeviceDiscovered(object sender, MndpListener.DeviceDiscoveredEventArgs e)
{
Console.WriteLine(e.Message.ToString());
}
}
}