Re: Campus internet connection

Previous thread: Empeza a planear tus compras para las Fiestas !!!!!! by Network Shop on Wednesday, November 17, 2010 - 7:20 am. (1 message)

Next thread: que dejes de ~ g  a n  a r d i n e r o  ~ por no tener tu página de Internet. by Es una lástima on Wednesday, November 17, 2010 - 8:52 am. (1 message)
From: Tomas Vavrys
Date: Wednesday, November 17, 2010 - 8:38 am

Hello,

I would like to use OpenBSD at school, but current documentation is
only for Windows, Linux. Could you please guide me what is different
and what man pages should I read?
What bothers me is WPA supplicant. PF should not be a problem.

Link to translated documentation, I know it is not perfect but I
actually read it and it's fine to get the fundamental meaning.
http://translate.google.cz/translate?hl=cs&sl=auto&tl=en&u=http://www.kole...

Thank you...

From: David Coppa
Date: Wednesday, November 17, 2010 - 8:47 am

Sorry, no way.
802.1X authentication is currently unsupported on OpenBSD.

ciao,
david

From: Jeremy O'Brien
Date: Monday, November 22, 2010 - 12:36 am

Do you know if there are any plans in the works for implementing 802.1X in
the future? My campus also insists on using it, and it is very frustrating.

From: Jeremy O'Brien
Date: Monday, November 22, 2010 - 12:29 pm

Do we really need specialized hardware for 802.1X? I was under the
impression that 802.1X is purely done in software, and only the WPA2 portion
was done in hardware. Correct me if I'm wrong.
On Nov 22, 2010 7:01 AM, "Iqigo Ortiz de Urbina" <
http://translate.google.cz/translate?hl=cs&sl=auto&tl=en&u=http://www.kolej.m

From: Tomas Vavrys
Date: Tuesday, December 7, 2010 - 5:11 am

This problem has already occured in NetBSD.
http://lists.shmoo.com/pipermail/hostap/2009-August/020080.html

I have created a new diff for OpenBSD patch-driver_wired_c
(wpa_supplicant) which works fine.

--- original/driver_wired.c     Sun Dec 31 04:28:05 2006
+++ driver_wired.c      Fri May 18 02:06:07 2007
@@ -18,7 +18,7 @@
 #ifdef __linux__
 #include <netpacket/packet.h>
 #endif /* __linux__ */
-#ifdef __FreeBSD__
+#if defined(__FreeBSD__) || defined(__OpenBSD__)
 #include <net/if_dl.h>
 #endif /* __FreeBSD__ */

@@ -132,6 +132,15 @@
                os_memcpy(LLADDR(dlp), addr, ETH_ALEN);
        }
 #endif /* __FreeBSD__ */
+#ifdef __OpenBSD__
+       {
+               struct sockaddr *sap;
+               sap = (struct sockaddr *) &ifr.ifr_addr;
+               sap->sa_len = sizeof(struct sockaddr);
+               sap->sa_family = AF_UNSPEC;
+               os_memcpy(sap->sa_data, addr, ETH_ALEN);
+       }
+#endif /* __OpenBSD __ */

        if (ioctl(s, add ? SIOCADDMULTI : SIOCDELMULTI, (caddr_t) &ifr) < 0) {
                perror("ioctl[SIOC{ADD/DEL}MULTI]");




Previous thread: Empeza a planear tus compras para las Fiestas !!!!!! by Network Shop on Wednesday, November 17, 2010 - 7:20 am. (1 message)

Next thread: que dejes de ~ g  a n  a r d i n e r o  ~ por no tener tu página de Internet. by Es una lástima on Wednesday, November 17, 2010 - 8:52 am. (1 message)