Operating System - HP-UX
1756644 Members
2597 Online
108849 Solutions
New Discussion юеВ

sending a command using UDP?

 
Ken Gerdeman
New Member

sending a command using UDP?

does anyone know how(or what command) to send a command from HP-UX to another device that accepts UDP.

Thanks,
Ken
4 REPLIES 4
Deoncia Grayson_1
Honored Contributor

Re: sending a command using UDP?

I'm not sure if i'm understanding clearly but you might find these links of interest:

http://www.hume.com/html83/mann/udp.html

http://www.securitydocs.com/library/2626
If no one ever took risks, Michelangelo would have painted the Sistine floor. -Neil Simon
harry d brown jr
Honored Contributor

Re: sending a command using UDP?

So basically you want to send a command from one server to another without the ability to determine if that command was successfully sent?

Interesting!

live free or die
harry d brown jr
Live Free or Die
A. Clay Stephenson
Acclaimed Contributor

Re: sending a command using UDP?

Your question has absolutely no meaning until you define the service to which you are trying to connect. Probably the easist way to set up a UDP client connection is via a Perl IO::Socket but you must be able to at least identify the service that you are trying to access.
If it ain't broke, I can fix that.
Ron Kinner
Honored Contributor

Re: sending a command using UDP?

If you just want to send a UDP packet to another device then you can use traceroute. You won't have any control over what the packet says but if the -p option is supported on the originating machine then you can point it at some other port other than the default.

If you want a little program to send arbitrary text to an arbitrary UDP port then:

http://www.ussrback.com/UNIX/utilities/udpprobe.txt

is a good start.

Ron