in reply to Re^2: stream info from udp stream on port xx and dump it into syslog
in thread stream info from udp stream on port xx and dump it into syslog

UDP doesn't have the "listen" concept, it's a pure datagram service. Try this out:
#!/usr/bin/perl use strict; use warnings; use IO::Socket::INET; my $sock = IO::Socket::INET->new(Proto => 'udp', LocalPort => 12000); while (<$sock>) { print "Received: $_"; }
Just don't be afraid to try - and to post your attempts. Many here appreciate some effort from the OP side, me included.

Flavio (perl -e 'print(scalar(reverse("\nti.xittelop\@oivalf")))')

Don't fool yourself.
  • Comment on Re^3: stream info from udp stream on port xx and dump it into syslog
  • Download Code