VM 内的 oVirt v4 网络连接

VM 内的 oVirt v4 网络连接

我正在运行 2 个 oVirt 实例。第一个是 oVirt 3.5,一切都很好。

我最近进行了设置Version 4.0.1.1-1.el7.centos,但在 VM 中遇到了问题。

我从 Centos 65 的 Glance 模板启动了一个 VM(CentOS 6.5 64-Bit (7df3c30))(附注:这与我导入的其他 centos VM 相同)。

一旦 VM 启动,它几乎就无法与 yum 镜像服务器一起工作。

一切都从 yum 更新开始:

[root@test ~]# yum update
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirror.nexcess.net
 * extras: mirrors.gigenet.com
 * updates: mirrors.greenmountainaccess.net
http://mirror.nexcess.net/CentOS/6.8/os/x86_64/repodata/repomd.xml: [Errno 12] Timeout on http://mirror.nexcess.net/CentOS/6.8/os/x86_64/repodata/repomd.xml: (28, 'Operation too slow. Less than 1 bytes/sec transfered the last 30 seconds')
Trying other mirror.
http://mirrors.gigenet.com/centos/6.8/os/x86_64/repodata/repomd.xml: [Errno 12] Timeout on http://mirrors.gigenet.com/centos/6.8/os/x86_64/repodata/repomd.xml: (28, 'Operation too slow. Less than 1 bytes/sec transfered the last 30 seconds')
Trying other mirror.

经调查,此超时:

[root@test ~]# curl http://mirrors.gigenet.com/centos/6.8/os/x86_64/repodata/repomd.xml

从虚拟机中我似乎找到了网络连接,主机在卷曲 google、msn 等时没有任何问题。但它似乎无法连接到任何 Yum 镜像repomd.xml文件。

但是,从 VM 主机(运行此 VM 的主机)可以 100% 访问。我可以从主机执行 curl 等操作。我无法从 VM 执行此操作。

您对如何解决此问题有什么想法吗?如果需要,我可以提供更多信息。

编辑

这就是奇怪的地方。我可以卷曲镜子的一部分,但不能卷曲 repodata。

[root@test ~]# curl -vv http://linux.mirrors.es.net/centos/6.8/updates/x86_64/
* About to connect() to linux.mirrors.es.net port 80 (#0)
*   Trying 198.129.224.35... connected
* Connected to linux.mirrors.es.net (198.129.224.35) port 80 (#0)
> GET /centos/6.8/updates/x86_64/ HTTP/1.1
> User-Agent: curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.21 Basic ECC zlib/1.2.3 libidn/1.18 libssh2/1.4.2
> Host: linux.mirrors.es.net
> Accept: */*
>
< HTTP/1.1 200 OK
< Date: Mon, 22 Aug 2016 16:47:06 GMT
< Server: Apache
< Content-Length: 1284
< Connection: close
< Content-Type: text/html;charset=UTF-8
<
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
...snip....
* Closing connection #0


[root@test ~]# curl -vv http://linux.mirrors.es.net/centos/6.8/updates/x86_64/repodata/
* About to connect() to linux.mirrors.es.net port 80 (#0)
*   Trying 198.129.224.35... connected
* Connected to linux.mirrors.es.net (198.129.224.35) port 80 (#0)
> GET /centos/6.8/updates/x86_64/repodata/ HTTP/1.1
> User-Agent: curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.21 Basic ECC zlib/1.2.3 libidn/1.18 libssh2/1.4.2
> Host: linux.mirrors.es.net
> Accept: */*
>
...this times out...

正如你所看到的,我可以从虚拟机中卷曲第一个罚款,但如果我添加/repodata它超时

相关内容