RADIUS-Proxy before MAC Auth

2013-02-25 Thread Oliver Warda
Use the example I gave you... it works - many thanks for your support Oliver - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

RADIUS-Proxy before MAC Auth

2013-02-21 Thread Oliver Warda
Is there a way to proxy requests based on realms before checking the MAC address? Yes. You can check if the User-Name contains an @ character. If so, proxy. For example: if (User-Name =~ /@/) { suffix if (updated) { handled } mac-checks... That should stop processing the request

Re: RADIUS-Proxy before MAC Auth

2013-02-21 Thread Alan DeKok
Oliver Warda wrote: Is it possible to use the realm instead and should this be placed within the users file? Use the example I gave you, and search for @realm instead of @. Alan DeKok. - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

RADIUS-Proxy before MAC Auth

2013-02-20 Thread Oliver Warda
Hello everybody, I'm using FR 2.1.12 on CentOS 6.3 802.1x and MAC Auth as described in WiKi is working fine. Authentication is done local Now, I have the demand to implement RADIUS Proxy also. As I understand MAC Auth is done before RADIUS Proxy. But I do not want to administrate about 5.000

Re: RADIUS-Proxy before MAC Auth

2013-02-20 Thread Alan DeKok
Oliver Warda wrote: Now, I have the demand to implement RADIUS Proxy also. As I understand MAC Auth is done before RADIUS Proxy. Yes. But I do not want to administrate about 5.000 RADIUS Proxy clients in my authorized_macs file (RADIUS Proxy is using 802.1x only). Is there a way to