> modules {
>
> ippool wpool {
> session-db = ${raddbdir}/wpool-sess-db
> ip-index = ${raddbdir}/wpool-idx-db
> range-start = 192.168.127.1
> range-stop = 192.168.127.127
> netmask = 255.255.255.255
> #netmask = 255.255.255.128
> cache-size = 5000
> }
>
>
> ippool dpool {
> session-db = ${raddbdir}/dpool-sess-db
> ip-index = ${raddbdir}/dpool-idx-db
> range-start = 192.168.126.160
> range-stop = 192.168.126.255
> netmask = 255.255.255.255
> cache-size = 800
> }
>
> So, what's wrong?
> Thanks for any hints!
If I don't get wrong, the netmask in the config is for determine the
address pool. So if you use the 255.255.255.255 netmask, you say to
rlm_ippool that you have no network. You should use a higher netmask to
provide some address. EG:
range-start = 192.168.126.160
range-stop = 192.168.126.255
netmask = 255.255.255.128
This will inform the module that you want to use the address in the
network 192.168.126.128/25, starting from the .160
I think that the 255.255.255.255 mask will lead the module to a confusion.
Hope I've been clear, and that this help.
Pigi
>
> Regards,
> Thomas.
>
-
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html