Centos中iptables和firewall防火墙开启、关闭、查看状态、基本设置等(转)

iptables防火墙

1、基本操作

# 查看防火墙状态

service iptables status

# 停止防火墙

service iptables stop

# 启动防火墙

service iptables start

# 重启防火墙

service iptables restart

# 永久关闭防火墙

chkconfig iptables off

# 永久关闭后重启

chkconfig iptables on  

2、查看防火墙状态,防火墙处于开启状态并且只开放了22端口

3、开启80端口

 vim /etc/sysconfig/iptables
# 加入如下代码,比着两葫芦画瓢 :)
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT

保存退出后重启防火墙

service iptables restart

firewall防火墙

1、查看firewall服务状态

systemctl status firewalld

2、查看firewall的状态

firewall-cmd --state

3、开启、重启、关闭、firewalld.service服务

# 开启
service firewalld start
# 重启
service firewalld restart
# 关闭
service firewalld stop

4、查看防火墙规则

firewall-cmd --list-all 

5、查询、开放、关闭端口

# 查询端口是否开放
firewall-cmd --query-port=8080/tcp
# 开放80端口
firewall-cmd --permanent --add-port=80/tcp
# 移除端口
firewall-cmd --permanent --remove-port=8080/tcp
#重启防火墙(修改配置后要重启防火墙)
firewall-cmd --reload

# 参数解释
1、firwall-cmd:是Linux提供的操作firewall的一个工具;
2、--permanent:表示设置为持久;
3、--add-port:标识添加的端口;

原文地址:https://www.cnblogs.com/xihong2014/p/9655110.html

时间: 2024-10-11 18:17:51

Centos中iptables和firewall防火墙开启、关闭、查看状态、基本设置等(转)的相关文章

LINUX CentOS 8 systemctl firewall 防火墙开启/关闭 命令

[[email protected] ~]#firewall-cmd --state not running [[email protected] hadoop]# systemctl is-enabled firewalld.service;echo $? (查看服务是否开机启动) enabled 0 [[email protected] hadoop]# systemctl disable firewalld.service (开机 不要 自动开) Removed /etc/systemd/

CentOS中iptables防火墙 开放80端口方法

开放端口:  代码如下 复制代码 [[email protected] ~]# iptables -I INPUT -p tcp --dport 80 -j ACCEPT 保存配置:  代码如下 复制代码 [[email protected] ~]# service iptables saveSaving firewall rules to /etc/sysconfig/iptables:          [  OK  ] 重启防火墙:  代码如下 复制代码 [[email protected

Linux虚拟机SSH服务、防火墙开启关闭

1.查看SSH服务 serveice sshd status --> Checking for service sshd running 2.开启SSH服务 service sshd start --> starting SSH daemon 3.临时关闭防火墙(环境重启之后,防火墙又会关闭) rcSuSEfirewall2 stop 4.永久关闭防火墙 chkconfig SuSEfirewall2_init off chkconfig SuSEfirewall2_setup off 分操作

CentOs中iptables配置允许mysql远程访问

iptables -A INPUT -p tcp -m state --state NEW -m tcp --dport 3306 -j ACCEPT service iptables save service iptables restart 参考: http://www.cnblogs.com/ccdc/archive/2012/04/24/2468048.html http://blog.chinaunix.net/uid-26495963-id-3279216.html

Linux防火墙开启、查看端口等常用命令

firewall命令: 网址:https://blog.csdn.net/qq_41521180/article/details/90311477 原文地址:https://www.cnblogs.com/bichen-01/p/12074238.html

iptables防火墙 关闭 查看

# 查看防火墙状态 service iptables status **# 停止防火墙 service iptables stop # 启动防火墙 service iptables start # 重启防火墙 service iptables restart # 永久关闭防火墙 chkconfig iptables off # 永久关闭后重启 chkconfig iptables on 2.开启80端口 vim /etc/sysconfig/iptables# 加入如下代码-A INPUT -m

CentOS7 禁用firewall防火墙 启用iptables 步骤

一.题目:CentOS7 禁用firewall防火墙 启用iptables 步骤 二.要求:CentOS7 的防火墙默认是firewall 防火墙,现在需要启用iptables防火墙并完成常用的配置. 三.步骤: 1. 关闭firewall 1 systemctl stop firewalld.service # 停止firewall 2 systemctl disable firewalld.service # 禁止firewall 开机启动 3 systemctl status firewa

ubuntu开启关闭防火墙

防火墙开着没办法远程连接数据库... 先获取root, 不然就每句前面都加sudo apt-get install ufw ufw disable 即可关闭 ######################################################## 查看状态 ufw status ######################################################## 启用 utf enable

LINUX服务开启关闭建议

1.操作系统centos5.5 服务名称 功能 默认 建议 备注 NetworkManager 用于自动连接网络 关闭 关闭 对服务器没用 acpid 电源的开关等检测管理 开启 关闭 对服务器没用 anacron 一种计划任务管理 开启 开启 apmd 高级电源管理 开启 开启 atd 在指定时间执行命令 开启 关闭 如果用crond,则可关闭它 auditd 开启 自定 如果用selinux,需要开启它 autofs 文件系统自动加载.卸载 开启 自定 只在需要时开启它,可以停止 avahi