1 Star 0 Fork 23

langqy/Auto_Install_console

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
iptables.py 742 Bytes
一键复制 编辑 原始数据 按行查看 历史
awakenjoys 提交于 2014-03-04 18:33 . test
# -*- coding:utf8 -*-
from core import *
#----------------------------------------------------------------------------------------
#设置iptables
def set_iptables(server, port, username, password, iptables_file, iptables_template, configvalues = {}):
genconfigfile(iptables_file, iptables_template)
if os.path.exists(iptables_file):
remotefile = "/etc/%s" % iptables_file
upload(server, port, username, password, iptables_file, remotefile)
chmod_firewall = "chmod 755 %s" % remotefile
cmd_firewall = "sh %s" % remotefile
cmds = []
cmds.append(chmod_firewall)
cmds.append(cmd_firewall)
ret = execute(server, port, username, password, chmod_firewall)
return ret
else:
error = u"生成配置文件失败"
return error
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/langqy/Auto_Install_console.git
git@gitee.com:langqy/Auto_Install_console.git
langqy
Auto_Install_console
Auto_Install_console
master

搜索帮助