10

OSX 10.8.2 マシンの VirtualBox 4.2.1 内で centos 6.3 を実行していますが、理解できない遅延の問題が発生しました。基本的に、あらゆる場所へのすべての http リクエストには、さらに 5000 ミリ秒の遅延があります。Ping には追加の遅延はありません。

レイテンシの問題のスクリーンショット

[vagrant@localhost ~]$ curl -o /dev/null https://google.com -w ""
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
110   220  110   220    0     0     42      0  0:00:05  0:00:05 --:--:--  7586
[vagrant@localhost ~]$ curl -o /dev/null https://google.com -w ""
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
110   220  110   220    0     0     42      0  0:00:05  0:00:05 --:--:--  7586
[vagrant@localhost ~]$ curl -o /dev/null https://google.com -w ""
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
110   220  110   220    0     0     42      0  0:00:05  0:00:05 --:--:--  7857
[vagrant@localhost ~]$ ping google.com
PING google.com (74.125.224.66) 56(84) bytes of data.
64 bytes from nuq04s07-in-f2.1e100.net (74.125.224.66): icmp_seq=1 ttl=63 time=7.64 ms
64 bytes from nuq04s07-in-f2.1e100.net (74.125.224.66): icmp_seq=2 ttl=63 time=6.26 ms
64 bytes from nuq04s07-in-f2.1e100.net (74.125.224.66): icmp_seq=3 ttl=63 time=8.69 ms
64 bytes from nuq04s07-in-f2.1e100.net (74.125.224.66): icmp_seq=4 ttl=63 time=7.89 ms
64 bytes from nuq04s07-in-f2.1e100.net (74.125.224.66): icmp_seq=5 ttl=63 time=5.99 ms
64 bytes from nuq04s07-in-f2.1e100.net (74.125.224.66): icmp_seq=6 ttl=63 time=8.64 ms

記録として、同じVirtualBox/OSX環境にubuntu 12.04.1仮想マシンがあり、問題は発生していません。

遅延の問題ではないスクリーンショット

4

1 に答える 1

5

問題は DNS の問題であることがわかりました。

基本的に、CentOS VirtualBox は、それ自体の内部にある 10.0.2.3 DNS サーバーを使用するように構成されていましたが、ネットワーク上の何かと競合している可能性があります。

いずれにせよ、別の DNS サーバーを使用することで問題は解決しました。

于 2012-10-05T18:17:04.633 に答える