Linux系统操作笔记

防火墙服务:

开启防火墙服务:systemctl start firewalld / service firewalld start

关闭防火墙服务:systemctl stop firewalld / service firewalld stop

禁用防火墙服务:systemctl disable firewalld / service disable stop

开放防火墙服务端口:

例如开放端口8080:

firewall-cmd --permanent --add-port=8080/tcp

刷新:

firewall-cmd --reload

查看成功开放的端口:

firewall-cmd --list-ports

删除开放的端口:

firewall-cmd --permanent --remove-port=8080/tcp

刷新:

firewall-cmd --reload

查看成功开放的端口:

firewall-cmd --list-ports

相关推荐
tntxia17 小时前
linux curl命令详解_curl详解
linux
扛枪的书生20 小时前
Linux 网络管理器用法速查
linux
顺风尿一寸1 天前
Java Socket 内核之旅:从 SocketChannel.read() 到 tcp_recvmsg 与 epoll 的完整调用链路
linux
XIAOHEZIcode1 天前
Ubuntu 终端美化全栈指南:Bash 到 Kitty 踩坑实录
linux·ubuntu·命令行
唐青枫1 天前
别再只会用 cron:Linux systemd Timer 定时任务实战详解
linux
RainCity2 天前
Java Swing 自定义组件库分享(十二)
java·笔记·后端
AlfredZhao3 天前
生产环境里,为什么不建议把普通端口直接暴露到公网?
linux·https·443·80
戴为沐4 天前
Linux内存扩容指南
linux
zylyehuo5 天前
Linux 彻底且安全地删除文件
linux
用户805533698035 天前
主线 U-Boot 上 RK3506:和闭源 rkbin 拔河的三个隐性契约
linux·嵌入式