Fedora21启用iptables服务及使用firewalld服务注意事项

安装Iptables 服务:

yum install iptables-services
停止firewalld:
systemctl stop firewalld
mask firewalld:
systemctl mask firewalld

service iptables save
===================================================
查看firewall状态
systemctl status firewalld.service

屏蔽iptables命令:
systemctl status iptables
systemctl stop iptables
systemctl mask iptables
设置默认zone为public
firewall-cmd --set-default-zone=public
添加8080tcp端口

firewall-cmd --permanent --zone=public --add-port=8080/tcp
查看当前public zone配置情况
 firewall-cmd --permanent --zone=public --list-all
时间: 2024-10-10 06:22:51

Fedora21启用iptables服务及使用firewalld服务注意事项的相关文章

禁用firewalld, 启用iptables作为防火墙

CentOS 最小化安装后, 会自动安装好 Firewalld 作为防火墙, 如果想用 iptables作为防火墙的话, 可以进行如下设置: 一.  停止 firewalld 服务 [[email protected] ~]# systemctl stop firewalld.service 设置开机禁止启用 firewalld 服务 [[email protected] ~]# systemctl disable firewalld.service rm '/etc/systemd/syste

使用iptables将内网ftp服务映射到其他内网服务器上

iptables一般的只需要关注两个表,一个是nat表,一个是filter表,其他表暂时用不到,然后nat表里有三个链,filter表里有三个链,总结两个表,五个链 入站数据流向:数据包到达防火墙后首先被PREROUTING链处理(是否修改数据包地址等),然后进行路由选择(判断数据包发往何处),如果数据包的目标地址是防火墙本机(如:Internet用户访问网关的Web服务端口),那么内核将其传递给INPUT链进行处理(决定是否允许通过等). 转发数据流向:来自外界的数据包到达防火墙后首先被PRE

iptables(4)开放被动模式FTP服务

开放被动模式FTP服务: (1)装载ftp追踪时的专用的模块: #modprobe nf_conntrack_ftp (2)放行请求报文: 命令连接:NEW,ESTABLISHED 数据连接:RELATED,ESTABLISHED # iptables -A INPUT -d LocalIP -p tcp --dport 21 -m state --stateNEW,ESTABLISHED -j ACCEPT # iptables -A INPUT -d LocalIP -p tcp -m st

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

26期20180716 iptables规则备份恢复 firewalld zone

7月16日任务 10.19 iptables规则备份和恢复 10.20 firewalld的9个zone 10.21 firewalld关于zone的操作 10.22 firewalld关于service的操作 iptables的规则备份和恢复 service iptables save会把配置保存到配置文件中 /etc/sysconfig/iptables 如果不想保存在这 可以使用 iptables-save > 文件路径 如果想恢复之前的iptables表,就使用 iptables-res

Linux网络服务05——DNS域名解析服务(一)

Linux网络服务05--DNS域名解析服务(一) 一.DNS系统的作用 1.DNS服务器概述 整个Internet大家庭中连接了数以亿计的服务器.个人主机,其中大部的网站.邮件服务等服务器都使用了域名形式的地址,如crushlinux.google.com.mail.163.com等.很显然这种地址形式要比使用64.233.189.147.202.108.33.74的IP地址形式更加直观,更加容易被用户记住. FQDN格式(完整域名格式):在常见域名后添加"."(根域).例如:cru

玩转Linux之- CentOS 7.0,启用iptables防火墙

原文 玩转Linux之- CentOS 7.0,启用iptables防火墙 CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙. 1.关闭firewall:systemctl stop firewalld.service #停止firewallsystemctl disable firewalld.service #禁止firewall开机启动 2.安装iptables防火墙yum install iptables-services #安装vi /etc/

【文件共享服务之一】 Samba服务

        ******************理论部分***************** Samba: 是一款在Linux/Unix系统上实现与windows系统进行文件共享的免费开源软件.广泛应用于Unix-like与Windows之间,提供文件共享和打印机共享服务,使得不同系统之间跨平台共享资源更加便捷. Samba服务: 由服务端及客户端程序构成,采用的是smb/cifs网络协议. SMB协议: 英文全称为 Server Message Block(服务协议块),该通信协议是微软公司

linux学习笔记-工程师技术:HTTP服务基础(Web服务基本搭建)、网页内容访问、安全Web服务、动态网站的部署

两台虚拟机,均要检测 1.IP地址     ifconfig 2.是否可以解析,nslookup server0.example.com 3.Yum是否可用   yum repolist 4.防火墙默认区域修改为trusted ------------------------------------------------------------------------------------------- HTTP服务基础 Web通信基本概念 基于 B/S (Browser/Server)架构