一个好用的 TCP 端口转发工具 rinetd
后知后觉 现有 1 评论

这是一款简洁好用的 TCP 端口转发程序。

其官方 rinetd 仓库,其作者官方博客,如下是官方的描述:

A TCP port-forwarding utility that does not require root access.

原作者已经放弃项目,由新维护者进行维护,仓库地址:rinetd

安装

在部分发行版的官方仓库中存在,但是 RHEL 系列的发行版并未存在。这部分发行版需要自行编译安装。

下载源码

git clone https://github.com/boutell/rinetd.git

编译

make

不出意外的话会见到如下提示:

cc -DLINUX -g   -c -o rinetd.o rinetd.c
rinetd.c:176:6: warning: conflicting types for built-in function ‘log’ [enabled by default]
 void log(int i, int coSe, int result);
      ^
cc -DLINUX -g   -c -o match.o match.c
cc rinetd.o match.o -o rinetd

修改 Makefile 中的编译参数

然后重新编译即可,记得删除已经编译的 rinetd 二进制文件。

make
cc rinetd.o match.o -o rinetd

编译后安装即可

make install

配置

其程序默认的配置文件为 /etc/rinetd.conf

配置格式为:源IP 源端口 转发IP 转发端口,配置支持使用 ?* 规则。

小贴士:比如将本机的 80 端口转发至某地址的 51002 端口。
logfile /var/log/rinetd.log
0.0.0.0 80 192.168.99.99 51002

脚本

启停脚本可使用如下

#! /bin/sh
### BEGIN INIT INFO
# Provides:          rinetd
# Required-Start:    $remote_fs $syslog
# Required-Stop:     $remote_fs $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
### END INIT INFO

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/rinetd
CONFFILE=/etc/rinetd.conf
PIDFILE=/var/run/rinetd.pid
NAME=rinetd
DESC="internet redirection server"

test -f $DAEMON || exit 0
test -f $CONFFILE || exit 0

set -e

. /lib/lsb/init-functions

case "$1" in
  start)
    echo -n "Starting $DESC:"
    start-stop-daemon --start --quiet --exec $DAEMON && echo -n " $NAME"
    echo "."
    ;;
  stop)
    echo -n "Stopping $DESC:"
    start-stop-daemon --stop --quiet --pidfile $PIDFILE --exec $DAEMON && echo -n " $NAME"
    echo "."
    ;;
  reload|force-reload)
    echo -n "Reloading configuration of $DESC:"
    start-stop-daemon --stop --quiet --pidfile $PIDFILE --signal 1 --exec $DAEMON && echo -n " $NAME"
    echo "."
    ;;
  restart)
    echo -n "Stopping $DESC:"
    start-stop-daemon --stop --quiet --pidfile $PIDFILE --exec $DAEMON && echo -n " $NAME"
    echo "."
    sleep 1
    echo -n "Starting $DESC:"
    start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON && echo -n " $NAME"
    echo "."
    ;;
  status)
    status_of_proc -p $PIDFILE $DAEMON $NAME && exit 0 || exit $?
    ;;
  *)
    echo "Usage: /etc/init.d/$NAME {start|stop|reload|restart|force-reload}"
    exit 1
    ;;
esac

exit 0

其他

配置说明

# this is the configuration file for rinetd, the internet redirection server
#
# you may specify global allow and deny rules here
# only ip addresses are matched, hostnames cannot be specified here
# the wildcards you may use are * and ?
#
# allow 192.168.2.*
# deny 192.168.2.1?


#
# forwarding rules come here
#
# you may specify allow and deny rules after a specific forwarding rule
# to apply to only that forwarding rule
#
# bindadress    bindport  connectaddress  connectport


# logging information
logfile /var/log/rinetd.log

# uncomment the following line if you want web-server style logfile format
# logcommon

附录

参考链接

本文撰写于一年前,如出现图片失效或有任何问题,请在下方留言。博主看到后将及时修正,谢谢!
禁用 / 当前已拒绝评论,仅可查看「历史评论」。
  1. avatarImg 夏洛

    这个挺好用的哈。请问UDP的用什么转发?

    Edge 84.0 Windows 10
    IP 属地 未知