当前位置:网站首页>iptables、firewalld的使用
iptables、firewalld的使用
2022-08-02 20:54:00 【m0_59138290】
iptables
- 搭建web服务,设置任何人能够通过80端口访问。
[[email protected] ~]# iptables -I INPUT -p tcp --dport 80 -j ACCEPT
[[email protected] ~]# iptables -L --line-numbers
[[email protected] ~]# iptables -D INPUT 1
- 禁止所有人ssh远程登录该服务器
[[email protected] ~]# iptables -I INPUT -p tcp --dport 22 -j REJECT
删除设置的拒绝ssh连接:
[[email protected] Desktop]# iptables -D INPUT 1
- 禁止某个主机地址ssh远程登录该服务器,允许该主机访问服务器的web服务。服务器地址为172.24.8.128
拒绝172.24.8.129通过ssh远程连接服务器:
[[email protected] ~]# iptables -I INPUT -p tcp -s 172.24.8.129 --dport 22 -j REJECT
允许172.24.8.129访问服务器的web服务:
[[email protected] ~]# iptables -I INPUT -p tcp -s 172.24.8.129 --dport 80 -j ACCEPT
firewalld
- 禁止某个ip地址进行ssh访问
[[email protected] ~]# firewall-cmd --permanent --add-service=ssh
[[email protected] ~]# firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="192.168.1.1" service name="http,https" reject"
[[email protected] ~]# firewall-cmd --reload
配置端口转发(在172.24.8.0网段的主机访问该服务器的5423端口将被转发到80端口)此规则将本机80端口转发到192.168.1.1的8080端口上
[[email protected]1 ~]# firewall-cmd --permanent --add-rich-rule=‘rule family=“ipv4” source address=“172.24.8.0/24” forward-port port=“5423” protocol=“tcp” to-port=“80”’
边栏推荐
猜你喜欢
"Weekly Translate Go" This time we have something different!-- "How to Code in Go" series launched
Digital twins help visualize the construction of smart cities
A brief discussion on the transformation of .NET legacy applications
汇编语言中b和bl关键字的区别
SublimeText3 安装、配置项、包管理、常用必备插件、常用快捷键以及修改
Electrical diagram of power supply system
Informatics Olympiad All-in-One (1259: [Example 9.3] Find the longest non-descending sequence)
Wiring diagrams of switches, motors, circuit breakers, thermocouples, and meters
HCIP--BGP基础实验
【模型压缩】实例分析量化原理
随机推荐
The five classification of software testing
解道6-编程技术3
HCIP--BGP基础实验
博客主页rrs代码
.NET如何快速比较两个byte数组是否相等
五大维度解读软件测试分类
sre成长之路
golang 刷leetcode:祖玛游戏
Li Mu hands-on learning deep learning V2-bert and code implementation
callback prototype __proto__
拥抱Cmake小朋友 简单又实用,但是不灵活
"Weekly Translate Go" This time we have something different!-- "How to Code in Go" series launched
C语言中变量在内存中的保存与访问
ACE JET NPOI
单例模式你会几种写法?
Details in C# you don't know
[C题目]力扣234. 回文链表
微软SQL服务器被黑客入侵以窃取代理服务的带宽
千人优学 | GBase 8s数据库2022年6月大学生专场实训圆满结束
用户之声 | GBASE南大通用实训有感