当前位置:   article > 正文

IPTABLES报错问题-restorecon_service iptables save报错

service iptables save报错

IPTABLES报错问题

问题

场景:在公司AlmaLinux release 8.6 (Sky Tiger)环境下试图用iptables放行VPN端口的时候发现报错,无法正常运行,连保存iptbales写入指令也不行。
1、iptables:restorecon: command not found无法保存策略
2、iptables重启失败
复现问题: 
service iptables save
无法保存的错误提示:
iptables: Saving firewall rules to /etc/sysconfig/iptables: /etc/init.d/iptables: line 268: restorecon: command not found
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

排错、解决方式

1、查询restorecon命令.:
	which restorecon
	whereis restorecon
2、没结果,查询过滤系统相关二进制程序文件:
	ll /sbin/ | grep restore
3、无相关的文件,大概是包没装
	查找相关包:
		1、yum search restorecon
		2、yum provides restorecon //通过这个方式找到了相关包名:
		"policycoreutils-2.9-20.el8.x86_64 : SELinux policy core utilities" //缺失了这个包会导致iptables策略保存失败且会导致iptables服务启动失败。
打包:yum -y install policycoreutils
打包后查询系统生成的二进制程序文件:(多出以下三条)
	# ll /sbin/ | greprestore
		lrwxrwxrwx  1 root root       8 Oct  8 17:14 restorecon -> setfiles
		-rwxr-xr-x  1 root root   25416 Oct  8 17:14 restorecond
		-rwxr-xr-x  1 root root   16800 Oct  8 17:14 restorecon_xattr
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

验证

保存iptables策略:(成功)
[root@appliance ~]# service iptables save
iptables: Saving firewall rules to /etc/sysconfig/iptables:[ OK ]
重启iptbales (成功)
[root@appliance ~]# systemctl restart iptables

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/308955
推荐阅读
相关标签
  

闽ICP备14008679号