LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

How to Ping a network device from RT controller

Is there any ways other than TCP/IP or FTP to ping and check whether a particular network device is present or not in the network by using RT controller ??

 

Thanks,

Nanda

0 Kudos
Message 1 of 15
(7,047 Views)

I believe there is a vi called 'find all targets.vi' in the system configuration api

 

http://joule.ni.com/nidu/cds/view/p/id/2116/lang/en

0 Kudos
Message 2 of 15
(7,043 Views)

The "Find Targets" VIs will only find NI RT controllers. If you want to do an ICMP ping to a non-NI device it will not do what you want.

 

A while back I wrote up this VI to do an ICMP ping on Windows, PharLap, and VxWorks controllers that should still work. On VxWorks devices there was a bug in the WindRiver implmentation that would incorrectly add a delay to the round-trip time---I do not know if this has been fixed.

 

Eric

Message 3 of 15
(7,028 Views)

Nice VI thanks!

0 Kudos
Message 4 of 15
(7,007 Views)

@BlueCheese wrote:

The "Find Targets" VIs will only find NI RT controllers. If you want to do an ICMP ping to a non-NI device it will not do what you want.

 

A while back I wrote up this VI to do an ICMP ping on Windows, PharLap, and VxWorks controllers that should still work. On VxWorks devices there was a bug in the WindRiver implmentation that would incorrectly add a delay to the round-trip time---I do not know if this has been fixed.

 

Eric


I tried it on both my PC and a PXI-RT using LV2010 and it work perfectly!

 

The problem is I tried "translating" it to LabVIEW 7.1 and LV closses inmediately Smiley Sad

Would you have an older version of the VI for PharLap?

 

 

 

 

0 Kudos
Message 5 of 15
(6,928 Views)

Update!

My LV7.1 vi doesn't close inmediatelly anymore Smiley Very Happy

However, it timesout on the "select" before the "recvfrom".

 

Any ideas?

 

Regards

0 Kudos
Message 6 of 15
(6,917 Views)

This VI (after some clean-up) is AWESOME!

Thank you!

QFang
-------------
CLD LabVIEW 7.1 to 2016
0 Kudos
Message 7 of 15
(6,223 Views)

@BlueCheese wrote:

 

A while back I wrote up this VI to do an ICMP ping on Windows, PharLap, and VxWorks controllers that should still work.

 


Someone told me that this Ping.vi was broken on newer LVRT targets running PharLap (at least in 2016, but probably was broken when some parts of the network stack were upgraded a few years back). I took a quick look and fixed the VI. Attached is a 2017 version.

Message 8 of 15
(5,111 Views)

Can you save that back in 2016?

 

I went through and figured out a few things with the old ping.vi.

 

  • winsock32.dll is obviously single threaded and wants to be on the UI thread (Why, I don't know).
  • The select calls can be on any thread so they don't stall the UI thread fortunately
  • For some reason, I had to surround the entire thing with a timed sequence (or single-shot timed loop)

I'd bet if I understood why the above (timed structure + UI thread) were both required for this to work in ets, I'd know an awful lot more about how LabView works Smiley Wink

 

 

0 Kudos
Message 9 of 15
(5,094 Views)

I don't have a chance at the moment to save back to 2016. However, the only two changes needed are:

  • Disable the non-blocking ioctl call at the beginning as it is not needed/supported the same way
  • Fix the closesocket() call at the end to use stdcall convention (this was a bug in the VI)

There is no issue with using sockets from multiple threads. I suspect the second issue was causing funny crashes that changed behavior depending which thread you were calling from.

 

0 Kudos
Message 10 of 15
(5,070 Views)