Good morning everyone, I am running in a dead-end at the moment while configuring 2 FreeRADIUS instances (Version 2.1.8+dfsg-1ubuntu1) installed via apt, under Ubuntu Server 10.04.3 64 bit. Both FreeRADIUS instances are configured as follows: Server C: Only running MySQL, Apache2 and PHP5 with daloRADIUS 0.9.9 Server A and B: Both running FreeRADIUS, Autentication process is done via LAN to MySQL on Server C. This configuracion gives no trouble, as radtest outputs the following: /Sending Access-Request of id 244 to 192.168.6.5 port 1812 User-Name = "pruebas" User-Password = "surf" NAS-IP-Address = 192.168.6.3 NAS-Port = 1812 rad_recv: Access-Accept packet from host 192.168.6.5 port 1812, id=244, length=26 Idle-Timeout = 60/ Then I need Accounting to be sync between servers A and B, because if server A fails, when Server B receives the request, prints on the screen "Received logout request, but no Login was received", and same happen on server A when server B fails. First I readed about detail file, that should be renamed the line /detailfile = ${radacctdir}/%{Client-IP-Address}/detail-%Y%m%d/ to /detailfile = ${radacctdir}/detail/ in //etc/freeradius/modules/detail/ And added, under //etc/freeradius/sites-available/default/ file, in the section /accounting {} / the line /detail/ And then I uncommented, in the same file, under the sections /accounting {}/ and /post-auth {}/ the line /sql_log/ to enable the module (I want Accounting data to be stored in MySQL databases, tell me if I am wrong if that module does that, so I can disable it), and everytime I execute the /radtest/ command, new lines are added, in the file defined in //etc/freeradius/modules/sql_log/, /path = "${radacctdir}/sql-relay"/ With the above configuration, when I start /freeradius -X/, gives no error, and waits for Autentication packets to be processed. Finally, I added a symbolic link in //etc/freeradius/sites-enabled/, pointing to /../sites-available/copy-acct-to-home-server/, and when I start /freeradius -X/ it ends in a non-stop loop: / Detail listener /var/log/freeradius/radacct/detail state replied signalled 0 waiting 0.000477 sec Detail - unlinking /var/log/freeradius/radacct/detail.work Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 1.085813 sec Waking up in 1.0 seconds. Polling for detail file /var/log/freeradius/radacct/detail Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 0.923061 sec Waking up in 0.9 seconds. Polling for detail file /var/log/freeradius/radacct/detail Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 0.835397 sec Waking up in 0.8 seconds. Polling for detail file /var/log/freeradius/radacct/detail Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 1.128183 sec Waking up in 1.1 seconds. Polling for detail file /var/log/freeradius/radacct/detail Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 0.798296 sec Waking up in 0.7 seconds. ^C / Any points where should I start looking at, to fix the above situation? Maybe I am missing something or I have a misconfiguration, but for the moment I am unable to get any answer. Thanks in advance, -- View this message in context: http://freeradius.1045715.n5.nabble.com/FreeRADIUS-Accounting-data-sync-tp50... Sent from the FreeRadius - User mailing list archive at Nabble.com.
On Tue, Dec 13, 2011 at 6:16 PM, KatsuroKurosaki <joaquimsb89@gmail.com> wrote:
Then I need Accounting to be sync between servers A and B, because if server A fails, when Server B receives the request, prints on the screen "Received logout request, but no Login was received", and same happen on server A when server B fails.
FR shouldn't print that. What do you mean it "prints on the screen"?
And then I uncommented, in the same file, under the sections /accounting {}/ and /post-auth {}/ the line /sql_log/ to enable the module (I want
sql_log has nothing to do with accounting.
Accounting data to be stored in MySQL databases, tell me if I am wrong if
sql in accounting section will handle accounting request.
Finally, I added a symbolic link in //etc/freeradius/sites-enabled/, pointing to /../sites-available/copy-acct-to-home-server/, and when I start /freeradius -X/ it ends in a non-stop loop:
/ Detail listener /var/log/freeradius/radacct/detail state replied signalled 0 waiting 0.000477 sec Detail - unlinking /var/log/freeradius/radacct/detail.work Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 1.085813 sec Waking up in 1.0 seconds.
That is normal. It's because the server didn't receive any accounting packets. What happens if you send accounting packet to server A now? does both server A and B receive it? -- Fajar
Fajar A. Nugraha-2 wrote
FR shouldn't print that. What do you mean it "prints on the screen"?
I mean: while debugging ( /freeradius -X/ ) I have Server A as primary and server B as secondary (or back-up, fail-over,...). Then: I do a login process, and Server A is running, I'm logged in with no problems, and suddently server A fails (stopping the service). Then when I send the logout request, server A is dead, then the process is done by server B. But what I see on debug screen on server B, when I logout is this: /[radutmp] expand: /var/log/freeradius/radutmp -> /var/log/freeradius/radutmp [radutmp] expand: %{User-Name} -> pruebas rlm_radutmp: Logout for NAS SurfLabs Phys port 2151677953, *but no Login record* ++[radutmp] returns ok/ Fajar A. Nugraha-2 wrote
sql_log has nothing to do with accounting.
Thanks, module disabled. Fajar A. Nugraha-2 wrote
Detail listener /var/log/freeradius/radacct/detail state replied signalled 0 waiting 0.000477 sec Detail - unlinking /var/log/freeradius/radacct/detail.work Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 1.085813 sec Waking up in 1.0 seconds.
That is normal. It's because the server didn't receive any accounting packets.
What happens if you send accounting packet to server A now? does both server A and B receive it?
No, only server A receives and processes it. Then, if server A fails, server B starts processing requests, and when receives the logout request sent before to server A, server B debugs on the screen what I answered above ( the /No Login record/ thing ). I need some advices of how can I have all the Authorization, Authentication and Accounting data replicated to both servers (A and B), so one of them is the main server (Server A), and the other is the backup server (Server B) if server A fails (reboot machine for maintenance, no network connection,...), then server B starts processing requests, like server A was doing. Thanks and regards. -- View this message in context: http://freeradius.1045715.n5.nabble.com/FreeRADIUS-Accounting-data-sync-tp50... Sent from the FreeRadius - User mailing list archive at Nabble.com.
KatsuroKurosaki wrote:
I mean: while debugging ( /freeradius -X/ ) I have Server A as primary and server B as secondary (or back-up, fail-over,...). Then: I do a login process, and Server A is running, I'm logged in with no problems, and suddently server A fails (stopping the service). Then when I send the logout request, server A is dead, then the process is done by server B. But what I see on debug screen on server B, when I logout is this:
Because the login record hasn't been sent from A to B.
/[radutmp] expand: /var/log/freeradius/radutmp -> /var/log/freeradius/radutmp [radutmp] expand: %{User-Name} -> pruebas rlm_radutmp: Logout for NAS SurfLabs Phys port 2151677953, *but no Login record* ++[radutmp] returns ok/
And what *problem* does this create? If the answer is "none", then ignore it. If you're not using radutmp, then delete it from raddb/sites-enabled/default, and the problem will go away. Alan DeKok.
On Wed, Dec 14, 2011 at 5:15 PM, KatsuroKurosaki <joaquimsb89@gmail.com> wrote:
/[radutmp] expand: /var/log/freeradius/radutmp -> /var/log/freeradius/radutmp [radutmp] expand: %{User-Name} -> pruebas rlm_radutmp: Logout for NAS SurfLabs Phys port 2151677953, *but no Login record* ++[radutmp] returns ok/
Ah, the module that I always delete from the default config :D As Alan said, if it doesn't create problem, you can ignore it.
Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 1.085813 sec Waking up in 1.0 seconds.
That is normal. It's because the server didn't receive any accounting packets.
What happens if you send accounting packet to server A now? does both server A and B receive it?
No, only server A receives and processes it.
What I meant was, AFTER you enable copy-acct-to-home-server and stuff, have you ACTUALLY send an accounting packet to server A? If yes, it SHOULD display some things (like writing to a detail file), and then there should be a log about READING the detail file, and then there's something about it proxying the accounting to server B. Does all of that happen? If not, which ones happen?
I need some advices of how can I have all the Authorization, Authentication and Accounting data replicated to both servers (A and B), so one of them is the main server (Server A), and the other is the backup server (Server B) if server A fails (reboot machine for maintenance, no network connection,...), then server B starts processing requests, like server A was doing.
Somewhat complicated. Short version: it's easiest if you have mysql cluster setup correctly. But it's quite complicated, I recommend you hire an expert for that. Long version: There are many ways to do that. For authorization and accounting, basically you need the same config and same data on both backend (e.g. mysql). Sometimes it's easier to just sync the data (e.g. radcheck, radreply) manually. For accounting, what you're doing (copy-acct-to-home-server) is one way to do that. The other way is to setup db cluster/replication. -- Fajar
Alan DeKok-2 wrote
KatsuroKurosaki wrote:
I mean: while debugging ( /freeradius -X/ ) I have Server A as primary and server B as secondary (or back-up, fail-over,...). Then: I do a login process, and Server A is running, I'm logged in with no problems, and suddently server A fails (stopping the service). Then when I send the logout request, server A is dead, then the process is done by server B. But what I see on debug screen on server B, when I logout is this:
Because the login record hasn't been sent from A to B.
And this is what I'm trying to configure, server A send the packet to server B, and vice-versa. Server A won't handle all requests, for example, if we have 50 NASes, 25 will handle requests to server A and B as fail-over, and the other 25 will handle requests to server B and use A as fail-over. That's why I need all data replicated to both servers. Alan DeKok-2 wrote
/[radutmp] expand: /var/log/freeradius/radutmp -> /var/log/freeradius/radutmp [radutmp] expand: %{User-Name} -> pruebas rlm_radutmp: Logout for NAS SurfLabs Phys port 2151677953, *but no Login record* ++[radutmp] returns ok/
And what *problem* does this create?
Stale sessions in daloRADIUS. Also the attribute /Simultaneous-Use/ is used. ********************************************************************** Fajar A. Nugraha-2 wrote
On Wed, Dec 14, 2011 at 5:15 PM, KatsuroKurosaki <joaquimsb89@> wrote:
/[radutmp] expand: /var/log/freeradius/radutmp -> /var/log/freeradius/radutmp [radutmp] expand: %{User-Name} -> pruebas rlm_radutmp: Logout for NAS SurfLabs Phys port 2151677953, *but no Login record* ++[radutmp] returns ok/
Ah, the module that I always delete from the default config :D
As Alan said, if it doesn't create problem, you can ignore it.
Fine, thanks. Module disabled and doesn't give any more problems, except stale sessions in daloRADIUS. Fajar A. Nugraha-2 wrote
Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 1.085813 sec Waking up in 1.0 seconds.
That is normal. It's because the server didn't receive any accounting packets.
What happens if you send accounting packet to server A now? does both server A and B receive it?
No, only server A receives and processes it.
What I meant was, AFTER you enable copy-acct-to-home-server and stuff, have you ACTUALLY send an accounting packet to server A? If yes, it SHOULD display some things (like writing to a detail file), and then there should be a log about READING the detail file, and then there's something about it proxying the accounting to server B. Does all of that happen? If not, which ones happen?
When I enable copy-acct-to-home-server, and I send requests, they are processed correctly, saving it to the detail file, but on server B, I don't receive the request, to have both servers synced. Also it shows, with no-end, those lines on the screen: / Detail listener /var/log/freeradius/radacct/detail state replied signalled 0 waiting 0.000450 sec Detail - unlinking /var/log/freeradius/radacct/detail.work Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 1.077625 sec Waking up in 1.0 seconds. Polling for detail file /var/log/freeradius/radacct/detail Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 0.854780 sec Waking up in 0.8 seconds. Polling for detail file /var/log/freeradius/radacct/detail Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 0.913774 sec Waking up in 0.9 seconds. Polling for detail file /var/log/freeradius/radacct/detail Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 0.820318 sec Waking up in 0.8 seconds. Polling for detail file /var/log/freeradius/radacct/detail Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 1.035776 sec Waking up in 1.0 seconds. Polling for detail file /var/log/freeradius/radacct/detail Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 0.824664 sec Waking up in 0.8 seconds. Polling for detail file /var/log/freeradius/radacct/detail Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 1.043415 sec Waking up in 1.0 seconds. Polling for detail file /var/log/freeradius/radacct/detail Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 1.090784 sec Waking up in 1.0 seconds. ^C / Is this behaviour normal? Fajar A. Nugraha-2 wrote
I need some advices of how can I have all the Authorization, Authentication and Accounting data replicated to both servers (A and B), so one of them is the main server (Server A), and the other is the backup server (Server B) if server A fails (reboot machine for maintenance, no network connection,...), then server B starts processing requests, like server A was doing.
Somewhat complicated.
Short version: it's easiest if you have mysql cluster setup correctly. But it's quite complicated, I recommend you hire an expert for that.
Long version: There are many ways to do that. For authorization and accounting, basically you need the same config and same data on both backend (e.g. mysql). Sometimes it's easier to just sync the data (e.g. radcheck, radreply) manually.
For accounting, what you're doing (copy-acct-to-home-server) is one way to do that. The other way is to setup db cluster/replication.
I use MySQL, but it is in server C, and FreeRADIUS are on Server A and B, and both FreeRADIUS point to the same DB, via LAN. -- View this message in context: http://freeradius.1045715.n5.nabble.com/FreeRADIUS-Accounting-data-sync-tp50... Sent from the FreeRadius - User mailing list archive at Nabble.com.
KatsuroKurosaki wrote:
And this is what I'm trying to configure, server A send the packet to server B, and vice-versa. Server A won't handle all requests, for example, if we have 50 NASes, 25 will handle requests to server A and B as fail-over, and the other 25 will handle requests to server B and use A as fail-over. That's why I need all data replicated to both servers.
That's pretty normal.
When I enable copy-acct-to-home-server, and I send requests, they are processed correctly, saving it to the detail file, but on server B, I don't receive the request, to have both servers synced.
So.. (A) receives the packet, writes it to the detail file, and then what happens?
Also it shows, with no-end, those lines on the screen: / Detail listener /var/log/freeradius/radacct/detail state replied signalled 0 waiting 0.000450 sec Detail - unlinking /var/log/freeradius/radacct/detail.work
So it read a packet from the detail file, processed it, and finished work. That's normal. WHAT did it do with those packets?
Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 1.077625 sec Waking up in 1.0 seconds. Polling for detail file /var/log/freeradius/radacct/detail Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 0.854780 sec
So... there are no packets in the detail file. There is nothing more to do. It's waiting for more packets to arrive. Alan DeKok.
On Wed, Dec 14, 2011 at 6:08 PM, KatsuroKurosaki <joaquimsb89@gmail.com> wrote:
What I meant was, AFTER you enable copy-acct-to-home-server and stuff, have you ACTUALLY send an accounting packet to server A? If yes, it SHOULD display some things (like writing to a detail file), and then there should be a log about READING the detail file, and then there's something about it proxying the accounting to server B. Does all of that happen? If not, which ones happen?
When I enable copy-acct-to-home-server, and I send requests, they are processed correctly, saving it to the detail file, but on server B, I don't receive the request, to have both servers synced. Also it shows, with no-end, those lines on the screen:
Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 1.077625 sec Waking up in 1.0 seconds. Polling for detail file /var/log/freeradius/radacct/detail Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 0.854780 sec Waking up in 0.8 seconds.
Is this behaviour normal?
It's easier if you just post the debug log of the server receiving accounting packet. Seriously. The "looping" log is fine when there's no accounting packet. If an accounting packet comes, it SHOULD show it's writing to the detail file, and after that, there should be a log saying the file is read and processed. If not, your setup is wrong. Again, posting the debug log of the server receiving accounting packet will make troubleshooting much easier. Without that, I can only say "your setup is wrong". -- Fajar
Alan DeKok-2 wrote
KatsuroKurosaki wrote:
And this is what I'm trying to configure, server A send the packet to server B, and vice-versa. Server A won't handle all requests, for example, if we have 50 NASes, 25 will handle requests to server A and B as fail-over, and the other 25 will handle requests to server B and use A as fail-over. That's why I need all data replicated to both servers.
That's pretty normal.
When I enable copy-acct-to-home-server, and I send requests, they are processed correctly, saving it to the detail file, but on server B, I don't receive the request, to have both servers synced.
So.. (A) receives the packet, writes it to the detail file, and then what happens?
Also it shows, with no-end, those lines on the screen: / Detail listener /var/log/freeradius/radacct/detail state replied signalled 0 waiting 0.000450 sec Detail - unlinking /var/log/freeradius/radacct/detail.work
So it read a packet from the detail file, processed it, and finished work. That's normal.
WHAT did it do with those packets?
Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 1.077625 sec Waking up in 1.0 seconds. Polling for detail file /var/log/freeradius/radacct/detail Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 0.854780 sec
So... there are no packets in the detail file. There is nothing more to do. It's waiting for more packets to arrive.
Alan DeKok. - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
Fajar A. Nugraha-2 wrote
On Wed, Dec 14, 2011 at 6:08 PM, KatsuroKurosaki <joaquimsb89@> wrote:
What I meant was, AFTER you enable copy-acct-to-home-server and stuff, have you ACTUALLY send an accounting packet to server A? If yes, it SHOULD display some things (like writing to a detail file), and then there should be a log about READING the detail file, and then there's something about it proxying the accounting to server B. Does all of that happen? If not, which ones happen?
When I enable copy-acct-to-home-server, and I send requests, they are processed correctly, saving it to the detail file, but on server B, I don't receive the request, to have both servers synced. Also it shows, with no-end, those lines on the screen:
Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 1.077625 sec Waking up in 1.0 seconds. Polling for detail file /var/log/freeradius/radacct/detail Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 0.854780 sec Waking up in 0.8 seconds.
Is this behaviour normal?
It's easier if you just post the debug log of the server receiving accounting packet. Seriously.
The "looping" log is fine when there's no accounting packet. If an accounting packet comes, it SHOULD show it's writing to the detail file, and after that, there should be a log saying the file is read and processed. If not, your setup is wrong.
Again, posting the debug log of the server receiving accounting packet will make troubleshooting much easier. Without that, I can only say "your setup is wrong".
-- Fajar - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
Better I post the output of both servers, and Server A processing a login request, and server B... just waiting and the request doesn't arrive. Server A: /FreeRADIUS Version 2.1.8, for host x86_64-pc-linux-gnu, built on Jan 5 2010 at 02:56:18 Copyright (C) 1999-2009 The FreeRADIUS server project and contributors. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. You may redistribute copies of FreeRADIUS under the terms of the GNU General Public License v2. Starting - reading configuration files ... including configuration file /etc/freeradius/radiusd.conf including configuration file /etc/freeradius/proxy.conf including configuration file /etc/freeradius/clients.conf including files in directory /etc/freeradius/modules/ including configuration file /etc/freeradius/modules/digest including configuration file /etc/freeradius/modules/exec including configuration file /etc/freeradius/modules/otp including configuration file /etc/freeradius/modules/acct_unique including configuration file /etc/freeradius/modules/etc_group including configuration file /etc/freeradius/modules/smsotp including configuration file /etc/freeradius/modules/mschap including configuration file /etc/freeradius/modules/echo including configuration file /etc/freeradius/modules/attr_filter including configuration file /etc/freeradius/modules/sql_log including configuration file /etc/freeradius/modules/always including configuration file /etc/freeradius/modules/cui including configuration file /etc/freeradius/modules/detail including configuration file /etc/freeradius/modules/detail.example.com including configuration file /etc/freeradius/modules/checkval including configuration file /etc/freeradius/modules/radutmp including configuration file /etc/freeradius/modules/ntlm_auth including configuration file /etc/freeradius/modules/ldap including configuration file /etc/freeradius/modules/realm including configuration file /etc/freeradius/modules/wimax including configuration file /etc/freeradius/modules/ippool including configuration file /etc/freeradius/modules/logintime including configuration file /etc/freeradius/modules/linelog including configuration file /etc/freeradius/modules/unix including configuration file /etc/freeradius/modules/preprocess including configuration file /etc/freeradius/modules/pam including configuration file /etc/freeradius/modules/counter including configuration file /etc/freeradius/modules/expr including configuration file /etc/freeradius/modules/perl including configuration file /etc/freeradius/modules/passwd including configuration file /etc/freeradius/modules/sradutmp including configuration file /etc/freeradius/modules/mac2vlan including configuration file /etc/freeradius/modules/inner-eap including configuration file /etc/freeradius/modules/expiration including configuration file /etc/freeradius/modules/krb5 including configuration file /etc/freeradius/modules/chap including configuration file /etc/freeradius/modules/policy including configuration file /etc/freeradius/modules/pap including configuration file /etc/freeradius/modules/files including configuration file /etc/freeradius/modules/sqlcounter_expire_on_login including configuration file /etc/freeradius/modules/detail.log including configuration file /etc/freeradius/modules/mac2ip including configuration file /etc/freeradius/modules/attr_rewrite including configuration file /etc/freeradius/modules/smbpasswd including configuration file /etc/freeradius/eap.conf including configuration file /etc/freeradius/sql.conf including configuration file /etc/freeradius/sql/mysql/dialup.conf including configuration file /etc/freeradius/sql/mysql/counter.conf including configuration file /etc/freeradius/policy.conf including files in directory /etc/freeradius/sites-enabled/ including configuration file /etc/freeradius/sites-enabled/inner-tunnel including configuration file /etc/freeradius/sites-enabled/copy-acct-to-home-server including configuration file /etc/freeradius/sites-enabled/default main { user = "freerad" group = "freerad" allow_core_dumps = no } including dictionary file /etc/freeradius/dictionary main { prefix = "/usr" localstatedir = "/var" logdir = "/var/log/freeradius" libdir = "/usr/lib/freeradius" radacctdir = "/var/log/freeradius/radacct" hostname_lookups = no max_request_time = 30 cleanup_delay = 5 max_requests = 1024 pidfile = "/var/run/freeradius/freeradius.pid" checkrad = "/usr/sbin/checkrad" debug_level = 0 proxy_requests = yes log { stripped_names = no auth = yes auth_badpass = yes auth_goodpass = yes } security { max_attributes = 200 reject_delay = 1 status_server = yes } } radiusd: #### Loading Realms and Home Servers #### proxy server { retry_delay = 5 retry_count = 3 default_fallback = no dead_time = 120 wake_all_if_all_dead = no } home_server localhost { ipaddr = 127.0.0.1 port = 1812 type = "auth" secret = "testing123" response_window = 20 max_outstanding = 65536 require_message_authenticator = no zombie_period = 40 status_check = "status-server" ping_interval = 30 check_interval = 30 num_answers_to_alive = 3 num_pings_to_alive = 3 revive_interval = 120 status_check_timeout = 4 irt = 2 mrt = 16 mrc = 5 mrd = 30 } home_server_pool my_auth_failover { type = fail-over home_server = localhost } realm example.com { auth_pool = my_auth_failover } realm LOCAL { } home_server radrelay { ipaddr = 192.168.6.97 port = 1812 type = "acct" secret = "testing123" response_window = 30 max_outstanding = 65536 require_message_authenticator = yes zombie_period = 40 status_check = "none" ping_interval = 30 check_interval = 30 num_answers_to_alive = 3 num_pings_to_alive = 3 revive_interval = 300 status_check_timeout = 4 irt = 2 mrt = 16 mrc = 5 mrd = 30 } home_server_pool radrelay { type = fail-over home_server = radrelay } realm radrelay { acct_pool = radrelay } radiusd: #### Loading Clients #### client localhost { ipaddr = 127.0.0.1 require_message_authenticator = no secret = "testing123" nastype = "other" } client dynamic { ipaddr = 192.168.144.0 netmask = 24 require_message_authenticator = no dynamic_clients = "dynamic_client_server" lifetime = 86400 } radiusd: #### Instantiating modules #### instantiate { Module: Linked to module rlm_exec Module: Instantiating exec exec { wait = no input_pairs = "request" shell_escape = yes } Module: Linked to module rlm_expr Module: Instantiating expr Module: Linked to module rlm_counter Module: Instantiating daily counter daily { filename = "/etc/freeradius/db.daily" key = "User-Name" reset = "daily" count-attribute = "Acct-Session-Time" counter-name = "Daily-Session-Time" check-name = "Max-Daily-Session" reply-name = "Session-Timeout" allowed-servicetype = "Framed-User" cache-size = 5000 } rlm_counter: Counter attribute Daily-Session-Time is number 11273 rlm_counter: Current Time: 1323936415 [2011-12-15 09:06:55], Next reset 1323990000 [2011-12-16 00:00:00] Module: Linked to module rlm_expiration Module: Instantiating expiration expiration { reply-message = "Password Has Expired " } Module: Linked to module rlm_logintime Module: Instantiating logintime logintime { reply-message = "You are calling outside your allowed timespan " minimum-timeout = 60 } } radiusd: #### Loading Virtual Servers #### server dynamic_client_server { modules { Module: Checking authorize {...} for more modules to load Module: Linked to module rlm_sql Module: Instantiating sql sql { driver = "rlm_sql_mysql" server = "X.X.X.X" port = "" login = "login" password = "password" radius_db = "radius" read_groups = yes sqltrace = no sqltracefile = "/var/log/freeradius/sqltrace.sql" readclients = yes deletestalesessions = yes num_sql_socks = 5 lifetime = 0 max_queries = 0 sql_user_name = "%{User-Name}" default_user_profile = "" nas_query = "SELECT id, nasname, shortname, type, secret FROM nas" authorize_check_query = "SELECT id, username, attribute, value, op FROM radcheck WHERE username = '%{SQL-User-Name}' ORDER BY id" authorize_reply_query = "SELECT id, username, attribute, value, op FROM radreply WHERE username = '%{SQL-User-Name}' ORDER BY id" authorize_group_check_query = "SELECT id, groupname, attribute, Value, op FROM radgroupcheck WHERE groupname = '%{Sql-Group}' ORDER BY id" authorize_group_reply_query = "SELECT id, groupname, attribute, value, op FROM radgroupreply WHERE groupname = '%{Sql-Group}' ORDER BY id" accounting_onoff_query = " UPDATE radacct SET acctstoptime = '%S', acctsessiontime = unix_timestamp('%S') - unix_timestamp(acctstarttime), acctterminatecause = '%{Acct-Terminate-Cause}', acctstopdelay = %{%{Acct-Delay-Time}:-0} WHERE acctstoptime IS NULL AND nasipaddress = '%{NAS-IP-Address}' AND acctstarttime <= '%S'" accounting_update_query = " UPDATE radacct SET framedipaddress = '%{Framed-IP-Address}', acctsessiontime = '%{Acct-Session-Time}', acctinputoctets = '%{%{Acct-Input-Gigawords}:-0}' << 32 | '%{%{Acct-Input-Octets}:-0}', acctoutputoctets = '%{%{Acct-Output-Gigawords}:-0}' << 32 | '%{%{Acct-Output-Octets}:-0}' WHERE acctsessionid = '%{Acct-Session-Id}' AND username = '%{SQL-User-Name}' AND nasipaddress = '%{NAS-IP-Address}'" accounting_update_query_alt = " INSERT INTO radacct (acctsessionid, acctuniqueid, username, realm, nasipaddress, nasportid, nasporttype, acctstarttime, acctsessiontime, acctauthentic, connectinfo_start, acctinputoctets, acctoutputoctets, calledstationid, callingstationid, servicetype, framedprotocol, framedipaddress, acctstartdelay, xascendsessionsvrkey) VALUES ('%{Acct-Session-Id}', '%{Acct-Unique-Session-Id}', '%{SQL-User-Name}', '%{Realm}', '%{NAS-IP-Address}', '%{NAS-Port}', '%{NAS-Port-Type}', DATE_SUB('%S', INTERVAL (%{%{Acct-Session-Time}:-0} + %{%{Acct-Delay-Time}:-0}) SECOND), '%{Acct-Session-Time}', '%{Acct-Authentic}', '', '%{%{Acct-Input-Gigawords}:-0}' << 32 | '%{%{Acct-Input-Octets}:-0}', '%{%{Acct-Output-Gigawords}:-0}' << 32 | '%{%{Acct-Output-Octets}:-0}', '%{Called-Station-Id}', '%{Calling-Station-Id}', '%{Service-Type}', '%{Framed-Protocol}', '%{Framed-IP-Address}', '0', '%{X-Ascend-Session-Svr-Key}')" accounting_start_query = " INSERT INTO radacct (acctsessionid, acctuniqueid, username, realm, nasipaddress, nasportid, nasporttype, acctstarttime, acctstoptime, acctsessiontime, acctauthentic, connectinfo_start, connectinfo_stop, acctinputoctets, acctoutputoctets, calledstationid, callingstationid, acctterminatecause, servicetype, framedprotocol, framedipaddress, acctstartdelay, acctstopdelay, xascendsessionsvrkey) VALUES ('%{Acct-Session-Id}', '%{Acct-Unique-Session-Id}', '%{SQL-User-Name}', '%{Realm}', '%{NAS-IP-Address}', '%{NAS-Port}', '%{NAS-Port-Type}', '%S', NULL, '0', '%{Acct-Authentic}', '%{Connect-Info}', '', '0', '0', '%{Called-Station-Id}', '%{Calling-Station-Id}', '', '%{Service-Type}', '%{Framed-Protocol}', '%{Framed-IP-Address}', '%{%{Acct-Delay-Time}:-0}', '0', '%{X-Ascend-Session-Svr-Key}')" accounting_start_query_alt = " UPDATE radacct SET acctstarttime = '%S', acctstartdelay = '%{%{Acct-Delay-Time}:-0}', connectinfo_start = '%{Connect-Info}' WHERE acctsessionid = '%{Acct-Session-Id}' AND username = '%{SQL-User-Name}' AND nasipaddress = '%{NAS-IP-Address}'" accounting_stop_query = " UPDATE radacct SET acctstoptime = '%S', acctsessiontime = '%{Acct-Session-Time}', acctinputoctets = '%{%{Acct-Input-Gigawords}:-0}' << 32 | '%{%{Acct-Input-Octets}:-0}', acctoutputoctets = '%{%{Acct-Output-Gigawords}:-0}' << 32 | '%{%{Acct-Output-Octets}:-0}', acctterminatecause = '%{Acct-Terminate-Cause}', acctstopdelay = '%{%{Acct-Delay-Time}:-0}', connectinfo_stop = '%{Connect-Info}' WHERE acctsessionid = '%{Acct-Session-Id}' AND username = '%{SQL-User-Name}' AND nasipaddress = '%{NAS-IP-Address}'" accounting_stop_query_alt = " INSERT INTO radacct (acctsessionid, acctuniqueid, username, realm, nasipaddress, nasportid, nasporttype, acctstarttime, acctstoptime, acctsessiontime, acctauthentic, connectinfo_start, connectinfo_stop, acctinputoctets, acctoutputoctets, calledstationid, callingstationid, acctterminatecause, servicetype, framedprotocol, framedipaddress, acctstartdelay, acctstopdelay) VALUES ('%{Acct-Session-Id}', '%{Acct-Unique-Session-Id}', '%{SQL-User-Name}', '%{Realm}', '%{NAS-IP-Address}', '%{NAS-Port}', '%{NAS-Port-Type}', DATE_SUB('%S', INTERVAL (%{%{Acct-Session-Time}:-0} + %{%{Acct-Delay-Time}:-0}) SECOND), '%S', '%{Acct-Session-Time}', '%{Acct-Authentic}', '', '%{Connect-Info}', '%{%{Acct-Input-Gigawords}:-0}' << 32 | '%{%{Acct-Input-Octets}:-0}', '%{%{Acct-Output-Gigawords}:-0}' << 32 | '%{%{Acct-Output-Octets}:-0}', '%{Called-Station-Id}', '%{Calling-Station-Id}', '%{Acct-Terminate-Cause}', '%{Service-Type}', '%{Framed-Protocol}', '%{Framed-IP-Address}', '0', '%{%{Acct-Delay-Time}:-0}')" group_membership_query = "SELECT groupname FROM radusergroup WHERE username = '%{SQL-User-Name}' ORDER BY priority" connect_failure_retry_delay = 60 simul_count_query = "" simul_verify_query = "SELECT radacctid, acctsessionid, username, nasipaddress, nasportid, framedipaddress, callingstationid, framedprotocol FROM radacct WHERE username = '%{SQL-User-Name}' AND acctstoptime IS NULL" postauth_query = "INSERT INTO radpostauth (username, pass, reply, authdate) VALUES ( '%{User-Name}', '%{%{User-Password}:-%{Chap-Password}}', '%{reply:Packet-Type}', '%S')" safe-characters = "@abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_: /" } rlm_sql (sql): Driver rlm_sql_mysql (module rlm_sql_mysql) loaded and linked rlm_sql (sql): Attempting to connect to login@X.X.X.X:/radius rlm_sql (sql): starting 0 rlm_sql (sql): Attempting to connect rlm_sql_mysql #0 rlm_sql_mysql: Starting connect to MySQL server for #0 rlm_sql (sql): Connected new DB handle, #0 rlm_sql (sql): starting 1 rlm_sql (sql): Attempting to connect rlm_sql_mysql #1 rlm_sql_mysql: Starting connect to MySQL server for #1 rlm_sql (sql): Connected new DB handle, #1 rlm_sql (sql): starting 2 rlm_sql (sql): Attempting to connect rlm_sql_mysql #2 rlm_sql_mysql: Starting connect to MySQL server for #2 rlm_sql (sql): Connected new DB handle, #2 rlm_sql (sql): starting 3 rlm_sql (sql): Attempting to connect rlm_sql_mysql #3 rlm_sql_mysql: Starting connect to MySQL server for #3 rlm_sql (sql): Connected new DB handle, #3 rlm_sql (sql): starting 4 rlm_sql (sql): Attempting to connect rlm_sql_mysql #4 rlm_sql_mysql: Starting connect to MySQL server for #4 rlm_sql (sql): Connected new DB handle, #4 rlm_sql (sql): Processing generate_sql_clients rlm_sql (sql) in generate_sql_clients: query is SELECT id, nasname, shortname, type, secret FROM nas rlm_sql (sql): Reserving sql socket id: 4 rlm_sql (sql): Adding client 192.168.145.250 (SurfLabs Phys, server=<none>) to clients list rlm_sql (sql): Read entry nasname=192.168.144.250,shortname=SurfLabs Virt,secret=testing123 rlm_sql (sql): Adding client 192.168.144.250 (SurfLabs Virt, server=<none>) to clients list rlm_sql (sql): Released sql socket id: 4 Module: Linked to module rlm_always Module: Instantiating ok always ok { rcode = "ok" simulcount = 0 mpp = no } } # modules } # server server inner-tunnel { modules { Module: Checking authenticate {...} for more modules to load Module: Linked to module rlm_pap Module: Instantiating pap pap { encryption_scheme = "auto" auto_header = no } Module: Linked to module rlm_chap Module: Instantiating chap Module: Linked to module rlm_mschap Module: Instantiating mschap mschap { use_mppe = yes require_encryption = no require_strong = no with_ntdomain_hack = no } Module: Linked to module rlm_unix Module: Instantiating unix unix { radwtmp = "/var/log/freeradius/radwtmp" } Module: Linked to module rlm_eap Module: Instantiating eap eap { default_eap_type = "md5" timer_expire = 60 ignore_unknown_eap_types = no cisco_accounting_username_bug = no max_sessions = 4096 } Module: Linked to sub-module rlm_eap_md5 Module: Instantiating eap-md5 Module: Linked to sub-module rlm_eap_leap Module: Instantiating eap-leap Module: Linked to sub-module rlm_eap_gtc Module: Instantiating eap-gtc gtc { challenge = "Password: " auth_type = "PAP" } Module: Linked to sub-module rlm_eap_tls Module: Instantiating eap-tls tls { rsa_key_exchange = no dh_key_exchange = yes rsa_key_length = 512 dh_key_length = 512 verify_depth = 0 pem_file_type = yes private_key_file = "/etc/freeradius/certs/server.key" certificate_file = "/etc/freeradius/certs/server.pem" CA_file = "/etc/freeradius/certs/ca.pem" private_key_password = "whatever" dh_file = "/etc/freeradius/certs/dh" random_file = "/etc/freeradius/certs/random" fragment_size = 1024 include_length = yes check_crl = no cipher_list = "DEFAULT" make_cert_command = "/etc/freeradius/certs/bootstrap" cache { enable = no lifetime = 24 max_entries = 255 } } Module: Linked to sub-module rlm_eap_ttls Module: Instantiating eap-ttls ttls { default_eap_type = "md5" copy_request_to_tunnel = no use_tunneled_reply = no virtual_server = "inner-tunnel" include_length = yes } Module: Linked to sub-module rlm_eap_peap Module: Instantiating eap-peap peap { default_eap_type = "mschapv2" copy_request_to_tunnel = no use_tunneled_reply = no proxy_tunneled_request_as_eap = yes virtual_server = "inner-tunnel" } Module: Linked to sub-module rlm_eap_mschapv2 Module: Instantiating eap-mschapv2 mschapv2 { with_ntdomain_hack = no } Module: Checking authorize {...} for more modules to load Module: Linked to module rlm_realm Module: Instantiating suffix realm suffix { format = "suffix" delimiter = "@" ignore_default = no ignore_null = no } Module: Linked to module rlm_files Module: Instantiating files files { usersfile = "/etc/freeradius/users" acctusersfile = "/etc/freeradius/acct_users" preproxy_usersfile = "/etc/freeradius/preproxy_users" compat = "no" } Module: Checking session {...} for more modules to load Module: Linked to module rlm_radutmp Module: Instantiating radutmp radutmp { filename = "/var/log/freeradius/radutmp" username = "%{User-Name}" case_sensitive = yes check_with_nas = yes perm = 384 callerid = yes } Module: Checking post-proxy {...} for more modules to load Module: Checking post-auth {...} for more modules to load Module: Linked to module rlm_attr_filter Module: Instantiating attr_filter.access_reject attr_filter attr_filter.access_reject { attrsfile = "/etc/freeradius/attrs.access_reject" key = "%{User-Name}" } } # modules } # server server copy-acct-to-home-server { modules { Module: Checking preacct {...} for more modules to load Module: Linked to module rlm_preprocess Module: Instantiating preprocess preprocess { huntgroups = "/etc/freeradius/huntgroups" hints = "/etc/freeradius/hints" with_ascend_hack = no ascend_channels_per_line = 23 with_ntdomain_hack = no with_specialix_jetstream_hack = no with_cisco_vsa_hack = no with_alvarion_vsa_hack = no } Module: Checking accounting {...} for more modules to load } # modules } # server server { modules { Module: Checking authenticate {...} for more modules to load Module: Checking authorize {...} for more modules to load Module: Linked to module rlm_sqlcounter Module: Instantiating dailycounter sqlcounter dailycounter { counter-name = "Daily-Session-Time" check-name = "Max-Daily-Session" reply-name = "Session-Timeout" key = "User-Name" sqlmod-inst = "sql" query = "SELECT IFNULL( SUM(acctsessiontime - GREATEST((%b - UNIX_TIMESTAMP(acctstarttime)), 0)),0 ) FROM radacct WHERE username = '%{%k}' AND UNIX_TIMESTAMP(acctstarttime) + acctsessiontime > '%b'" reset = "daily" safe-characters = "@abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_: /" } rlm_sqlcounter: Reply attribute Session-Timeout is number 27 rlm_sqlcounter: Counter attribute Daily-Session-Time is number 11273 rlm_sqlcounter: Check attribute Max-Daily-Session is number 11274 rlm_sqlcounter: Current Time: 1323936421 [2011-12-15 09:07:01], Next reset 1323990000 [2011-12-16 00:00:00] rlm_sqlcounter: Current Time: 1323936421 [2011-12-15 09:07:01], Prev reset 1323903600 [2011-12-15 00:00:00] Module: Instantiating noresetcounter sqlcounter noresetcounter { counter-name = "Max-All-Session-Time" check-name = "Max-All-Session" key = "User-Name" sqlmod-inst = "sql" query = "SELECT IFNULL(SUM(AcctSessionTime),0) FROM radacct WHERE UserName='%{%k}'" reset = "never" safe-characters = "@abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_: /" } rlm_sqlcounter: Reply attribute set to Session-Timeout. rlm_sqlcounter: Counter attribute Max-All-Session-Time is number 11275 rlm_sqlcounter: Check attribute Max-All-Session is number 11276 rlm_sqlcounter: Current Time: 1323936421 [2011-12-15 09:07:01], Next reset 0 [2011-12-15 09:00:00] rlm_sqlcounter: Current Time: 1323936421 [2011-12-15 09:07:01], Prev reset 0 [2011-12-15 09:00:00] Module: Instantiating accessperiod sqlcounter accessperiod { counter-name = "Max-Access-Period-Never" check-name = "Access-Period" key = "User-Name" sqlmod-inst = "sql" query = "SELECT IF(COUNT(radacctid>=1),(UNIX_TIMESTAMP() - IFNULL(UNIX_TIMESTAMP(AcctStartTime),0)),0) FROM radacct WHERE UserName = '%{%k}' AND AcctSessionTime >= 1 ORDER BY AcctStartTime LIMIT 1" reset = "never" safe-characters = "@abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_: /" } rlm_sqlcounter: Reply attribute set to Session-Timeout. rlm_sqlcounter: Counter attribute Max-Access-Period-Never is number 11277 rlm_sqlcounter: Check attribute Access-Period is number 11278 rlm_sqlcounter: Current Time: 1323936421 [2011-12-15 09:07:01], Next reset 0 [2011-12-15 09:00:00] rlm_sqlcounter: Current Time: 1323936421 [2011-12-15 09:07:01], Prev reset 0 [2011-12-15 09:00:00] Module: Instantiating counterChilliSpotMaxTotalOctetsDaily sqlcounter counterChilliSpotMaxTotalOctetsDaily { counter-name = "ChilliSpot-Max-Total-Octets-Daily" check-name = "CS-Total-Octets-Daily" reply-name = "ChilliSpot-Max-Total-Octets" key = "User-Name" sqlmod-inst = "sql" query = "SELECT IFNULL((SUM(AcctInputOctets + AcctOutputOctets)),0) FROM radacct WHERE UserName='%{%k}' AND UNIX_TIMESTAMP(AcctStartTime) + AcctSessionTime > '%b'" reset = "daily" safe-characters = "@abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_: /" } rlm_sqlcounter: Reply attribute ChilliSpot-Max-Total-Octets is number 954138627 rlm_sqlcounter: Counter attribute ChilliSpot-Max-Total-Octets-Daily is number 11279 rlm_sqlcounter: Check attribute CS-Total-Octets-Daily is number 11280 rlm_sqlcounter: Current Time: 1323936421 [2011-12-15 09:07:01], Next reset 1323990000 [2011-12-16 00:00:00] rlm_sqlcounter: Current Time: 1323936421 [2011-12-15 09:07:01], Prev reset 1323903600 [2011-12-15 00:00:00] Module: Instantiating counterChilliSpotMaxTotalOctetsWeekly sqlcounter counterChilliSpotMaxTotalOctetsWeekly { counter-name = "ChilliSpot-Max-Total-Octets-Weekly" check-name = "CS-Total-Octets-Weekly" reply-name = "ChilliSpot-Max-Total-Octets" key = "User-Name" sqlmod-inst = "sql" query = "SELECT IFNULL((SUM(AcctInputOctets + AcctOutputOctets)),0) FROM radacct WHERE UserName='%{%k}' AND UNIX_TIMESTAMP(AcctStartTime) + AcctSessionTime > '%b'" reset = "weekly" safe-characters = "@abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_: /" } rlm_sqlcounter: Reply attribute ChilliSpot-Max-Total-Octets is number 954138627 rlm_sqlcounter: Counter attribute ChilliSpot-Max-Total-Octets-Weekly is number 11281 rlm_sqlcounter: Check attribute CS-Total-Octets-Weekly is number 11282 rlm_sqlcounter: Current Time: 1323936421 [2011-12-15 09:07:01], Next reset 1324162800 [2011-12-18 00:00:00] rlm_sqlcounter: Current Time: 1323936421 [2011-12-15 09:07:01], Prev reset 1323644400 [2011-12-12 00:00:00] Module: Instantiating counterChilliSpotMaxTotalOctetsAll sqlcounter counterChilliSpotMaxTotalOctetsAll { counter-name = "ChilliSpot-Max-Total-Octets" check-name = "CS-Total-Octets" reply-name = "ChilliSpot-Max-Total-Octets" key = "User-Name" sqlmod-inst = "sql" query = "SELECT IFNULL((SUM(AcctInputOctets + AcctOutputOctets)),0) FROM radacct WHERE UserName='%{%k}' AND UNIX_TIMESTAMP(AcctStartTime) + AcctSessionTime > '%b'" reset = "never" safe-characters = "@abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_: /" } rlm_sqlcounter: Reply attribute ChilliSpot-Max-Total-Octets is number 954138627 rlm_sqlcounter: Counter attribute ChilliSpot-Max-Total-Octets is number 954138627 rlm_sqlcounter: Check attribute CS-Total-Octets is number 11283 rlm_sqlcounter: Current Time: 1323936421 [2011-12-15 09:07:01], Next reset 0 [2011-12-15 09:00:00] rlm_sqlcounter: Current Time: 1323936421 [2011-12-15 09:07:01], Prev reset 0 [2011-12-15 09:00:00] Module: Checking preacct {...} for more modules to load Module: Linked to module rlm_acct_unique Module: Instantiating acct_unique acct_unique { key = "User-Name, Acct-Session-Id, NAS-IP-Address, Client-IP-Address, NAS-Port" } Module: Checking accounting {...} for more modules to load Module: Linked to module rlm_detail Module: Instantiating detail detail { detailfile = "/var/log/freeradius/radacct/detail" header = "%t" detailperm = 384 dirperm = 493 locking = yes log_packet_header = no } Module: Instantiating attr_filter.accounting_response attr_filter attr_filter.accounting_response { attrsfile = "/etc/freeradius/attrs.accounting_response" key = "%{User-Name}" } Module: Checking session {...} for more modules to load Module: Checking post-proxy {...} for more modules to load Module: Checking post-auth {...} for more modules to load } # modules } # server radiusd: #### Opening IP addresses and Ports #### listen { type = "auth" ipaddr = * port = 0 } listen { type = "acct" ipaddr = * port = 0 } listen { type = "detail" listen { filename = "/var/log/freeradius/radacct/detail" load_factor = 10 poll_interval = 1 retry_interval = 30 } } Listening on authentication address * port 1812 Listening on accounting address * port 1813 Listening on detail file /var/log/freeradius/radacct/detail as server copy-acct-to-home-server Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 1.000000 sec Listening on proxy address * port 1814 Waking up in 0.9 seconds. Polling for detail file /var/log/freeradius/radacct/detail Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 0.822371 sec Waking up in 0.8 seconds. Polling for detail file /var/log/freeradius/radacct/detail Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 1.026763 sec Waking up in 1.0 seconds. Polling for detail file /var/log/freeradius/radacct/detail Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 0.833043 sec Waking up in 0.8 seconds. rad_recv: Access-Request packet from host 192.168.145.250 port 58967, id=27, length=177 NAS-Port-Type = Wireless-802.11 Calling-Station-Id = "90:4C:E5:A2:D0:4E" Called-Station-Id = "hotspot1" NAS-Port-Id = "Puente" User-Name = "pruebas" NAS-Port = 2151677968 Acct-Session-Id = "80400010" Framed-IP-Address = 10.59.0.254 Mikrotik-Host-IP = 10.59.0.254 User-Password = "surf" Service-Type = Login-User WISPr-Logoff-URL = "http://10.59.1.1/logout" NAS-Identifier = "fernando" NAS-IP-Address = 192.168.145.250 +- entering group authorize {...} ++[preprocess] returns ok ++[chap] returns noop ++[mschap] returns noop [suffix] No '@' in User-Name = "pruebas", looking up realm NULL [suffix] No such realm "NULL" ++[suffix] returns noop [eap] No EAP-Message, not doing EAP ++[eap] returns noop ++[files] returns noop [sql] expand: %{User-Name} -> pruebas [sql] sql_set_user escaped user --> 'pruebas' rlm_sql (sql): Reserving sql socket id: 3 [sql] expand: SELECT id, username, attribute, value, op FROM radcheck WHERE username = '%{SQL-User-Name}' ORDER BY id -> SELECT id, username, attribute, value, op FROM radcheck WHERE username = 'pruebas' ORDER BY id [sql] User found in radcheck table [sql] expand: SELECT id, username, attribute, value, op FROM radreply WHERE username = '%{SQL-User-Name}' ORDER BY id -> SELECT id, username, attribute, value, op FROM radreply WHERE username = 'pruebas' ORDER BY id [sql] expand: SELECT groupname FROM radusergroup WHERE username = '%{SQL-User-Name}' ORDER BY priority -> SELECT groupname FROM radusergroup WHERE username = 'pruebas' ORDER BY priority rlm_sql (sql): Released sql socket id: 3 ++[sql] returns ok rlm_sqlcounter: Entering module authorize code rlm_sqlcounter: Could not find Check item value pair ++[dailycounter] returns noop rlm_sqlcounter: Entering module authorize code rlm_sqlcounter: Could not find Check item value pair ++[noresetcounter] returns noop rlm_sqlcounter: Entering module authorize code rlm_sqlcounter: Could not find Check item value pair ++[accessperiod] returns noop rlm_sqlcounter: Entering module authorize code rlm_sqlcounter: Could not find Check item value pair ++[counterChilliSpotMaxTotalOctetsDaily] returns noop rlm_sqlcounter: Entering module authorize code rlm_sqlcounter: Could not find Check item value pair ++[counterChilliSpotMaxTotalOctetsWeekly] returns noop rlm_sqlcounter: Entering module authorize code rlm_sqlcounter: Could not find Check item value pair ++[counterChilliSpotMaxTotalOctetsAll] returns noop ++[expiration] returns noop ++[logintime] returns noop ++[pap] returns updated Found Auth-Type = PAP +- entering group PAP {...} [pap] login attempt with password "surf" [pap] Using clear text password "surf" [pap] User authenticated successfully ++[pap] returns ok +- entering group session {...} [radutmp] expand: /var/log/freeradius/radutmp -> /var/log/freeradius/radutmp [radutmp] expand: %{User-Name} -> pruebas ++[radutmp] returns ok Login OK: [pruebas/surf] (from client SurfLabs Phys port 2151677968 cli 90:4C:E5:A2:D0:4E) +- entering group post-auth {...} [sql] expand: %{User-Name} -> pruebas [sql] sql_set_user escaped user --> 'pruebas' [sql] expand: %{User-Password} -> surf [sql] expand: INSERT INTO radpostauth (username, pass, reply, authdate) VALUES ( '%{User-Name}', '%{%{User-Password}:-%{Chap-Password}}', '%{reply:Packet-Type}', '%S') -> INSERT INTO radpostauth (username, pass, reply, authdate) VALUES ( 'pruebas', 'surf', 'Access-Accept', '2011-12-15 09:07:05') rlm_sql (sql) in sql_postauth: query is INSERT INTO radpostauth (username, pass, reply, authdate) VALUES ( 'pruebas', 'surf', 'Access-Accept', '2011-12-15 09:07:05') rlm_sql (sql): Reserving sql socket id: 2 rlm_sql (sql): Released sql socket id: 2 ++[sql] returns ok ++[exec] returns noop Sending Access-Accept of id 27 to 192.168.145.250 port 58967 Idle-Timeout := 60 Finished request 0. Going to the next request Polling for detail file /var/log/freeradius/radacct/detail Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 0.915195 sec Waking up in 0.9 seconds. rad_recv: Accounting-Request packet from host 192.168.145.250 port 43835, id=28, length=140 Acct-Status-Type = Start NAS-Port-Type = Wireless-802.11 Calling-Station-Id = "90:4C:E5:A2:D0:4E" Called-Station-Id = "hotspot1" NAS-Port-Id = "Puente" User-Name = "pruebas" NAS-Port = 2151677968 Acct-Session-Id = "80400010" Framed-IP-Address = 10.59.0.254 Mikrotik-Host-IP = 10.59.0.254 Event-Timestamp = "Jan 2 1970 23:51:57 CET" NAS-Identifier = "fernando" Acct-Delay-Time = 0 NAS-IP-Address = 192.168.145.250 +- entering group preacct {...} ++[preprocess] returns ok [acct_unique] Hashing 'NAS-Port = 2151677968,Client-IP-Address = 192.168.145.250,NAS-IP-Address = 192.168.145.250,Acct-Session-Id = "80400010",User-Name = "pruebas"' [acct_unique] Acct-Unique-Session-ID = "335c953e12024270". ++[acct_unique] returns ok [suffix] No '@' in User-Name = "pruebas", looking up realm NULL [suffix] No such realm "NULL" ++[suffix] returns noop ++[files] returns noop +- entering group accounting {...} [detail] expand: /var/log/freeradius/radacct/detail -> /var/log/freeradius/radacct/detail [detail] /var/log/freeradius/radacct/detail expands to /var/log/freeradius/radacct/detail [detail] Acquired filelock, tried 1 time(s) [detail] expand: %t -> Thu Dec 15 09:07:05 2011 [detail] Released filelock ++[detail] returns ok ++[unix] returns ok [sql] expand: %{User-Name} -> pruebas [sql] sql_set_user escaped user --> 'pruebas' [sql] expand: %{Acct-Delay-Time} -> 0 [sql] expand: INSERT INTO radacct (acctsessionid, acctuniqueid, username, realm, nasipaddress, nasportid, nasporttype, acctstarttime, acctstoptime, acctsessiontime, acctauthentic, connectinfo_start, connectinfo_stop, acctinputoctets, acctoutputoctets, calledstationid, callingstationid, acctterminatecause, servicetype, framedprotocol, framedipaddress, acctstartdelay, acctstopdelay, xascendsessionsvrkey) VALUES ('%{Acct-Session-Id}', '%{Acct-Unique-Session-Id}', '%{SQL-User-Name}', '%{Realm}', '%{NAS-IP-Address}', '%{NAS-Port}', '%{NAS-Port-Type}', '%S', NULL, '0', '%{Acct-Authentic}', '%{Connect-Info}', '', '0', '0', '%{Called-Station-Id}', '%{Calling-Station-Id}', '', '%{Service-Type}', '%{Framed-Protocol}', '%{Framed-IP-Address}', rlm_sql (sql): Reserving sql socket id: 1 rlm_sql (sql): Released sql socket id: 1 ++[sql] returns ok [attr_filter.accounting_response] expand: %{User-Name} -> pruebas attr_filter: Matched entry DEFAULT at line 12 ++[attr_filter.accounting_response] returns updated Sending Accounting-Response of id 28 to 192.168.145.250 port 43835 Finished request 1. Cleaning up request 1 ID 28 with timestamp +4 Going to the next request Waking up in 0.6 seconds. Polling for detail file /var/log/freeradius/radacct/detail Detail - Renaming /var/log/freeradius/radacct/detail -> /var/log/freeradius/radacct/detail.work detail_recv: Read packet from /var/log/freeradius/radacct/detail.work Acct-Status-Type = Start NAS-Port-Type = Wireless-802.11 Calling-Station-Id = "90:4C:E5:A2:D0:4E" Called-Station-Id = "hotspot1" NAS-Port-Id = "Puente" User-Name = "pruebas" NAS-Port = 2151677968 Acct-Session-Id = "80400010" Framed-IP-Address = 10.59.0.254 Mikrotik-Host-IP = 10.59.0.254 Event-Timestamp = "Jan 2 1970 23:51:57 CET" NAS-Identifier = "fernando" Acct-Delay-Time = 1 NAS-IP-Address = 192.168.145.250 Acct-Unique-Session-Id = "335c953e12024270" Packet-Original-Timestamp = "Dec 15 2011 09:07:05 CET" server copy-acct-to-home-server { +- entering group preacct {...} ++[preprocess] returns ok [suffix] No '@' in User-Name = "pruebas", looking up realm NULL [suffix] No such realm "NULL" ++[suffix] returns noop ++[files] returns noop +- entering group accounting {...} ++[ok] returns ok } # server copy-acct-to-home-server Finished request 2. Cleaning up request 2 ID 45898 with timestamp +5 Going to the next request Detail listener /var/log/freeradius/radacct/detail state replied signalled 0 waiting 0.000387 sec Detail - unlinking /var/log/freeradius/radacct/detail.work Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 1.132298 sec Waking up in 1.1 seconds. Polling for detail file /var/log/freeradius/radacct/detail Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 0.876729 sec Waking up in 0.8 seconds. Polling for detail file /var/log/freeradius/radacct/detail Detail listener /var/log/freeradius/radacct/detail state unopened signalled 0 waiting 1.227658 sec Waking up in 1.2 seconds. ^C/ ****************************************************************************** Server B: /FreeRADIUS Version 2.1.8, for host i486-pc-linux-gnu, built on Jan 5 2010 at 02:49:11 Copyright (C) 1999-2009 The FreeRADIUS server project and contributors. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. You may redistribute copies of FreeRADIUS under the terms of the GNU General Public License v2. Starting - reading configuration files ... including configuration file /etc/freeradius/radiusd.conf including configuration file /etc/freeradius/proxy.conf including configuration file /etc/freeradius/clients.conf including files in directory /etc/freeradius/modules/ including configuration file /etc/freeradius/modules/detail including configuration file /etc/freeradius/modules/attr_filter including configuration file /etc/freeradius/modules/radutmp including configuration file /etc/freeradius/modules/detail.log including configuration file /etc/freeradius/modules/digest including configuration file /etc/freeradius/modules/pap including configuration file /etc/freeradius/modules/otp including configuration file /etc/freeradius/modules/detail.example.com including configuration file /etc/freeradius/modules/acct_unique including configuration file /etc/freeradius/modules/inner-eap including configuration file /etc/freeradius/modules/sql_log including configuration file /etc/freeradius/modules/ldap including configuration file /etc/freeradius/modules/perl including configuration file /etc/freeradius/modules/realm including configuration file /etc/freeradius/modules/unix including configuration file /etc/freeradius/modules/smbpasswd including configuration file /etc/freeradius/modules/always including configuration file /etc/freeradius/modules/files including configuration file /etc/freeradius/modules/sqlcounter_expire_on_login including configuration file /etc/freeradius/modules/pam including configuration file /etc/freeradius/modules/wimax including configuration file /etc/freeradius/modules/preprocess including configuration file /etc/freeradius/modules/ippool including configuration file /etc/freeradius/modules/mac2vlan including configuration file /etc/freeradius/modules/counter including configuration file /etc/freeradius/modules/passwd including configuration file /etc/freeradius/modules/checkval including configuration file /etc/freeradius/modules/policy including configuration file /etc/freeradius/modules/echo including configuration file /etc/freeradius/modules/logintime including configuration file /etc/freeradius/modules/attr_rewrite including configuration file /etc/freeradius/modules/sradutmp including configuration file /etc/freeradius/modules/smsotp including configuration file /etc/freeradius/modules/expr including configuration file /etc/freeradius/modules/mac2ip including configuration file /etc/freeradius/modules/etc_group including configuration file /etc/freeradius/modules/chap including configuration file /etc/freeradius/modules/expiration including configuration file /etc/freeradius/modules/cui including configuration file /etc/freeradius/modules/mschap including configuration file /etc/freeradius/modules/ntlm_auth including configuration file /etc/freeradius/modules/exec including configuration file /etc/freeradius/modules/krb5 including configuration file /etc/freeradius/modules/linelog including configuration file /etc/freeradius/eap.conf including configuration file /etc/freeradius/sql.conf including configuration file /etc/freeradius/sql/mysql/dialup.conf including configuration file /etc/freeradius/sql/mysql/counter.conf including configuration file /etc/freeradius/policy.conf including files in directory /etc/freeradius/sites-enabled/ including configuration file /etc/freeradius/sites-enabled/inner-tunnel including configuration file /etc/freeradius/sites-enabled/default main { user = "freerad" group = "freerad" allow_core_dumps = no } including dictionary file /etc/freeradius/dictionary main { prefix = "/usr" localstatedir = "/var" logdir = "/var/log/freeradius" libdir = "/usr/lib/freeradius" radacctdir = "/var/log/freeradius/radacct" hostname_lookups = no max_request_time = 30 cleanup_delay = 5 max_requests = 1024 pidfile = "/var/run/freeradius/freeradius.pid" checkrad = "/usr/sbin/checkrad" debug_level = 0 proxy_requests = yes log { stripped_names = no auth = no auth_badpass = no auth_goodpass = no } security { max_attributes = 200 reject_delay = 1 status_server = yes } } radiusd: #### Loading Realms and Home Servers #### proxy server { retry_delay = 5 retry_count = 3 default_fallback = no dead_time = 120 wake_all_if_all_dead = no } home_server localhost { ipaddr = 127.0.0.1 port = 1812 type = "auth" secret = "testing123" response_window = 20 max_outstanding = 65536 require_message_authenticator = no zombie_period = 40 status_check = "status-server" ping_interval = 30 check_interval = 30 num_answers_to_alive = 3 num_pings_to_alive = 3 revive_interval = 120 status_check_timeout = 4 irt = 2 mrt = 16 mrc = 5 mrd = 30 } home_server_pool my_auth_failover { type = fail-over home_server = localhost } realm example.com { auth_pool = my_auth_failover } realm LOCAL { } radiusd: #### Loading Clients #### client localhost { ipaddr = 127.0.0.1 require_message_authenticator = no secret = "testing123" nastype = "other" } client dynamic { ipaddr = 192.168.144.0 netmask = 24 require_message_authenticator = no dynamic_clients = "dynamic_client_server" lifetime = 86400 } radiusd: #### Instantiating modules #### instantiate { Module: Linked to module rlm_exec Module: Instantiating exec exec { wait = no input_pairs = "request" shell_escape = yes } Module: Linked to module rlm_expr Module: Instantiating expr Module: Linked to module rlm_expiration Module: Instantiating expiration expiration { reply-message = "Password Has Expired " } Module: Linked to module rlm_logintime Module: Instantiating logintime logintime { reply-message = "You are calling outside your allowed timespan " minimum-timeout = 60 } } radiusd: #### Loading Virtual Servers #### server dynamic_client_server { modules { Module: Checking authorize {...} for more modules to load Module: Linked to module rlm_sql Module: Instantiating sql sql { driver = "rlm_sql_mysql" server = "X.X.X.X" port = "" login = "login" password = "password" radius_db = "radius" read_groups = yes sqltrace = no sqltracefile = "/var/log/freeradius/sqltrace.sql" readclients = yes deletestalesessions = yes num_sql_socks = 5 lifetime = 0 max_queries = 0 sql_user_name = "%{User-Name}" default_user_profile = "" nas_query = "SELECT id, nasname, shortname, type, secret FROM nas" authorize_check_query = "SELECT id, username, attribute, value, op FROM radcheck WHERE username = '%{SQL-User-Name}' ORDER BY id" authorize_reply_query = "SELECT id, username, attribute, value, op FROM radreply WHERE username = '%{SQL-User-Name}' ORDER BY id" authorize_group_check_query = "SELECT id, groupname, attribute, Value, op FROM radgroupcheck WHERE groupname = '%{Sql-Group}' ORDER BY id" authorize_group_reply_query = "SELECT id, groupname, attribute, value, op FROM radgroupreply WHERE groupname = '%{Sql-Group}' ORDER BY id" accounting_onoff_query = " UPDATE radacct SET acctstoptime = '%S', acctsessiontime = unix_timestamp('%S') - unix_timestamp(acctstarttime), acctterminatecause = '%{Acct-Terminate-Cause}', acctstopdelay = %{%{Acct-Delay-Time}:-0} WHERE acctstoptime IS NULL AND nasipaddress = '%{NAS-IP-Address}' AND acctstarttime <= '%S'" accounting_update_query = " UPDATE radacct SET framedipaddress = '%{Framed-IP-Address}', acctsessiontime = '%{Acct-Session-Time}', acctinputoctets = '%{%{Acct-Input-Gigawords}:-0}' << 32 | '%{%{Acct-Input-Octets}:-0}', acctoutputoctets = '%{%{Acct-Output-Gigawords}:-0}' << 32 | '%{%{Acct-Output-Octets}:-0}' WHERE acctsessionid = '%{Acct-Session-Id}' AND username = '%{SQL-User-Name}' AND nasipaddress = '%{NAS-IP-Address}'" accounting_update_query_alt = " INSERT INTO radacct (acctsessionid, acctuniqueid, username, realm, nasipaddress, nasportid, nasporttype, acctstarttime, acctsessiontime, acctauthentic, connectinfo_start, acctinputoctets, acctoutputoctets, calledstationid, callingstationid, servicetype, framedprotocol, framedipaddress, acctstartdelay, xascendsessionsvrkey) VALUES ('%{Acct-Session-Id}', '%{Acct-Unique-Session-Id}', '%{SQL-User-Name}', '%{Realm}', '%{NAS-IP-Address}', '%{NAS-Port}', '%{NAS-Port-Type}', DATE_SUB('%S', INTERVAL (%{%{Acct-Session-Time}:-0} + %{%{Acct-Delay-Time}:-0}) SECOND), '%{Acct-Session-Time}', '%{Acct-Authentic}', '', '%{%{Acct-Input-Gigawords}:-0}' << 32 | '%{%{Acct-Input-Octets}:-0}', '%{%{Acct-Output-Gigawords}:-0}' << 32 | '%{%{Acct-Output-Octets}:-0}', '%{Called-Station-Id}', '%{Calling-Station-Id}', '%{Service-Type}', '%{Framed-Protocol}', '%{Framed-IP-Address}', '0', '%{X-Ascend-Session-Svr-Key}')" accounting_start_query = " INSERT INTO radacct (acctsessionid, acctuniqueid, username, realm, nasipaddress, nasportid, nasporttype, acctstarttime, acctstoptime, acctsessiontime, acctauthentic, connectinfo_start, connectinfo_stop, acctinputoctets, acctoutputoctets, calledstationid, callingstationid, acctterminatecause, servicetype, framedprotocol, framedipaddress, acctstartdelay, acctstopdelay, xascendsessionsvrkey) VALUES ('%{Acct-Session-Id}', '%{Acct-Unique-Session-Id}', '%{SQL-User-Name}', '%{Realm}', '%{NAS-IP-Address}', '%{NAS-Port}', '%{NAS-Port-Type}', '%S', NULL, '0', '%{Acct-Authentic}', '%{Connect-Info}', '', '0', '0', '%{Called-Station-Id}', '%{Calling-Station-Id}', '', '%{Service-Type}', '%{Framed-Protocol}', '%{Framed-IP-Address}', '%{%{Acct-Delay-Time}:-0}', '0', '%{X-Ascend-Session-Svr-Key}')" accounting_start_query_alt = " UPDATE radacct SET acctstarttime = '%S', acctstartdelay = '%{%{Acct-Delay-Time}:-0}', connectinfo_start = '%{Connect-Info}' WHERE acctsessionid = '%{Acct-Session-Id}' AND username = '%{SQL-User-Name}' AND nasipaddress = '%{NAS-IP-Address}'" accounting_stop_query = " UPDATE radacct SET acctstoptime = '%S', acctsessiontime = '%{Acct-Session-Time}', acctinputoctets = '%{%{Acct-Input-Gigawords}:-0}' << 32 | '%{%{Acct-Input-Octets}:-0}', acctoutputoctets = '%{%{Acct-Output-Gigawords}:-0}' << 32 | '%{%{Acct-Output-Octets}:-0}', acctterminatecause = '%{Acct-Terminate-Cause}', acctstopdelay = '%{%{Acct-Delay-Time}:-0}', connectinfo_stop = '%{Connect-Info}' WHERE acctsessionid = '%{Acct-Session-Id}' AND username = '%{SQL-User-Name}' AND nasipaddress = '%{NAS-IP-Address}'" accounting_stop_query_alt = " INSERT INTO radacct (acctsessionid, acctuniqueid, username, realm, nasipaddress, nasportid, nasporttype, acctstarttime, acctstoptime, acctsessiontime, acctauthentic, connectinfo_start, connectinfo_stop, acctinputoctets, acctoutputoctets, calledstationid, callingstationid, acctterminatecause, servicetype, framedprotocol, framedipaddress, acctstartdelay, acctstopdelay) VALUES ('%{Acct-Session-Id}', '%{Acct-Unique-Session-Id}', '%{SQL-User-Name}', '%{Realm}', '%{NAS-IP-Address}', '%{NAS-Port}', '%{NAS-Port-Type}', DATE_SUB('%S', INTERVAL (%{%{Acct-Session-Time}:-0} + %{%{Acct-Delay-Time}:-0}) SECOND), '%S', '%{Acct-Session-Time}', '%{Acct-Authentic}', '', '%{Connect-Info}', '%{%{Acct-Input-Gigawords}:-0}' << 32 | '%{%{Acct-Input-Octets}:-0}', '%{%{Acct-Output-Gigawords}:-0}' << 32 | '%{%{Acct-Output-Octets}:-0}', '%{Called-Station-Id}', '%{Calling-Station-Id}', '%{Acct-Terminate-Cause}', '%{Service-Type}', '%{Framed-Protocol}', '%{Framed-IP-Address}', '0', '%{%{Acct-Delay-Time}:-0}')" group_membership_query = "SELECT groupname FROM radusergroup WHERE username = '%{SQL-User-Name}' ORDER BY priority" connect_failure_retry_delay = 60 simul_count_query = "" simul_verify_query = "SELECT radacctid, acctsessionid, username, nasipaddress, nasportid, framedipaddress, callingstationid, framedprotocol FROM radacct WHERE username = '%{SQL-User-Name}' AND acctstoptime IS NULL" postauth_query = "INSERT INTO radpostauth (username, pass, reply, authdate) VALUES ( '%{User-Name}', '%{%{User-Password}:-%{Chap-Password}}', '%{reply:Packet-Type}', '%S')" safe-characters = "@abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_: /" } rlm_sql (sql): Driver rlm_sql_mysql (module rlm_sql_mysql) loaded and linked rlm_sql (sql): Attempting to connect to login@X.X.X.X:/radius rlm_sql (sql): starting 0 rlm_sql (sql): Attempting to connect rlm_sql_mysql #0 rlm_sql_mysql: Starting connect to MySQL server for #0 rlm_sql (sql): Connected new DB handle, #0 rlm_sql (sql): starting 1 rlm_sql (sql): Attempting to connect rlm_sql_mysql #1 rlm_sql_mysql: Starting connect to MySQL server for #1 rlm_sql (sql): Connected new DB handle, #1 rlm_sql (sql): starting 2 rlm_sql (sql): Attempting to connect rlm_sql_mysql #2 rlm_sql_mysql: Starting connect to MySQL server for #2 rlm_sql (sql): Connected new DB handle, #2 rlm_sql (sql): starting 3 rlm_sql (sql): Attempting to connect rlm_sql_mysql #3 rlm_sql_mysql: Starting connect to MySQL server for #3 rlm_sql (sql): Connected new DB handle, #3 rlm_sql (sql): starting 4 rlm_sql (sql): Attempting to connect rlm_sql_mysql #4 rlm_sql_mysql: Starting connect to MySQL server for #4 rlm_sql (sql): Connected new DB handle, #4 rlm_sql (sql): Processing generate_sql_clients rlm_sql (sql) in generate_sql_clients: query is SELECT id, nasname, shortname, type, secret FROM nas rlm_sql (sql): Reserving sql socket id: 4 rlm_sql (sql): Adding client 192.168.145.250 (SurfLabs Phys, server=<none>) to clients list rlm_sql (sql): Read entry nasname=192.168.144.250,shortname=SurfLabs Virt,secret=testing123 rlm_sql (sql): Adding client 192.168.144.250 (SurfLabs Virt, server=<none>) to clients list rlm_sql (sql): Released sql socket id: 4 Module: Linked to module rlm_always Module: Instantiating ok always ok { rcode = "ok" simulcount = 0 mpp = no } } # modules } # server server inner-tunnel { modules { Module: Checking authenticate {...} for more modules to load Module: Linked to module rlm_pap Module: Instantiating pap pap { encryption_scheme = "auto" auto_header = no } Module: Linked to module rlm_chap Module: Instantiating chap Module: Linked to module rlm_mschap Module: Instantiating mschap mschap { use_mppe = yes require_encryption = no require_strong = no with_ntdomain_hack = no } Module: Linked to module rlm_unix Module: Instantiating unix unix { radwtmp = "/var/log/freeradius/radwtmp" } Module: Linked to module rlm_eap Module: Instantiating eap eap { default_eap_type = "md5" timer_expire = 60 ignore_unknown_eap_types = no cisco_accounting_username_bug = no max_sessions = 4096 } Module: Linked to sub-module rlm_eap_md5 Module: Instantiating eap-md5 Module: Linked to sub-module rlm_eap_leap Module: Instantiating eap-leap Module: Linked to sub-module rlm_eap_gtc Module: Instantiating eap-gtc gtc { challenge = "Password: " auth_type = "PAP" } Module: Linked to sub-module rlm_eap_tls Module: Instantiating eap-tls tls { rsa_key_exchange = no dh_key_exchange = yes rsa_key_length = 512 dh_key_length = 512 verify_depth = 0 pem_file_type = yes private_key_file = "/etc/freeradius/certs/server.key" certificate_file = "/etc/freeradius/certs/server.pem" CA_file = "/etc/freeradius/certs/ca.pem" private_key_password = "whatever" dh_file = "/etc/freeradius/certs/dh" random_file = "/etc/freeradius/certs/random" fragment_size = 1024 include_length = yes check_crl = no cipher_list = "DEFAULT" make_cert_command = "/etc/freeradius/certs/bootstrap" cache { enable = no lifetime = 24 max_entries = 255 } } Module: Linked to sub-module rlm_eap_ttls Module: Instantiating eap-ttls ttls { default_eap_type = "md5" copy_request_to_tunnel = no use_tunneled_reply = no virtual_server = "inner-tunnel" include_length = yes } Module: Linked to sub-module rlm_eap_peap Module: Instantiating eap-peap peap { default_eap_type = "mschapv2" copy_request_to_tunnel = no use_tunneled_reply = no proxy_tunneled_request_as_eap = yes virtual_server = "inner-tunnel" } Module: Linked to sub-module rlm_eap_mschapv2 Module: Instantiating eap-mschapv2 mschapv2 { with_ntdomain_hack = no } Module: Checking authorize {...} for more modules to load Module: Linked to module rlm_realm Module: Instantiating suffix realm suffix { format = "suffix" delimiter = "@" ignore_default = no ignore_null = no } Module: Linked to module rlm_files Module: Instantiating files files { usersfile = "/etc/freeradius/users" acctusersfile = "/etc/freeradius/acct_users" preproxy_usersfile = "/etc/freeradius/preproxy_users" compat = "no" } Module: Checking session {...} for more modules to load Module: Linked to module rlm_radutmp Module: Instantiating radutmp radutmp { filename = "/var/log/freeradius/radutmp" username = "%{User-Name}" case_sensitive = yes check_with_nas = yes perm = 384 callerid = yes } Module: Checking post-proxy {...} for more modules to load Module: Checking post-auth {...} for more modules to load Module: Linked to module rlm_attr_filter Module: Instantiating attr_filter.access_reject attr_filter attr_filter.access_reject { attrsfile = "/etc/freeradius/attrs.access_reject" key = "%{User-Name}" } } # modules } # server server { modules { Module: Checking authenticate {...} for more modules to load Module: Checking authorize {...} for more modules to load Module: Linked to module rlm_preprocess Module: Instantiating preprocess preprocess { huntgroups = "/etc/freeradius/huntgroups" hints = "/etc/freeradius/hints" with_ascend_hack = no ascend_channels_per_line = 23 with_ntdomain_hack = no with_specialix_jetstream_hack = no with_cisco_vsa_hack = no with_alvarion_vsa_hack = no } Module: Linked to module rlm_sqlcounter Module: Instantiating dailycounter sqlcounter dailycounter { counter-name = "Daily-Session-Time" check-name = "Max-Daily-Session" reply-name = "Session-Timeout" key = "User-Name" sqlmod-inst = "sql" query = "SELECT IFNULL( SUM(acctsessiontime - GREATEST((%b - UNIX_TIMESTAMP(acctstarttime)), 0)),0 ) FROM radacct WHERE username = '%{%k}' AND UNIX_TIMESTAMP(acctstarttime) + acctsessiontime > '%b'" reset = "daily" safe-characters = "@abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_: /" } rlm_sqlcounter: Reply attribute Session-Timeout is number 27 rlm_sqlcounter: Counter attribute Daily-Session-Time is number 11273 rlm_sqlcounter: Check attribute Max-Daily-Session is number 11274 rlm_sqlcounter: Current Time: 1323865229 [2011-12-14 13:20:29], Next reset 1323903600 [2011-12-15 00:00:00] rlm_sqlcounter: Current Time: 1323865229 [2011-12-14 13:20:29], Prev reset 1323817200 [2011-12-14 00:00:00] Module: Instantiating noresetcounter sqlcounter noresetcounter { counter-name = "Max-All-Session-Time" check-name = "Max-All-Session" key = "User-Name" sqlmod-inst = "sql" query = "SELECT IFNULL(SUM(AcctSessionTime),0) FROM radacct WHERE UserName='%{%k}'" reset = "never" safe-characters = "@abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_: /" } rlm_sqlcounter: Reply attribute set to Session-Timeout. rlm_sqlcounter: Counter attribute Max-All-Session-Time is number 11275 rlm_sqlcounter: Check attribute Max-All-Session is number 11276 rlm_sqlcounter: Current Time: 1323865229 [2011-12-14 13:20:29], Next reset 0 [2011-12-14 13:00:00] rlm_sqlcounter: Current Time: 1323865229 [2011-12-14 13:20:29], Prev reset 0 [2011-12-14 13:00:00] Module: Instantiating accessperiod sqlcounter accessperiod { counter-name = "Max-Access-Period-Never" check-name = "Access-Period" key = "User-Name" sqlmod-inst = "sql" query = "SELECT IF(COUNT(radacctid>=1),(UNIX_TIMESTAMP() - IFNULL(UNIX_TIMESTAMP(AcctStartTime),0)),0) FROM radacct WHERE UserName = '%{%k}' AND AcctSessionTime >= 1 ORDER BY AcctStartTime LIMIT 1" reset = "never" safe-characters = "@abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_: /" } rlm_sqlcounter: Reply attribute set to Session-Timeout. rlm_sqlcounter: Counter attribute Max-Access-Period-Never is number 11277 rlm_sqlcounter: Check attribute Access-Period is number 11278 rlm_sqlcounter: Current Time: 1323865229 [2011-12-14 13:20:29], Next reset 0 [2011-12-14 13:00:00] rlm_sqlcounter: Current Time: 1323865229 [2011-12-14 13:20:29], Prev reset 0 [2011-12-14 13:00:00] Module: Instantiating counterChilliSpotMaxTotalOctetsDaily sqlcounter counterChilliSpotMaxTotalOctetsDaily { counter-name = "ChilliSpot-Max-Total-Octets-Daily" check-name = "CS-Total-Octets-Daily" reply-name = "ChilliSpot-Max-Total-Octets" key = "User-Name" sqlmod-inst = "sql" query = "SELECT IFNULL((SUM(AcctInputOctets + AcctOutputOctets)),0) FROM radacct WHERE UserName='%{%k}' AND UNIX_TIMESTAMP(AcctStartTime) + AcctSessionTime > '%b'" reset = "daily" safe-characters = "@abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_: /" } rlm_sqlcounter: Reply attribute ChilliSpot-Max-Total-Octets is number 954138627 rlm_sqlcounter: Counter attribute ChilliSpot-Max-Total-Octets-Daily is number 11279 rlm_sqlcounter: Check attribute CS-Total-Octets-Daily is number 11280 rlm_sqlcounter: Current Time: 1323865229 [2011-12-14 13:20:29], Next reset 1323903600 [2011-12-15 00:00:00] rlm_sqlcounter: Current Time: 1323865229 [2011-12-14 13:20:29], Prev reset 1323817200 [2011-12-14 00:00:00] Module: Instantiating counterChilliSpotMaxTotalOctetsWeekly sqlcounter counterChilliSpotMaxTotalOctetsWeekly { counter-name = "ChilliSpot-Max-Total-Octets-Weekly" check-name = "CS-Total-Octets-Weekly" reply-name = "ChilliSpot-Max-Total-Octets" key = "User-Name" sqlmod-inst = "sql" query = "SELECT IFNULL((SUM(AcctInputOctets + AcctOutputOctets)),0) FROM radacct WHERE UserName='%{%k}' AND UNIX_TIMESTAMP(AcctStartTime) + AcctSessionTime > '%b'" reset = "weekly" safe-characters = "@abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_: /" } rlm_sqlcounter: Reply attribute ChilliSpot-Max-Total-Octets is number 954138627 rlm_sqlcounter: Counter attribute ChilliSpot-Max-Total-Octets-Weekly is number 11281 rlm_sqlcounter: Check attribute CS-Total-Octets-Weekly is number 11282 rlm_sqlcounter: Current Time: 1323865229 [2011-12-14 13:20:29], Next reset 1324162800 [2011-12-18 00:00:00] rlm_sqlcounter: Current Time: 1323865229 [2011-12-14 13:20:29], Prev reset 1323471600 [2011-12-10 00:00:00] Module: Instantiating counterChilliSpotMaxTotalOctetsAll sqlcounter counterChilliSpotMaxTotalOctetsAll { counter-name = "ChilliSpot-Max-Total-Octets" check-name = "CS-Total-Octets" reply-name = "ChilliSpot-Max-Total-Octets" key = "User-Name" sqlmod-inst = "sql" query = "SELECT IFNULL((SUM(AcctInputOctets + AcctOutputOctets)),0) FROM radacct WHERE UserName='%{%k}' AND UNIX_TIMESTAMP(AcctStartTime) + AcctSessionTime > '%b'" reset = "never" safe-characters = "@abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_: /" } rlm_sqlcounter: Reply attribute ChilliSpot-Max-Total-Octets is number 954138627 rlm_sqlcounter: Counter attribute ChilliSpot-Max-Total-Octets is number 954138627 rlm_sqlcounter: Check attribute CS-Total-Octets is number 11283 rlm_sqlcounter: Current Time: 1323865229 [2011-12-14 13:20:29], Next reset 0 [2011-12-14 13:00:00] rlm_sqlcounter: Current Time: 1323865229 [2011-12-14 13:20:29], Prev reset 0 [2011-12-14 13:00:00] Module: Checking preacct {...} for more modules to load Module: Linked to module rlm_acct_unique Module: Instantiating acct_unique acct_unique { key = "User-Name, Acct-Session-Id, NAS-IP-Address, Client-IP-Address, NAS-Port" } Module: Checking accounting {...} for more modules to load Module: Linked to module rlm_detail Module: Instantiating detail detail { detailfile = "/var/log/freeradius/radacct/%{Client-IP-Address}/detail-%Y%m%d" header = "%t" detailperm = 384 dirperm = 493 locking = no log_packet_header = no } Module: Instantiating attr_filter.accounting_response attr_filter attr_filter.accounting_response { attrsfile = "/etc/freeradius/attrs.accounting_response" key = "%{User-Name}" } Module: Checking session {...} for more modules to load Module: Checking post-proxy {...} for more modules to load Module: Checking post-auth {...} for more modules to load } # modules } # server radiusd: #### Opening IP addresses and Ports #### listen { type = "auth" ipaddr = * port = 0 } listen { type = "acct" ipaddr = * port = 0 } Listening on authentication address * port 1812 Listening on accounting address * port 1813 Listening on proxy address * port 1814 Ready to process requests. ^C/ -- View this message in context: http://freeradius.1045715.n5.nabble.com/FreeRADIUS-Accounting-data-sync-tp50... Sent from the FreeRadius - User mailing list archive at Nabble.com.
On Thu, Dec 15, 2011 at 3:52 PM, KatsuroKurosaki <joaquimsb89@gmail.com> wrote:
realm radrelay { acct_pool = radrelay }
... so that is your realm
server copy-acct-to-home-server { modules { Module: Checking preacct {...} for more modules to load Module: Linked to module rlm_preprocess Module: Instantiating preprocess preprocess { huntgroups = "/etc/freeradius/huntgroups" hints = "/etc/freeradius/hints" with_ascend_hack = no ascend_channels_per_line = 23 with_ntdomain_hack = no with_specialix_jetstream_hack = no with_cisco_vsa_hack = no with_alvarion_vsa_hack = no } Module: Checking accounting {...} for more modules to load } # modules } # server
... and that is your copy-acct-to-home-server
Polling for detail file /var/log/freeradius/radacct/detail Detail - Renaming /var/log/freeradius/radacct/detail -> /var/log/freeradius/radacct/detail.work detail_recv: Read packet from /var/log/freeradius/radacct/detail.work Acct-Status-Type = Start NAS-Port-Type = Wireless-802.11 Calling-Station-Id = "90:4C:E5:A2:D0:4E" Called-Station-Id = "hotspot1" NAS-Port-Id = "Puente" User-Name = "pruebas"
... which has successfully read the detail file. So far seems so good.
server copy-acct-to-home-server { +- entering group preacct {...} ++[preprocess] returns ok [suffix] No '@' in User-Name = "pruebas", looking up realm NULL [suffix] No such realm "NULL" ++[suffix] returns noop ++[files] returns noop +- entering group accounting {...} ++[ok] returns ok } # server copy-acct-to-home-server
That's it? Try using something like this on copy-acct-to-home-server's accounting section accounting { if ("%{Packet-Src-IP-Address}" != "put-ip-address-of-server-B-here") { update control { Proxy-To-Realm := "whatever-realm-you've-setup-for-server-B-on-proxy.conf" } } } -- Fajar
Fajar A. Nugraha-2 wrote
server copy-acct-to-home-server { +- entering group preacct {...} ++[preprocess] returns ok [suffix] No '@' in User-Name = "pruebas", looking up realm NULL [suffix] No such realm "NULL" ++[suffix] returns noop ++[files] returns noop +- entering group accounting {...} ++[ok] returns ok } # server copy-acct-to-home-server
That's it?
Try using something like this on copy-acct-to-home-server's accounting section
accounting { if ("%{Packet-Src-IP-Address}" != "put-ip-address-of-server-B-here") { update control { Proxy-To-Realm := "whatever-realm-you've-setup-for-server-B-on-proxy.conf" } } }
Perfect! :D Thank you very much Fajar A. Nugraha-2 and Alan DeKok. Best regards from Spain -- View this message in context: http://freeradius.1045715.n5.nabble.com/FreeRADIUS-Accounting-data-sync-tp50... Sent from the FreeRadius - User mailing list archive at Nabble.com.
participants (3)
-
Alan DeKok -
Fajar A. Nugraha -
KatsuroKurosaki