Centos 上有没有通过 udp 发送命令输出的工具?

Centos 上有没有通过 udp 发送命令输出的工具?

我想将输出发送watch cat file.txt到 udp 端口​​。已经有东西可以用了吗?

答案1

看一眼网猫

例如,您可以通过 nc 管道将消息发送到 UDP 端口 514:

echo "They are taking the hobbits .." | nc -w1 -u 192.168.1.1 514

相关内容