美文网首页
Ubuntu端口转发

Ubuntu端口转发

作者: 袁俊亮技术博客 | 来源:发表于2018-12-29 15:12 被阅读17次

Ubuntu端口转发

  • 安装·rinetd
sudo apt-get install rinetd
  • 配置rinetd
sudo vim /etc/rinetd.conf

// 在最后添加以下配置
0.0.0.0 27018 127.0.0.1 27017   // 将本机27018端口转发到27017

  • 启动端口转发进程
rinetd -c /etc/rinetd.conf 

然后开放27018端口的防火墙服务即可通过27018访问27017端口

相关文章

网友评论

      本文标题:Ubuntu端口转发

      本文链接:https://www.haomeiwen.com/subject/itxplqtx.html