博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
rc.local
阅读量:6160 次
发布时间:2019-06-21

本文共 607 字,大约阅读时间需要 2 分钟。

hot3.png

[ root]# cd /etc

[ etc]# vi rc.local 

 

#!/bin/sh

#

# This script will be executed *after* all the other init scripts.

# You can put your own initialization stuff in here if you don't

# want to do the full Sys V style init stuff.

 

touch /var/lock/subsys/local

iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 38443

 

 

 

iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8083

 

 

iptables -t nat -A PREROUTING -p tcp --dport 3306 -j REDIRECT --to-port 8010

 

 

iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8680

转载于:https://my.oschina.net/yizhichao/blog/897831

你可能感兴趣的文章
java父子进程通信
查看>>
Android ADB server didn't ACK * failed to start daemon * 简单有效的解决方案
查看>>
Olap学习笔记
查看>>
Codeforces Round #431 (Div. 1)
查看>>
如何进行数组去重
查看>>
将标题空格替换为 '_' , 并自动复制到剪切板上
查看>>
List Collections sort
查看>>
Mysql -- You can't specify target table 'address' for update in FROM clause
查看>>
使用局部标准差实现图像的局部对比度增强算法。
查看>>
2017-2018-1 20165313 《信息安全系统设计基础》第八周学习总结
查看>>
《代码敲不队》第四次作业:项目需求调研与分析
查看>>
菜鸡互啄队—— 团队合作
查看>>
HttpWebRequest的GetResponse或GetRequestStream偶尔超时 + 总结各种超时死掉的可能和相应的解决办法...
查看>>
SparseArray
查看>>
第二章
查看>>
android背景选择器selector用法汇总
查看>>
[转]Paul Adams:为社交设计
查看>>
showdialog弹出窗口刷新问题
查看>>
java
查看>>
Vue.js连接后台数据jsp页面  ̄▽ ̄
查看>>