How to reject users who don't match unlang

2012-03-13 Thread Scott McLane Gardner
I have the following in my sites-available/default: authorize { ... # Allow only NET Staff members to log into BAND and HAPF if (Ldap-Group == NET Staff (NAS-IP-Address == 192.168.6.5 || NAS-IP-Address == 192.168.6.4)) { update

Re: How to reject users who don't match unlang

2012-03-13 Thread Scott McLane Gardner
And of course I figured it out 2 minutes after writing this message. For posterity, the syntax was close. It's actually like this: elsif (NAS-IP-Address == 192.168.6.5 || NAS-IP-Address == 192.168.6.4) { reject = 1 } - List info/subscribe/unsubscribe? See

Re: How to reject users who don't match unlang

2012-03-13 Thread Alan Buxey
Hi, I have the following in my sites-available/default: just 'reject' on its own. alan - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

Re: How to reject users who don't match unlang

2012-03-13 Thread Alan Buxey
hi, i must be tiredi cant see how that is different to your first email! ;-) alan - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

Re: How to reject users who don't match unlang

2012-03-13 Thread Scott McLane Gardner
On 3/13/12 1:24 PM, Alan Buxey a.l.m.bu...@lboro.ac.uk wrote: hi, i must be tiredi cant see how that is different to your first email! ;-) alan No, you're right, I didn't edit it. It's like you said, reject without the = 1 after it. I must be the one who is tired. Thank you for your