Linux iptables防火墙常用操作

Linux防火墙日常中常用的一些操作,记录一下,防止忘记的时候到处找。

iptables

打开防火墙

sudo systemctl start iptables

开放指定端口

在iptables文件中设定指定端口,保存退出后,重启iptables服务

# 编辑iptables文件
sudo vim /etc/sysconfig/iptables
# 增加下面一行,表示开放22端口
-A INPUT -p tcp -m state --state NEW -m tcp --dport 22 -j ACCEPT
# 重启服务
sudo systemctl restart iptables

查看防火墙状态

sudo systemctl status iptables

# Active: active (exited) 表示服务已启动
● iptables.service - IPv4 firewall with iptables
   Loaded: loaded (/usr/lib/systemd/system/iptables.service; disabled; vendor preset: disabled)
   Active: active (exited) since Wed 2021-02-24 17:07:30 CST; 5min ago
 Main PID: 148524 (code=exited, status=0/SUCCESS)
   CGroup: /system.slice/iptables.service
   
# Active: inactive (dead) 表示服务已停止
● iptables.service - IPv4 firewall with iptables
   Loaded: loaded (/usr/lib/systemd/system/iptables.service; disabled; vendor preset: disabled)
   Active: inactive (dead) since Wed 2021-02-24 17:12:56 CST; 6s ago
  Process: 155758 ExecStop=/usr/libexec/iptables/iptables.init stop (code=exited, status=0/SUCCESS)
 Main PID: 148524 (code=exited, status=0/SUCCESS)
 

关闭防火墙

sudo systemctl stop iptables

服务开机自动启动

# on表示开机自动启动
sudo chkconfig iptables on
# off表示开机禁止启动
sudo chkconfig iptables off

firewalld

一般会关掉firewalld,使用iptables

# 查看状态
sudo systemctl status firewalld
# 启动
sudo systemctl start firewalld
# 停止
sudo systemctl stop firewalld
# 禁用开机启动
sudo systemctl disable firewalld

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值