diff --git a/class/core/firewall_api.py b/class/core/firewall_api.py index ebbb4d978..d32e18f66 100755 --- a/class/core/firewall_api.py +++ b/class/core/firewall_api.py @@ -309,10 +309,10 @@ class firewall_api: if status == '1': rep = "(#)PasswordAuthentication\s+(\w*)\s*\n" - conf = re.sub(rep, "PasswordAuthentication no\n", conf) + conf = re.sub(rep, "PasswordAuthentication yes\n", conf) else: rep = "(#)PasswordAuthentication\s+(\w*)\s*\n" - conf = re.sub(rep, "PasswordAuthentication yes\n", conf) + conf = re.sub(rep, "PasswordAuthentication no\n", conf) mw.writeFile(file, conf) mw.execShell("systemctl restart sshd.service") mw.writeLog("SSH管理", msg)