Hi, i am making procedure for Alvarion IOT. freebsd# /usr/local/bin/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) are there other way? thanks -- View this message in context: http://freeradius.1045715.n5.nabble.com/git-timeout-tp5058438p5058438.html Sent from the FreeRadius - User mailing list archive at Nabble.com.
Hi,
freebsd# /usr/local/bin/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)
check your connectivity... $ git clone git://git.freeradius.org/freeradius-server.git Cloning into freeradius-server... remote: Counting objects: 77877, done. remote: Compressing objects: 100% (20580/20580), done. remote: Total 77877 (delta 60984), reused 73352 (delta 57120) Receiving objects: 100% (77877/77877), 14.57 MiB | 6.66 MiB/s, done. Resolving deltas: 100% (60984/60984), done. alan
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 08 декабря 2011, 16:17 от Alan Buxey <A.L.M.Buxey@lboro.ac.uk>:
Hi,
freebsd# /usr/local/bin/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)
check your connectivity...
$ git clone git://git.freeradius.org/freeradius-server.git Cloning into freeradius-server... remote: Counting objects: 77877, done. remote: Compressing objects: 100% (20580/20580), done. remote: Total 77877 (delta 60984), reused 73352 (delta 57120) Receiving objects: 100% (77877/77877), 14.57 MiB | 6.66 MiB/s, done. Resolving deltas: 100% (60984/60984), done.
alan - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
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
Hi, i made git from your new link: $ git clone https://github.com/alandekok/freeradius-server.git then, cd freeradius-server $ git fetch origin v2.1.x:v2.1.x $ git checkout v2.1.x./configure but make fails(( freebsd# make "Make.inc", line 84: Missing dependency operator "Make.inc", line 87: Need an operator "Make.inc", line 89: Missing dependency operator "Make.inc", line 92: Need an operator "Make.inc", line 94: Missing dependency operator "Make.inc", line 95: Missing dependency operator "Make.inc", line 96: Need an operator "Make.inc", line 97: Need an operator "Make.inc", line 99: Need an operator "Make.inc", line 100: Need an operator "Make.inc", line 106: Missing dependency operator "Make.inc", line 109: Need an operator "Makefile", line 70: Missing dependency operator "Makefile", line 71: Missing dependency operator "Makefile", line 88: Need an operator "Makefile", line 89: Need an operator make: fatal errors encountered -- cannot continue thanks for help. 09 декабря 2011, 11:52 от "Fajar A. Nugraha-2 [via FreeRadius]" <ml-node+s1045715n5060960h51@n5.nabble.com>: 2011/12/9 Толик Шавловский <[hidden email]>:
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 - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html ---------------------------------------------------------------------- If you reply to this email, your message will be added to the discussion below: http://freeradius.1045715.n5.nabble.com/git-timeout-tp5058438p5060960.html To unsubscribe from git timeout, click here. NAML -- View this message in context: http://freeradius.1045715.n5.nabble.com/git-timeout-tp5058438p5061003.html Sent from the FreeRadius - User mailing list archive at Nabble.com.
/usr/include/net/if_arp.h:88: error: field 'arp_pa' has incomplete type /usr/include/net/if_arp.h:89: error: field 'arp_ha' has incomplete type /usr/include/net/if_arp.h:115: error: expected specifier-qualifier-list before 'u_long' gmake[4]: *** [dhcp.lo] Error 1 gmake[4]: Leaving directory `/tmp/freeradius-server/src/lib' gmake[3]: *** [lib] Error 2 gmake[3]: Leaving directory `/tmp/freeradius-server/src' gmake[2]: *** [all] Error 2 gmake[2]: Leaving directory `/tmp/freeradius-server/src' gmake[1]: *** [src] Error 2 gmake[1]: Leaving directory `/tmp/freeradius-server' gmake: *** [all] Error 2i downloaded from $ git clone git://git.freeradius.org/freeradius-server.git $ cd freeradius-server $ git fetch origin v2.1.x:v2.1.x $ git checkout v2.1.x 09 декабря 2011, 12:23 от "Alan DeKok-2 [via FreeRadius]" <ml-node+s1045715n5061040h31@n5.nabble.com>: [hidden email] wrote:
but make fails((
freebsd# make
Use Gnu make. Alan DeKok. - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html ---------------------------------------------------------------------- If you reply to this email, your message will be added to the discussion below: http://freeradius.1045715.n5.nabble.com/git-timeout-tp5058438p5061040.html To unsubscribe from git timeout, click here. NAML -- View this message in context: http://freeradius.1045715.n5.nabble.com/git-timeout-tp5058438p5061287.html Sent from the FreeRadius - User mailing list archive at Nabble.com.
tolik_shavlovsky@mail.ru wrote:
/usr/include/net/if_arp.h:88: error: field 'arp_pa' has incomplete type /usr/include/net/if_arp.h:89: error: field 'arp_ha' has incomplete type /usr/include/net/if_arp.h:115: error: expected specifier-qualifier-list before 'u_long'
<shrug> I don't run FreeBSD, and I don't expect to run it for a while.
$ git clone git://git.freeradius.org/freeradius-server.git $ cd freeradius-server $ git fetch origin v2.1.x:v2.1.x $ git checkout v2.1.x
And you did "./configure --with-dhcp", which is NOT the default. Use the defaults. Or, send us a patch to make the DHCP code work on FreeBSD. Alan DeKok.
On 09/12/2011 10:16, tolik_shavlovsky@mail.ru wrote:
/usr/include/net/if_arp.h:88: error: field 'arp_pa' has incomplete type /usr/include/net/if_arp.h:89: error: field 'arp_ha' has incomplete type /usr/include/net/if_arp.h:115: error: expected specifier-qualifier-list before 'u_long' gmake[4]: *** [dhcp.lo] Error 1 gmake[4]: Leaving directory `/tmp/freeradius-server/src/lib' gmake[3]: *** [lib] Error 2 gmake[3]: Leaving directory `/tmp/freeradius-server/src' gmake[2]: *** [all] Error 2 gmake[2]: Leaving directory `/tmp/freeradius-server/src' gmake[1]: *** [src] Error 2 gmake[1]: Leaving directory `/tmp/freeradius-server' gmake: *** [all] Error 2
i downloaded from
$ git clone git://git.freeradius.org/freeradius-server.git $ cd freeradius-server $ git fetch origin v2.1.x:v2.1.x $ git checkout v2.1.x
Rather than using 'make' on FreeBSD, try 'gmake'. That will run Gnu Make as Alan suggested. Paul.
hi, i made gmake. 09 декабря 2011, 14:33 от "Paul Thornton [via FreeRadius]" <ml-node+s1045715n5061320h11@n5.nabble.com>: On 09/12/2011 10:16, [hidden email] wrote:
/usr/include/net/if_arp.h:88: error: field 'arp_pa' has incomplete type /usr/include/net/if_arp.h:89: error: field 'arp_ha' has incomplete type /usr/include/net/if_arp.h:115: error: expected specifier-qualifier-list before 'u_long' gmake[4]: *** [dhcp.lo] Error 1 gmake[4]: Leaving directory `/tmp/freeradius-server/src/lib' gmake[3]: *** [lib] Error 2 gmake[3]: Leaving directory `/tmp/freeradius-server/src' gmake[2]: *** [all] Error 2 gmake[2]: Leaving directory `/tmp/freeradius-server/src' gmake[1]: *** [src] Error 2 gmake[1]: Leaving directory `/tmp/freeradius-server' gmake: *** [all] Error 2
i downloaded from
$ git clone git://git.freeradius.org/freeradius-server.git $ cd freeradius-server $ git fetch origin v2.1.x:v2.1.x $ git checkout v2.1.x
Rather than using 'make' on FreeBSD, try 'gmake'. That will run Gnu Make as Alan suggested. Paul. - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html ---------------------------------------------------------------------- If you reply to this email, your message will be added to the discussion below: http://freeradius.1045715.n5.nabble.com/git-timeout-tp5058438p5061320.html To unsubscribe from git timeout, click here. NAML -- View this message in context: http://freeradius.1045715.n5.nabble.com/git-timeout-tp5058438p5061405.html Sent from the FreeRadius - User mailing list archive at Nabble.com.
it installed disabling the dhcp. thanks a lot!!!! 09 декабря 2011, 15:05 от "tolik_shavlovsky@mail.ru" <tolik_shavlovsky@mail.ru>: hi, i made gmake. 09 декабря 2011, 14:33 от "Paul Thornton [via FreeRadius]" <[hidden email]>: On 09/12/2011 10:16, [hidden email] wrote:
/usr/include/net/if_arp.h:88: error: field 'arp_pa' has incomplete type /usr/include/net/if_arp.h:89: error: field 'arp_ha' has incomplete type /usr/include/net/if_arp.h:115: error: expected specifier-qualifier-list before 'u_long' gmake[4]: *** [dhcp.lo] Error 1 gmake[4]: Leaving directory `/tmp/freeradius-server/src/lib' gmake[3]: *** [lib] Error 2 gmake[3]: Leaving directory `/tmp/freeradius-server/src' gmake[2]: *** [all] Error 2 gmake[2]: Leaving directory `/tmp/freeradius-server/src' gmake[1]: *** [src] Error 2 gmake[1]: Leaving directory `/tmp/freeradius-server' gmake: *** [all] Error 2
i downloaded from
$ git clone git://git.freeradius.org/freeradius-server.git $ cd freeradius-server $ git fetch origin v2.1.x:v2.1.x $ git checkout v2.1.x
Rather than using 'make' on FreeBSD, try 'gmake'. That will run Gnu Make as Alan suggested. Paul. - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html ---------------------------------------------------------------------- If you reply to this email, your message will be added to the discussion below: http://freeradius.1045715.n5.nabble.com/git-timeout-tp5058438p5061320.html To unsubscribe from git timeout, click here. NAML ---------------------------------------------------------------------- View this message in context: Re[2]: git timeout Sent from the FreeRadius - User mailing list archive at Nabble.com. - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
Hi,
/usr/include/net/if_arp.h:88: error: field 'arp_pa' has incomplete type /usr/include/net/if_arp.h:89: error: field 'arp_ha' has incomplete type /usr/include/net/if_arp.h:115: error: expected specifier-qualifier-list before 'u_long' gmake[4]: *** [dhcp.lo] Error 1 gmake[4]: Leaving directory `/tmp/freeradius-server/src/lib' gmake[3]: *** [lib] Error 2 gmake[3]: Leaving directory `/tmp/freeradius-server/src' gmake[2]: *** [all] Error 2 gmake[2]: Leaving directory `/tmp/freeradius-server/src' gmake[1]: *** [src] Error 2 gmake[1]: Leaving directory `/tmp/freeradius-server' gmake: *** [all] Error 2
do you want or need freeradius DHCPD functionality? IF not, just disable it at the ./configure stage - looks like the BSD System libs have a difference in ARP code alan
participants (6)
-
Alan Buxey -
Alan DeKok -
Fajar A. Nugraha -
Paul Thornton -
tolik_shavlovsky@mail.ru -
Толик Шавловский