cat /scripts/shell/execute_script.sh #!/bin/sh if [ `grep "PermitRootLogin yes" /etc/ssh/sshd_config|wc -l` -eq 1 ];then # 允许172.17.134.33服务器 使用root用户登录本机,允许所有服务器使用meisapp用户登录本机 echo 'AllowUsers root@172.17.134.33 meisapp@*' >>/etc/ssh/sshd_config elif [ `grep "PermitRootLogin no" /etc/ssh/sshd_config|wc -l` -eq 1 ];then # 禁用root登录 sed -i "#PermitRootLogin no#PermitRootLogin yes#" /etc/ssh/sshd_config # 允许172.17.134.33服务器 使用root用户登录本机,允许所有服务器使用meisapp用户登录本机 echo 'AllowUsers root@172.17.134.33 meisapp@*' >>/etc/ssh/sshd_config fi