当前位置:   article > 正文

eve-ng ubuntu 20.04 设置iptables_ubuntu20.04 iptables

ubuntu20.04 iptables

一、设置方法

1、建立iptables规则开机加载脚本

sudo vi /etc/network/if-pre-up.d/iptablesload
写入以下内容
#!/bin/bash
iptables-restore < /etc/iptables.rules
exit 0
在这里插入图片描述

2、建立iptables规则关机/重启保存脚本

sudo vi /etc/network/if-post-down.d/iptablessave
写入以下内容
#!/bin/bash
iptables-save > /etc/iptables.rules
exit 0
在这里插入图片描述

3、添加可执行权限

chmod u+x /etc/network/if-pre-up.d/iptablesload
chmod u+x /etc/network/if-post-down.d/iptablessave

4、保存当前iptables规则到配置文件

sudo iptables-save > /etc/iptables.rules

二、命令解释

执行脚本加入到网卡up down自动执行脚本的目录中,在网卡up前加载iptables规则配置文件,在网卡down后保存当前iptables规则到iptables规则配置文件。
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/591136
推荐阅读
相关标签
  

闽ICP备14008679号