cURL 在详细模式下不起作用

cURL 在详细模式下不起作用

我已经使用 apt-get 在新的 ubuntu 安装上安装了 curl,但它的行为真的很奇怪。

当我做

    curl http://www.google.co.uk

一切正常,但当我这样做

    curl -v http://www.google.co.uk

由于连接超时错误而失败:

    * About to connect() to www.google.co.uk port 80 (#0)
    * Connection time-out
    * Closing connection #0
    curl: (28) Connection time-out

curl -V 显示:

    curl 7.21.3 (x86_64-pc-linux-gnu) libcurl/7.21.3 OpenSSL/0.9.8o
    zlib/1.2.3.4 libidn/1.18
    Protocols: dict file ftp ftps gopher http https imap imaps ldap
    ldaps pop3 pop3s rtsp smtp smtps telnet tftp 
    Features: GSS-Negotiate IDN IPv6 Largefile NTLM SSL libz

有什么线索吗?

相关内容