Binding FreeRadius to the DHCP Server
Michael J. Hartwick
hartwick at hartwick.com
Tue Jul 25 17:22:19 CEST 2006
On Tue, 25 Jul 2006 at 13:46 (+0200), Elie Hani wrote:
EH> As a matter of fact, for the first login, the users will have an IP from a
EH> certain pool X, once the informations are entered, and after redialing, the
EH> users will get the new IP from the second pool Y.
EH>
EH> All I want to know is if it's possible to bind the radius to a DHCP server,
EH> if yes how it can be done? Otherwise, is there any other pssible method to
EH> configure 2 pools of Ips X and Y and relay it to the DHCP?
I think you could do this without involving a DHCP server (can a PPP
connection even use DHCP??). Their is a module rlm_ippool which looks
like it would do what you want. I haven't used this since I haven't
needed multiple pools, but it looks like it would work.
In radiusd.conf something like:
ippool fake {
range-start = 192.168.1.1 # I assume you are meaning
range-stop = 192.168.1.254 # RFC1918 space when you
netmask = 255.255.255.0 # say faked.
cache-size = 254
session-db = ${raddbdir}/db.ippool-fake
ip-index = ${raddbdir}/db.ipindex-fake
override = yes
maximum-timeout = 0
}
ippool real {
range-start = 10.10.10.1
range-stop = 10.10.10.254
netmask = 255.255.255.0
cache-size = 254
session-db = ${raddbdir}/db.ippool-real
ip-index = ${raddbdir}/db.ipindex-real
override = no
maximum-timeout = 0
}
And in users something like:
guest User-Password := "guest", Pool-Name := "fake"
Service-Type = Framed-User,
Framed-Protocol = PPP
DEFAULT Auth-Type := System, Pool-Name := "real"
Service-Type = Framed-User,
Framed-Protocol = PPP
I have not tested any of this, it may cause Bad Things(tm) to happen,
adjust accordingly to use the correct IP ranges, etc.
#include <standard-disclaimer.h>
Michael
----------------------------------------------------------------------
Michael J. Hartwick, VE3SLQ hartwick at hartwick.com
Hartwick Communications Consulting (519) 396-7719
Kincardine, ON, CA http://www.hartwick.com
----------------------------------------------------------------------
More information about the Freeradius-Users
mailing list