Ubuntu配置防火墙iptables重启生效(常见iptables的用法记录)
基于服务器的安全考虑,我们需要在Ubuntu 18.04环境中进行配置iptables防火墙,这里老蒋简单的记录iptables的常规用法。一般我们都是在需要服务器的ROOT权限下进行的,有些服务器环境默认是安装过的,我们需要检查到底是否有安装,如果有安装过,直接就添加防火墙规则。
第一、检查是否安装iptables
# 检查
# which iptables
/sbin/iptables
# whereis iptables
iptables: /sbin/iptables /etc/iptables /usr/share/iptables /usr/share/man/man8/iptables.8.gz
第二、安装iptables
如果没有安装的话,我们则需要安装。
# 进行安装
sudo apt-get install iptables
第三、如果安装过我们创建规则
我们添加规则。
然后保存规则
第四、创建规则确保重启也执行iptable规则
第四、创建规则确保重启也执行iptable规则
添加:
iptables-restore < /etc/iptables
保存退出。
第五、查看防火墙规则
这里我们可以看到所有的防火墙设置。
一般情况下,就这么用的。具体的iptables的配置,我们可以根据需要进行端口设置。参考:
文章来源:
阅读剩余
版权声明:
作者:John
链接:https://vps.la/2022/02/23/ubuntu%e9%85%8d%e7%bd%ae%e9%98%b2%e7%81%ab%e5%a2%99iptables%e9%87%8d%e5%90%af%e7%94%9f%e6%95%88%ef%bc%88%e5%b8%b8%e8%a7%81iptables%e7%9a%84%e7%94%a8%e6%b3%95%e8%ae%b0%e5%bd%95%ef%bc%89/
文章版权归作者所有,未经允许请勿转载。
THE END