示例图

安装

yum install socat

#!/bin/sh
nohup socat UDP4-LISTEN:8222,reuseaddr,fork UDP4:10.0.0.10:8222 >/dev/null  &
nohup socat UDP4-LISTEN:8221,reuseaddr,fork UDP4:10.0.0.10:8221 >/dev/null  &

注意事项:需要用sh启用,直接命令行的运行语句的话, 会在pts下,断开链接就会丢失。

官方网站:http://www.dest-unreach.org/socat/

官方示例:http://www.dest-unreach.org/socat/doc/socat.html#EXAMPLES