|
Hello,
I have a freeradius 1.1.7 server setup with ppp and pptp using
a mysql
DB for user authentication. radiusd -xx
.............
rlm_ippool: Could not find Pool-Name attribute
...........
...........
modcall[accounting]: module "radutmp" returns ok for request
1
rlm_ippool: This is not an Accounting-Stop. Return NOOP. modcall[accounting]: module "dialup" returns noop for request 1 rlm_ippool: This is not an Accounting-Stop. Return NOOP. modcall[accounting]: module "sp_pool" returns noop for request 1 -----------------------------------------------------------------
radiusd.conf
ippool dialup
{
range-start = 172.16.0.1 range-stop = 172.16.0.125 netmask
= 255.255.255.0
cache-size
= 800
session-db
= ${raddbdir}/db.ippool
ip-index
= ${raddbdir}/db.ipindex
override
= no
maximum-timeout = 0
} ippool sp_pool {
range-start =
172.16.1.1
range-stop = 172.16.1.125
netmask = 255.255.255.0
cache-size = 800
session-db = ${raddbdir}/db.ippoolsp
ip-index = ${raddbdir}/db.ipindexsp
override = no
maximum-timeout = 0
} ------------------------------------------------
post-auth {
# main_pool dialup sp_pool # sqlippool # sql # ldap
}
---------------------------------------------------
accounting {
detail
# daily
radutmp
# sradutmp # main_pool dialup sp_pool # sqlippool sql
}
users file -----------------------------------
DEFAULT Pool-Name := dialup
Fall-Through = Yes DEFAULT Pool-Name := sp_pool
Fall-Through = Yes DEFAULT Group == dialup, Pool-Name := "dialup"
DEFAULT Group == sp_pool, Pool-Name := "sp_pool"
|