如果你在linux系统上运行脚本失败或者域名无法访问以及苹果cms采集失败等情况,那么最好使用下面的方法切换DNS。
宝塔DNS设置
首页-LINUX工具箱
SSH换DNS方法
更换国内DNS
echo -e "options timeout:1 attempts:1 rotate\nnameserver 119.29.29.29\nnameserver 114.114.114.114">/etc/resolv.conf;
更换国外DNS
echo -e "options timeout:1 attempts:1 rotate\nnameserver 8.8.8.8\nnameserver 8.8.4.4" >/etc/resolv.conf;
推荐国内外并行的DNS配置
echo -e "options timeout:1 attempts:1 rotate\nnameserver 119.29.29.29\nnameserver 8.8.8.8" >/etc/resolv.conf;
echo -e "options timeout:1 attempts:1 rotate\nnameserver 114.114.114.114\nnameserver 8.8.8.8" >/etc/resolv.conf;
查看修改后的DNS配置
cat /etc/resolv.conf
注:命令里的dns可自行更换想用的