2011/12/9 Толик Шавловский <tolik_shavlovsky@mail.ru>:
freebsd# ping git.freeradius.org PING git.freeradius.org (88.190.25.44): 56 data bytes 64 bytes from 88.190.25.44: icmp_seq=0 ttl=48 time=48.211 ms 64 bytes from 88.190.25.44: icmp_seq=1 ttl=48 time=48.253 ms 64 bytes from 88.190.25.44: icmp_seq=2 ttl=48 time=48.967 ms ^C --- git.freeradius.org ping statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/stddev = 48.211/48.477/48.967/0.347 ms freebsd# git clone git://git.freeradius.org/freeradius-server.git Cloning into freeradius-server... git.freeradius.org[0: 88.190.25.44]: errno=Operation timed out fatal: unable to connect a socket (Operation timed out)
i have conectivity
You DO know that testing connectivity is MORE than just PING, right? git uses TCP port 9418 by default, so try a simple test like this: $ telnet git.freeradius.org 9418 If that port is blocked (by your ISP, perhaps), try https://github.com/alandekok/freeradius-server/tree/v2.1.x (should work, since even the most restrictive ISPs usually allow https). You can clone it using $ git clone https://github.com/alandekok/freeradius-server.git -- Fajar