1、使用xinetd 服务【类似Windows的svchost】,配置/etc/xinetd.d/map-yourport后,systemctl reload xinetd 即可。map-yourport 内容如下
service map-yourport {
socket_type = stream
protocol = tcp
wait = no
user = nobody
group = nobody
type = UNLISTED
port = 3210
redirect = 127.34.56.78 3306
}
2、使用 socat tcp4-listen:3210,fork tcp4:127.34.56.78:3306 &
3、使用 rinetd,需要配置 /etc/rinetd.conf,内容如下:
0.0.0.0 3210 127.34.56.78 3306