How do you redirect (one way only) udp packets to another host using netcat?
nc -l -u 0.0.0.0 12345 | nc -u 192.168.1.128 12345
stops after successfully redirecting the first packet.
(Note: an iptables solution would also be useful.)
Thanks,
Chris.