摘要:
#!/bin/bash ## set shortest length of password filename=/etc/login.defs if [ -f "$filename" ];then passminlen=`cat $filename|grep PASS_MIN_LEN|grep -v "#"` sed -i "s#$passminlen#PASS_MIN_LEN ... 阅读全文
摘要:
一、例如:开放8080端口 firewall-cmd --permanent --add-port=8080/tcp 二、重启使设置生效 systemctl restart firewalld.service 三、查看设置 firewall-cmd --list-all 四、例如:禁用8080端口 阅读全文