摘要:
简介: 安装域控的警告提示: Windows Server 2022 域控制器为名为“允许与Windows NT 4.0 兼容的加密算法”的安全设置提供了一个默认值。如果使用该默认值,将会在建立安全通道会话时禁止使用加密强度较弱的加密算法。 在所有受影响的域控制器上禁用 AllowNT4Crypto 阅读全文
摘要:
#!/bin/bash destination_ip=192.168.2.1 if ! ping -c1 $destination_ip &>/dev/null then echo "$destination_ip is offline." shutdown fi ping 一个地址,如果不通,就关 阅读全文