MndpTray.Protocol 2.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package MndpTray.Protocol --version 2.0.0
NuGet\Install-Package MndpTray.Protocol -Version 2.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MndpTray.Protocol" Version="2.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MndpTray.Protocol --version 2.0.0
#r "nuget: MndpTray.Protocol, 2.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MndpTray.Protocol as a Cake Addin
#addin nuget:?package=MndpTray.Protocol&version=2.0.0

// Install MndpTray.Protocol as a Cake Tool
#tool nuget:?package=MndpTray.Protocol&version=2.0.0

MndpTray Build status CodeFactor GitHub All Releases Nuget

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.

MNDP similar to CDP and LLDP, but Mikrotik specific, typically includes the following information:

  • MikroTik RouterOS Version: The version of MikroTik RouterOS running on the device.
  • IP Address: The IP address of the device's network interface.
  • Board Name: The name of the device's board.
  • Software ID: A unique identifier for the device's software.
  • MAC Address: The MAC address of the device's network interface.
  • Uptime: The amount of time the device has been running.

Functions

  • Includes integration with external tools like WINBOX, SSH, VNC, RDP, HTTP, PING
  • Send message over windows message service (Remote RPC)
  • IPv4 & IPv6 support
  • Self update from GitHub
  • Blocking winbox discovery function when running

Download Latest

Screenshots

alt text alt text

Tested

  • Windows 11, Windows 10 Os
  • Single and multiple NIC
  • .NET 6.0 runtime

MndpService

MndpService is a background service, which is send information about running host

  • Systemd or Windows service support
  • .NET 6.0 and Ubuntu Linux support
  • Developement in progress

MndpProtocol

Usage

using System;
using System.Threading;

namespace MndpTray.Protocol.Test
{
    public class Program
    {
        private static readonly Timer Timer = new Timer(Timer_Callback, null, Timeout.Infinite, Timeout.Infinite);

        public static void Main(string[] args)
        {
            MndpListener.Instance.Start();
            MndpSender.Instance.Start(MndpHostInfo.Instance);
            Timer.Change(0, 5000);

            Console.WriteLine("--- Start ---");
            while (!Console.KeyAvailable) { Thread.Sleep(100); }
            Console.WriteLine("--- Stop ---");

            Timer.Change(Timeout.Infinite, Timeout.Infinite);
            MndpListener.Instance.Stop();
            MndpSender.Instance.Stop();
        }

        private static void Timer_Callback(object state)
        {
            foreach (var i in MndpListener.Instance.GetMessages()) Console.WriteLine(i.Value.ToString());
            Console.WriteLine("--- Message List End ---");
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.6.2

    • No dependencies.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.2.0 112 4/2/2024
2.1.0 210 8/28/2023
2.0.0 178 5/17/2023
1.8.0 869 8/17/2019
1.7.0 563 7/22/2019
1.6.0 666 3/15/2019
1.5.0 686 1/18/2019
1.4.5 662 12/21/2018
1.4.4 648 12/18/2018
1.4.3 910 12/18/2018
1.4.1 952 12/13/2018
1.4.0 958 12/13/2018

Multi targeting .net 4.6.2 .net standard 2.0