环境:centos7.9、docker
命令:docker search kuboard
结果:Error response from daemon: Get "https://index.docker.io/v1/search?q=kuboard&n=25": dial tcp: lookup index.docker.io on 192.168.0.2:53: read udp 192.168.0.138:36136->192.168.0.2:53: i/o timeout
原因与解决措施:这是因为DNS被污染,导致对应地址无法解析为正确的IP;需要dig @114.114.114.114 index.docker.io获取正确的ip并配置/etc/hosts即可。
dig @114.114.114.114 index.docker.io
vi /etc/hosts 34.205.13.154 index.docker.io 3.216.34.172 index.docker.io 44.205.64.79 index.docker.io
标签:基本,index,处理,0.2,192.168,io,docker,114.114 From: https://www.cnblogs.com/lhlhlhlh/p/17632650.html