MIKROTIK DUDE BASIC INSTALLATION GUIDE ~ Article by Syed Jahanzaib ~CNMS - Centralized Network Monitoring & Management System !!! - JZ
Example MAP of my Office LAN
What is THE DUDE ?
Answer is below > As Mikrotik Wiki defines:
The Dude is a free Monitoring application by MikroTik, which can dramatically improve the way you manage/monitor your network environment.
It will automatically scan all devices within specified subnets, Draw and Layout a map of your networks, monitor services of your devices and execute actions based on device state changes.
You can Install the DUDE on your Windows PC , OR you can also install it on your Mikrotik x86/RouterBoard.
First Download ‘The Dude’ from
http://www.mikrotik.com/thedude.php
For Windows PC, Get the The Dude for Windows
http://download.mikrotik.com/dude-install-3.6.exe
After download simply execute the .exe file and it will install it just like any other simple application.If you have install it on PC, you can start by going to START / Programs / The due.
For Mikrotik ROUTERBOARD (Hardware Version), First Get the NPK package,
Download the .npk package for mikrotik,
http://download.mikrotik.com/dude-3.6.npk
(Note: Select the ver accordingly.)
After downloading .npk, upload it to Mikrotik Files section and reboot the Mikrotik, It will automatically add the The Dude package in it before rebooting. Follow the image below.
After installation, Both management is done in a same manner.You access the DUDE installed on Mikrotik by using your windows base dude to connect to mikrotik.
If you are running the DUDE on PC, you can start by going to START / Programs / The due
If you are running the DUDE on Mikrotik, first install the dude on your windows pc, then using it, you can connect to Mirkotik’s dude. Same as you use Winbox to connect to any Mikrotik. You can use the dude on your windows to connect to any dude all over the network.
Ok execute the dude. You will be asked for the credentials, Just like Mikrotik default installation, dude have no default password,
ID = admin
Password = No Password, Just Enter
Now you will The Dude main screen. Just for an example, I will add simple Network by using Auto DISCOVERY. You can later create your own desired network MAP once you understand HOW things works in dude.
Use your local subnet series. Also click on ‘LAYOUT MAP AFTER DISCOVERY COMPLETE’.
Remove un-necessary services from SERVICES menu, so you will not get red icon if the services not found.
Its best to install SNMP on all of your servers to get the maximum information like Link usage/CPU/Memory/HDD etc etc.
After it will completes the discovery, it will create a automatic layout map, Something similar to below image.
If you are unable to see any PC , Try adding few ips manually. If target pc ping/icmp is blocked, then you won’t be able to see any PC in the graphs, so its better to use another approach /combination on “Device name preferences”. Also check your mikrotik / target pc firewall configuration.
The above image looks Pretty much messed up, but you can trim it or adjust it according to your flavor
, like the below
The DUDE tip’s n tricks
Howto ADD Machines/Devices Manually (Without Auto Discovery Mode)
Sometimes You would like to add only few targeted devices / computers on your network to be monitored via dude.
To do so follow the instructions showed in the below screenshots.
On the Network MAP screen, Click on + sign, then select Device. Now enter IP address of your target device and click NEXT.
Now select DISCOVER to check what services target device is offering for monitoring.
Now add another device as shown in above images.
Now add Network ICON so that we can connect both devices for link monitoring.
Now the real part, Again Click on + sign and click LINK to create link between device and network icon.
Howto Change Background Image
You can change background image by going to
HOWTO ENABLE WEB BASE ACCESS
You can also View/Controll Dude via web browser. This is convenient if you have fix public ip on your mikrotik / pc where due is hosted, you can monitor your network all over globe using browser only.
First you have to enable Web Service in DUDE.
Make sure there is no other web server running on your pc/mikrotik. If so, please change the port in above image to something different , example 1234. Now open your browser and point it to your dude server.
[sourcode]http://192.168.2.6[/sourcode]
It will ask id password, Enter your credentials.
Now click on MAPS > Network Map & you will be redirected to your network map. See the below image.
HOWTO Show any OID on Device
Some of the examples are taken from the Mikrotik DUDE forum.
Special thanks to Mr. Lebowski
Right click on your device and select APPEARANCE, click on LABEL: and add this OID (For example only, change the OID as your requirement)
NOC Room Temperature : [oid("1.3.6.1.4.1.534.1.6.5.0")]
HOWTO Remote Shutdown any PC
Open Dude console, from left menu, goto tools, and click on plus sign + to add new tool,
Use the following
Type: Executable
Name: Shutdown Target
Command: c:\windows\system32\shutdown.exe -s -f -t 30 /m \\[Device.FirstAddress]
I will add more snaps and info of some live networks where I deployed this beautiful tool.
One Link:
http://aacable.wordpress.com/2012/07/02/the-dude-show-us-your-map-series/
HOWTO add probe for disk like C: & D:
To monitor C: or D: drive for space alert, First create Function, then create probe and use the function. then add this probe to device
Function.
Name:
drivec
Code :if(array_size(oid_column(“1.3.6.1.2.1.25.2.3.1.6″,10,5)),round((oid(“1.3.6.1.2.1.25.2.3.1.6.1″,10,5)/oid(“1.3.6.1.2.1.25.2.3.1.5.1″,10,5))*100),”False”)
Now create new Probe.
Name:Low Space in C Drive
Type: Function
Available:drivec()<>”False”
Error:if(drivec()<>”False”,if(drivec() < 85, “”, concatenate(“Warning: Drive C = “, drivec(), “%”)), “Failed to read Drive C the server might be down”)
Value:drivec()
Unit: %
Now add this probe in target windows device in service section. That’s it. Now if the C: Drive goes above 85%, it will alert, you can tag voice/visual/email/sms alert with it. I use VOICE alert ![]()
NOTE: The OID for the C: drive can be different on your system , it depends on the drives you have in your system, for example I used the 1.3.6.1.2.1.25.2.3.1.6.1 , but you may have 1.3.6.1.2.1.25.2.3.1.6.2 , so its better to check it in snmp section of device properties.
HOWTO show Disk Read & Write Time
You have to first install snmptools and add disk counters in the ini file in order to retrieve the disk read write time counters.e.g: http://aacable.wordpress.com/2012/07/25/using-snmptools-to-monitor-disk-read-write-time-win2008-6432-bit/
Disk Read / Write Time C: & D: [string_substring(oid("1.3.6.1.4.1.15.1"),0,3)] / [string_substring(oid("1.3.6.1.4.1.15.2"),0,3)]
HOWTO check if specific program is running or not [using taskmgr list]
Create New Probe and tag it with your required target device.
Probe Name: lotus_notes_test
Type: Function
Available: if(array_find(oid_column(“1.3.6.1.2.1.25.4.2.1.2″), “notes2.exe”)>0, 1, -1)
Error: if(array_find(oid_column(“1.3.6.1.2.1.25.4.2.1.2″), “notes2.exe”)>0, “”, “notes2.exe not detected by SNMP probe”)Notes not running on zaib pc”)
Value: 1
Unit: running
Note: Replace notes2.exe with your require files name you want to monitor. The name is case-sensitive! Write the file name the same as you see it in the Windows Task Manager List.
HOWTO check if specific SERVICE is running or not
Create New Probe and tag it with your required target device.
Probe Name: check_telnet_service
Type: Function
Available: if(array_find(oid_column(“1.3.6.1.4.1.77.1.2.3.1.1″),”Telnet”)>0, 1, 0)
Error: if(array_find(oid_column(“1.3.6.1.4.1.77.1.2.3.1.1″),”Telnet”)>0, “”, “Telnet not detected by SNMP probe”)
Value: 1
Unit:
Note: Replace Telnet with the service name your want to monitor. Type the full name of the service you see in the services console. The name may be case-sensitive! Write the file name the same as you see it in the Services Console.
HOWTO Create Alert if specific OID result gets below Specific Digit/%
If you want to monitor specific OID result and if it gets below or above your pre-defined number, it should alert, Use the below probe (I used this probe to monitor my data center room temperature using temperature device, if the temperature goes above 25, it alerts using sms/voice alert)
Name: NCO Room Temperature Alert
Type: Function
Available: if(oid(“1.3.6.1.4.1.534.1.6.5.0″)>0, 1, -1)
Available: if(oid(“1.3.6.1.4.1.534.1.6.5.0″)<25, “”, “NOC Room Temp Over 25, Turn ON Extra AC,Jz”)
Value: 1.3.6.1.4.1.534.1.6.5.0
Unit: C
HOWTO show ping result on device label
If you want to show the ping result on your device label, Right click on device , select appearance, in Lable, paste the following code:
[array_element(ping(device_property("FirstAddress")),0)] ms
HOWTO Check for High Delay via Ping Function/Probe
If you want to monitor any device ping delay ms, for example if ping ms delay to any internet link increases above 600 ms , then it should alert, use the following function/probe.
First add new function
Function:
Name: ping_rtt
Description: Returns the round-trip time of a ping request to the FirstAddres of a device
Code: round(array_element(ping(device_property(“FirstAddress”)), 0))
Now create probe and tag the ping_rtt function in it.
Probe Name: Ping Delay
Type: Function
Available: and(device_property(“FirstAddress”) <> “”, ping_rtt()>-1)
Error: if(and(ping_rtt()>-1, ping_rtt()<600), “”, if(ping_rtt()>-1, concatenate(“ISP Load/Latency above 600ms with “, ping_rtt(), “ms”), “down”))
Value: ping_rtt()
Unit: ms
Now tag it with the device in services section.
HOWTO check HP 2420n Toner Cartridge
On device label, use the following oid [Make sure you have enabled the snmp on the printer and in the device snmp section)
TONER [oid("1.3.6.1.2.1.43.11.1.1.9.1.1")/0.6000*100] % Remaining
HOWTO show number of connected users on Cisco AP
Active WiFi Users: [oid("1.3.6.1.4.1.9.9.273.1.1.2.1.1.1")]
HOWTO show Disk C: & D: Free/Total statistics on Device Lable
Disk Space: C:\=[round(((((oid("1.3.6.1.2.1.25.2.3.1.5.1")-oid("1.3.6.1.2.1.25.2.3.1.6.1"))*oid("1.3.6.1.2.1.25.2.3.1.4.1"))/1024)/1024)/1024)]/[round(((oid("1.3.6.1.2.1.25.2.3.1.5.1")*oid("1.3.6.1.2.1.25.2.3.1.4.1")/1024)/1024)/1024)] GB ** D:\=[round(((((oid("1.3.6.1.2.1.25.2.3.1.5.2")-oid("1.3.6.1.2.1.25.2.3.1.6.2"))*oid("1.3.6.1.2.1.25.2.3.1.4.2"))/1024)/1024)/1024)]/[round(((oid("1.3.6.1.2.1.25.2.3.1.5.2")*oid("1.3.6.1.2.1.25.2.3.1.4.2")/1024)/1024)/1024)] GB
HOWTO show Cisco ASA 5510 Cpu Usage
Cisco ASA Cpu Usage: CPU Load 1min: [oid("1.3.6.1.4.1.9.9.109.1.1.1.1.5.1")] %
HOWTO show Cisco 3750 Switch Temperature
Temperature : [oid("1.3.6.1.4.1.9.9.13.1.3.1.3.1006")]
HOWTO show EATON UPS 9155 : Temperature/Volts/Load
UPS Temp: [oid("1.3.6.1.4.1.534.1.6.1.0")]
KESC Volt: [oid("1.3.6.1.2.1.33.1.3.3.1.3.1")]
LOAD [oid("1.3.6.1.2.1.33.1.4.4.1.5.1")] %
HOWTO show all CPU’s Load
Load on [array_size(oid_column("iso.org.dod.internet.mgmt.mib-2.host.hrDevice.hrProcessorTable.hrProcessorEntry.hrProcessorLoad"))] CPU(‘s): [oid_column("iso.org.dod.internet.mgmt.mib-2.host.hrDevice.hrProcessorTable.hrProcessorEntry.hrProcessorLoad")]
IBM Lotus Domino Server
Mail Waiting: [oid("1.3.6.1.4.1.334.72.1.1.4.6.0")]
Server Availability Index: [oid("1.3.6.1.4.1.334.72.1.1.6.3.19.0")]
Lotus DB Connected Users: [oid("1.3.6.1.4.1.334.72.1.1.6.3.6.0")]
EATON Powerware Environment Monitoring Probe [EMP]
NOC Room Temperature : [oid("1.3.6.1.4.1.534.1.6.5.0")]
Howto Show UPTIME
Uptime: [string_substring(oid("1.3.6.1.2.1.1.3.0"),0,8)]
.
Regard’s
~ Syed Jahanzaib ~
















