设为首页收藏本站language→→ 语言切换

鸿鹄论坛

 找回密码
 论坛注册

QQ登录

先注册再绑定QQ

查看: 957|回复: 0
收起左侧

使用semanage管理SELinux安全策略

[复制链接]
发表于 2020-8-1 12:47:30 | 显示全部楼层 |阅读模式
Semanage是用于配置SELinux策略某些元素而无需修改或重新编译策略源的工具。 这包括将Linux用户名映射到SELinux用户身份以及对象(如网络端口,接口和主机)的安全上下文映射。
简介

Semanage是用于配置SELinux策略某些元素而无需修改或重新编译策略源的工具。 这包括将Linux用户名映射到SELinux用户身份以及对象(如网络端口,接口和主机)的安全上下文映射。

实验环境

Centos7.7操作系统

Selinux已经开启
开启方式:

[root@localhost ~]# sed -i '/^SELINUX/s/disabled/enforcing/g' /etc/selinux/config# 然后重启一下操作系统[root@localhost ~]# reboot# 重启完成之后检查一下是否是enforcing模式[root@localhost ~]# getenforce Enforcing常用参数
  • port: 管理定义的网络端口类型
  • fcontext: 管理定义的文件上下文
  • -l: 列出所有记录
  • -a: 添加记录
  • -m: 修改记录
  • -d: 删除记录
  • -t: 添加的类型
  • -p: 指定添加的端口是tcp或udp协议的,port子命令下使用
  • -e: 目标路径参考原路径的上下文类型,fcontext子命令下使用
列出所有定义的端口

使用semanage port命令列出所有端口

[root@localhost ~]# semanage port -lSELinux Port Type              Proto    Port Numberafs3_callback_port_t           tcp      7001afs3_callback_port_t           udp      7001afs_bos_port_t                 udp      7007afs_fs_port_t                  tcp      2040afs_fs_port_t                  udp      7000, 7005afs_ka_port_t                  udp      7004afs_pt_port_t                  tcp      7002afs_pt_port_t                  udp      7002afs_vl_port_t                  udp      7003agentx_port_t                  tcp      705agentx_port_t                  udp      705amanda_port_t                  tcp      10080-10083amanda_port_t                  udp      10080-10082……


                               
登录/注册后可看大图

列出指定的端口类型的端口

[root@localhost ~]# semanage port -l|grep -w http_port_thttp_port_t                    tcp      80, 81, 443, 488, 8008, 8009, 8443, 9000


                               
登录/注册后可看大图

通过查询端口号来列出端口类型

[root@localhost ~]# semanage port -l|grep -w 53dns_port_t                     tcp      53dns_port_t                     udp      53[root@localhost ~]# semanage port -l|grep -w 20ftp_data_port_t                tcp      20[root@localhost ~]# semanage port -l|grep -w 21ftp_port_t                     tcp      21, 989, 990


                               
登录/注册后可看大图

创建、添加、修改端口

通过下面的命令为http添加新端口

[root@localhost ~]# [root@localhost ~]# semanage port -a -t http_port_t -p tcp 8888[root@localhost ~]## 查看新添加的端口[root@localhost ~]# semanage port -l|grep -w 8888http_port_t                    tcp      8888, 80, 81, 443, 488, 8008, 8009, 8443, 9000# 也可以使用-C参数查看自定义的端口号[root@localhost ~]# semanage port -lCSELinux Port Type              Proto    Port Numberhttp_port_t                    tcp      8888


                               
登录/注册后可看大图

添加一个范围的端口

[root@localhost ~]# semanage port -a -t http_port_t -p tcp 11180-11188[root@localhost ~]# [root@localhost ~]# semanage port -lCSELinux Port Type              Proto    Port Numberhttp_port_t                    tcp      8888, 11180-11188


                               
登录/注册后可看大图

删除端口
[root@localhost ~]# semanage port -d -t http_port_t -p tcp 8888[root@localhost ~]# [root@localhost ~]# semanage port -d -t http_port_t -p tcp 11180-11188[root@localhost ~]# # 查看一下,已经没有自定义的端口了[root@localhost ~]# semanage port -lC


                               
登录/注册后可看大图

修改安全上下文

为samba共享目录添加安全上下文

# 没添加安全上下文之前是default_t[root@localhost ~]# ll -dZ /share/drwxr-xr-x. root root unconfined_ubject_r:default_t:s0 /share/[root@localhost ~]# semanage fcontext -a -t samba_share_t '/share(/.*)?'# 恢复文件默认的安全上下文[root@localhost ~]# restorecon -Rv /sharerestorecon reset /share context unconfined_ubject_r:default_t:s0->unconfined_ubject_r:samba_share_t:s0# 查看一下文件夹已经变成samba_share_t了[root@localhost ~]# ll -dZ /sharedrwxr-xr-x. root root unconfined_ubject_r:samba_share_t:s0 /share


                               
登录/注册后可看大图

为nfs共享目录添加读写

[root@localhost ~]# ll -dZ /nfsshare/drwxr-xr-x. root root unconfined_ubject_r:default_t:s0 /nfsshare/[root@localhost ~]# [root@localhost ~]# semanage fcontext -a -t public_content_rw_t '/nfsshare(/.*)?' [root@localhost ~]# restorecon -Rv /nfsshare[root@localhost ~]# ll -dZ /nfsshare/drwxr-xr-x. root root unconfined_ubject_r:public_content_rw_t:s0 /nfsshare/


                               
登录/注册后可看大图

总结

本文讲述了添加、修改和删除端口,修改安全上下文。如果你的系统有安装桌面,可以安装图形化管理软件 policycoreutils-gui来进行管理。

[root@localhost ~]# yum -y install policycoreutils-gui# system-config-selinux执行该命令打开图形化管理界面[root@localhost ~]# system-config-selinux


                               
登录/注册后可看大图


您需要登录后才可以回帖 登录 | 论坛注册

本版积分规则

QQ|Archiver|手机版|小黑屋|sitemap|鸿鹄论坛 ( 京ICP备14027439号 )  

GMT+8, 2025-1-24 04:46 , Processed in 0.053327 second(s), 10 queries , Redis On.  

  Powered by Discuz!

  © 2001-2025 HH010.COM

快速回复 返回顶部 返回列表