Page 1 of 1

IPSetup.exe question

Posted: Tue Aug 04, 2009 5:57 am
by seulater
Before you say, do a search, i already tried that and it responded with: "The following words in your search query were ignored because they are too common words: ipsetup."

So... i believe this was asked a million times but here is the millionth and one.

I would like to create a Flex app that would be able to search the net and find the MAC and IP numbers of any NB modules out there just like IPsetup tool does.
is there information already out there that describes how IPSetup.exe works ?

Re: IPSetup.exe question

Posted: Tue Aug 04, 2009 9:48 am
by Chris Ruff
The source code for IPSetup is under ..pctools in your \nburn directory. NB modules listen on a high port 2xxxx (I forget) and respond to traffic there. It is all in the source code.

Chris

Re: IPSetup.exe question

Posted: Tue Aug 04, 2009 10:59 am
by Forrest
I wrote this app note up a while ago when I was making the IPSetup like tool in java that runs in NBEclipse (NBFind)

It basically describes the packet that you send to the module, and the packet the the module will respond with. You can get the IP, mac, current running application, and change various monitor settings through this packet. It also has some java example code.

Wireshark (packet sniffer) also helps in making sure your packet is formed correct. Compare your packet request to a request from IPSetup.

Re: IPSetup.exe question

Posted: Tue Aug 04, 2009 2:56 pm
by Forrest
Chris Ruff wrote: NB modules listen on a high port 2xxxx (I forget) and respond to traffic there.

20034, which in hex is 4E42.

0x4E = N, 0x42 = B
:D :D