Hello Everybody,
I’m searching the solution to create neighbor discovery as winbox.
I already create a program in C sharp but I don’t find the function “send and receive information” by mikrotik device.
I need your help !
Thank you
Hello Everybody,
I’m searching the solution to create neighbor discovery as winbox.
I already create a program in C sharp but I don’t find the function “send and receive information” by mikrotik device.
I need your help !
Thank you
from the manual, “MikroTik Neighbor Discovery protocol (MNDP) allows to “find” other devices compatible with MNDP or CDP (Cisco Discovery Protocol) in Layer2 broadcast domain.”
You should use wireshark to understand how packets are formed, see
https://www.wireshark.org/docs/dfref/m/mndp.html
et voilà, you should have everything you need to code your app
Thank you, I will see that.
Hello,
I snif with wireshark and I seen all parameters.
But What is the function for snif in C sharp?
Thank for your reply.
There is no such function. No built in one at least.
You could make your own though. That was noib’s point. You can use the UDP client to read the raw bytes. How do you interpret each byte? That’s what Wireshark is supposed to give you hints to. In fact, they have a page on their site describing how they parse it (=> how you should parse it).
If you successfully make a parser, I’m sure there will be others in this forum like yourself, who’d be interested in using it.
Thank you for you answer,
It’s very helpfull!