系统相关
首页 > 系统相关> > [ Linux ] 设置服务器开机自启端口

[ Linux ] 设置服务器开机自启端口

作者:互联网

https://www.cnblogs.com/yeungchie/

需要用到的工具:

crontab.set

SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=''
HOME=/root

@reboot /root/open_port.sh

open_port.sh

crontab 计划任务执行的脚本文件中,路径尽量写绝对路径。

#!/bin/bash
/sbin/iptables -I INPUT -p tcp --dport 6001 -j ACCEPT    # NAS_PDK_LIB rep
/sbin/iptables -I INPUT -p tcp --dport 7001 -j ACCEPT    # NAS_PDK_LIB cache
/sbin/iptables -I INPUT -p tcp --dport 6045 -j ACCEPT    # NAS_GPDK45  rep
/sbin/iptables -I INPUT -p tcp --dport 7045 -j ACCEPT    # NAS_GPDK45  cache
/sbin/iptables -I INPUT -p tcp --dport 6046 -j ACCEPT    # NAS_DBH18   rep
/sbin/iptables -I INPUT -p tcp --dport 7046 -j ACCEPT    # NAS_DBH18   cache
/sbin/iptables -I INPUT -p tcp --dport 6047 -j ACCEPT    # NAS_SERVER  rep
/sbin/iptables -I INPUT -p tcp --dport 7047 -j ACCEPT    # NAS_SERVER  cache

创建计划任务

crontab crontab.set

标签:iptables,sbin,端口,ACCEPT,NAS,自启,tcp,Linux,INPUT
来源: https://www.cnblogs.com/yeungchie/p/16100126.html