端口转发、重定向工具 rinetd

时间:2022-07-01 15:53:08

软件网址:http://www.boutell.com/rinetd/

linux版本的下载地址为:

http://www.boutell.com/rinetd/http/rinetd.tar.gz


一:安装

下载之后,解压,执行下面命令安装

make

make install

这样,就安装好了

root@node01:~# rinetd -h
Usage: rinetd [OPTION]
  -c, --conf-file FILE   read configuration from FILE
  -h, --help             display this help
  -v, --version          display version number


Most options are controlled through the
configuration file. See the rinetd(8)
manpage for more information.

二:配置

vim /etc/rinetd/main.conf

内容如下

pidlogfile /tmp/9090.pid
logfile /tmp/9090.log
0.0.0.0 9999 192.168.1.104 9090


上面内容表示

本机所有网卡的9999端口来的数据,都转发到192.168.1.104主机的9090端口

格式:

bindaddress bindport connectaddress connectport

保存文件执行

rinetd -c /etc/rinetd/main.conf 就启动起来了


这样,一个端口转发就配置好了


pkill rinetd  关闭rinetd