-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
汇报两个设计缺陷 #71
Comments
好的,谢谢建议。 |
问题1已经修复了,会在下一下正式版中推出, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
当域名同时绑定了IPv6和IPv4时,使用的ping检查域名绑定
ping domain -c1 | grep -oE -m1 "([0-9]{1,3}\.){3}[0-9]{1,3}"
由于Linux会优先IPv6返回,因此会出现返回IPv4空值的情况,建议改用host命令进行查询,以下为示例
host domain | grep -o 'address .*' | awk '{print $2}'
该命令会同时返回IPv4以及IPv6地址
某些VPS主机很干净,甚至没有firewalld,建议安装前做个检查
The text was updated successfully, but these errors were encountered: