[prev in list] [next in list] [prev in thread] [next in thread] 

List:       freeradius-users
Subject:    LDAP without a User-Password (2.1.8)
From:       Craig Campbell <craig.campbell () ccraft ! ca>
Date:       2010-04-29 16:18:04
Message-ID: 38AB676B2F3E4008AD510E28C19CE238 () craigPC
[Download RAW message or body]

[Attachment #2 (multipart/alternative)]


Hi,
    I have a requirement for 'authentication' via LDAP.  Only a User-Name is passed \
to freeradius.   The requirement is to perform an LDAP lookup, and if the user \
exists, return a couple of other values in the LDAP database for that user. If the \
user does not exist, reject.

I have the LDAP lookups working, but I cannot figure out how to tell freeradius to \
skip the password check (authorization?).

I am using radcleint to test this via,
    echo "User-Name=2975600001" | /usr/local/bin/radclient -s 127.0.0.1 auth \
testing123

Below is a debug of this test.

FreeRADIUS Version 2.1.8, for host i686-pc-linux-gnu, built on Apr 27 2010 at \
14:45:30 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 /usr/local/etc/raddb/radiusd.conf
including configuration file /usr/local/etc/raddb/proxy.conf
including configuration file /usr/local/etc/raddb/clients.conf
including files in directory /usr/local/etc/raddb/modules/
including configuration file /usr/local/etc/raddb/modules/echo
including configuration file /usr/local/etc/raddb/modules/inner-eap
including configuration file /usr/local/etc/raddb/modules/logintime
including configuration file /usr/local/etc/raddb/modules/perl
including configuration file /usr/local/etc/raddb/modules/cui
including configuration file /usr/local/etc/raddb/modules/expr
including configuration file /usr/local/etc/raddb/modules/smsotp
including configuration file /usr/local/etc/raddb/modules/pap
including configuration file /usr/local/etc/raddb/modules/sql_log
including configuration file /usr/local/etc/raddb/modules/mschap
including configuration file /usr/local/etc/raddb/modules/sqlcounter_expire_on_login
including configuration file /usr/local/etc/raddb/modules/digest
including configuration file /usr/local/etc/raddb/modules/policy
including configuration file /usr/local/etc/raddb/modules/preprocess
including configuration file /usr/local/etc/raddb/modules/krb5
including configuration file /usr/local/etc/raddb/modules/detail
including configuration file /usr/local/etc/raddb/modules/always
including configuration file /usr/local/etc/raddb/modules/exec
including configuration file /usr/local/etc/raddb/modules/mac2vlan
including configuration file /usr/local/etc/raddb/modules/unix
including configuration file /usr/local/etc/raddb/modules/realm
including configuration file /usr/local/etc/raddb/modules/wimax
including configuration file /usr/local/etc/raddb/modules/acct_unique
including configuration file /usr/local/etc/raddb/modules/otp
including configuration file /usr/local/etc/raddb/modules/expiration
including configuration file /usr/local/etc/raddb/modules/detail.example.com
including configuration file /usr/local/etc/raddb/modules/pam
including configuration file /usr/local/etc/raddb/modules/checkval
including configuration file /usr/local/etc/raddb/modules/ntlm_auth
including configuration file /usr/local/etc/raddb/modules/smbpasswd
including configuration file /usr/local/etc/raddb/modules/chap
including configuration file /usr/local/etc/raddb/modules/mac2ip
including configuration file /usr/local/etc/raddb/modules/radutmp
including configuration file /usr/local/etc/raddb/modules/ippool
including configuration file /usr/local/etc/raddb/modules/ldap
including configuration file /usr/local/etc/raddb/modules/linelog
including configuration file /usr/local/etc/raddb/modules/sradutmp
including configuration file /usr/local/etc/raddb/modules/attr_filter
including configuration file /usr/local/etc/raddb/modules/passwd
including configuration file /usr/local/etc/raddb/modules/detail.log
including configuration file /usr/local/etc/raddb/modules/etc_group
including configuration file /usr/local/etc/raddb/modules/files
including configuration file /usr/local/etc/raddb/modules/ldap.orig
including configuration file /usr/local/etc/raddb/modules/attr_rewrite
including configuration file /usr/local/etc/raddb/modules/counter
including configuration file /usr/local/etc/raddb/eap.conf
including configuration file /usr/local/etc/raddb/policy.conf
including files in directory /usr/local/etc/raddb/sites-enabled/
including configuration file /usr/local/etc/raddb/sites-enabled/default
including configuration file /usr/local/etc/raddb/sites-enabled/inner-tunnel
including configuration file /usr/local/etc/raddb/sites-enabled/control-socket
main {
        user = "radiusd"
        group = "radiusd"
        allow_core_dumps = no
}
including dictionary file /usr/local/etc/raddb/dictionary
main {
        prefix = "/usr/local"
        localstatedir = "/var"
        logdir = "/var/log/radius"
        libdir = "/usr/local/lib"
        radacctdir = "/var/log/radius/radacct"
        hostname_lookups = no
        max_request_time = 30
        cleanup_delay = 5
        max_requests = 1024
        pidfile = "/var/run/radiusd/radiusd.pid"
        checkrad = "/usr/local/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"
        shortname = "localhost"
        nastype = "other"
 }
 client 172.16.1.218 {
        require_message_authenticator = no
        secret = "somecompanysecret"
        shortname = "GGSN-radius-1"
 }
 client 172.16.1.222 {
        require_message_authenticator = no
        secret = "somecompanysecret"
        shortname = "GGSN-radius-2"
 }
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 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/radius/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 = "/usr/local/etc/raddb/certs/server.pem"
        certificate_file = "/usr/local/etc/raddb/certs/server.pem"
        CA_file = "/usr/local/etc/raddb/certs/ca.pem"
        private_key_password = "whatever"
        dh_file = "/usr/local/etc/raddb/certs/dh"
        random_file = "/usr/local/etc/raddb/certs/random"
        fragment_size = 1024
        include_length = yes
        check_crl = no
        cipher_list = "DEFAULT"
        make_cert_command = "/usr/local/etc/raddb/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 = "/usr/local/etc/raddb/users"
        acctusersfile = "/usr/local/etc/raddb/acct_users"
        preproxy_usersfile = "/usr/local/etc/raddb/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/radius/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 = "/usr/local/etc/raddb/attrs.access_reject"
        key = "%{User-Name}"
  }
 } # modules
} # server
server {
 modules {
 Module: Checking authenticate {...} for more modules to load
 Module: Linked to module rlm_ldap
 Module: Instantiating ldap
  ldap {
        server = "172.16.1.52"
        port = 389
        password = "secretpassword"
        identity = "cn=secretpassword"
        net_timeout = 1
        timeout = 4
        timelimit = 3
        tls_mode = no
        start_tls = no
        tls_require_cert = "allow"
   tls {
        start_tls = no
        require_cert = "allow"
   }
        basedn = "ou=People,o=SOMECOMPANY  ,o=somecompanynetwork"
        filter = "(&(uid=%{%{Stripped-User-Name}:-%{User-Name}}) \
(ntlRadiusStatus=Active) (inetUserStatus=Active) )"  base_filter = \
"(objectclass=radiusprofile)"  auto_header = no
        access_attr_used_for_allow = yes
        groupname_attribute = "cn"
        groupmembership_filter = \
"(|(&(objectClass=GroupOfNames)(member=%{Ldap-UserDn}))(&(objectClass=GroupOfUniqueNames)(uniquemember=%{Ldap-UserDn})))"
  dictionary_mapping = "/usr/local/etc/raddb/ldap.attrmap"
        ldap_debug = 0
        ldap_connections_number = 5
        compare_check_items = no
        do_xlat = yes
        set_auth_type = yes
  }
rlm_ldap: Registering ldap_groupcmp for Ldap-Group
rlm_ldap: Registering ldap_xlat with xlat_name ldap
rlm_ldap: reading ldap<->radius mappings from file /usr/local/etc/raddb/ldap.attrmap
rlm_ldap: LDAP radiusCheckItem mapped to RADIUS $GENERIC$
rlm_ldap: LDAP radiusReplyItem mapped to RADIUS $GENERIC$
rlm_ldap: LDAP radiusAuthType mapped to RADIUS Auth-Type
rlm_ldap: LDAP radiusSimultaneousUse mapped to RADIUS Simultaneous-Use
rlm_ldap: LDAP radiusCalledStationId mapped to RADIUS Called-Station-Id
rlm_ldap: LDAP radiusCallingStationId mapped to RADIUS Calling-Station-Id
rlm_ldap: LDAP lmPassword mapped to RADIUS LM-Password
rlm_ldap: LDAP ntPassword mapped to RADIUS NT-Password
rlm_ldap: LDAP sambaLmPassword mapped to RADIUS LM-Password
rlm_ldap: LDAP sambaNtPassword mapped to RADIUS NT-Password
rlm_ldap: LDAP dBCSPwd mapped to RADIUS LM-Password
rlm_ldap: LDAP acctFlags mapped to RADIUS SMB-Account-CTRL-TEXT
rlm_ldap: LDAP radiusExpiration mapped to RADIUS Expiration
rlm_ldap: LDAP radiusNASIpAddress mapped to RADIUS NAS-IP-Address
rlm_ldap: LDAP radiusServiceType mapped to RADIUS Service-Type
rlm_ldap: LDAP radiusFramedProtocol mapped to RADIUS Framed-Protocol
rlm_ldap: LDAP radiusFramedIPAddress mapped to RADIUS Framed-IP-Address
rlm_ldap: LDAP radiusFramedIPNetmask mapped to RADIUS Framed-IP-Netmask
rlm_ldap: LDAP radiusFramedRoute mapped to RADIUS Framed-Route
rlm_ldap: LDAP radiusFramedRouting mapped to RADIUS Framed-Routing
rlm_ldap: LDAP radiusFilterId mapped to RADIUS Filter-Id
rlm_ldap: LDAP radiusFramedMTU mapped to RADIUS Framed-MTU
rlm_ldap: LDAP radiusFramedCompression mapped to RADIUS Framed-Compression
rlm_ldap: LDAP radiusLoginIPHost mapped to RADIUS Login-IP-Host
rlm_ldap: LDAP radiusLoginService mapped to RADIUS Login-Service
rlm_ldap: LDAP radiusLoginTCPPort mapped to RADIUS Login-TCP-Port
rlm_ldap: LDAP radiusCallbackNumber mapped to RADIUS Callback-Number
rlm_ldap: LDAP radiusCallbackId mapped to RADIUS Callback-Id
rlm_ldap: LDAP radiusFramedIPXNetwork mapped to RADIUS Framed-IPX-Network
rlm_ldap: LDAP radiusClass mapped to RADIUS Class
rlm_ldap: LDAP radiusSessionTimeout mapped to RADIUS Session-Timeout
rlm_ldap: LDAP radiusIdleTimeout mapped to RADIUS Idle-Timeout
rlm_ldap: LDAP radiusTerminationAction mapped to RADIUS Termination-Action
rlm_ldap: LDAP radiusLoginLATService mapped to RADIUS Login-LAT-Service
rlm_ldap: LDAP radiusLoginLATNode mapped to RADIUS Login-LAT-Node
rlm_ldap: LDAP radiusLoginLATGroup mapped to RADIUS Login-LAT-Group
rlm_ldap: LDAP radiusFramedAppleTalkLink mapped to RADIUS Framed-AppleTalk-Link
rlm_ldap: LDAP radiusFramedAppleTalkNetwork mapped to RADIUS Framed-AppleTalk-Network
rlm_ldap: LDAP radiusFramedAppleTalkZone mapped to RADIUS Framed-AppleTalk-Zone
rlm_ldap: LDAP radiusPortLimit mapped to RADIUS Port-Limit
rlm_ldap: LDAP radiusLoginLATPort mapped to RADIUS Login-LAT-Port
rlm_ldap: LDAP radiusReplyMessage mapped to RADIUS Reply-Message
rlm_ldap: LDAP radiusTunnelType mapped to RADIUS Tunnel-Type
rlm_ldap: LDAP radiusTunnelMediumType mapped to RADIUS Tunnel-Medium-Type
rlm_ldap: LDAP radiusTunnelPrivateGroupId mapped to RADIUS Tunnel-Private-Group-Id
rlm_ldap: LDAP ntlradiusglobalprofileref mapped to RADIUS Profile
rlm_ldap: LDAP userPassword mapped to RADIUS Password
conns: 0x9711090
 Module: Checking authorize {...} for more modules to load
 Module: Linked to module rlm_preprocess
 Module: Instantiating preprocess
  preprocess {
        huntgroups = "/usr/local/etc/raddb/huntgroups"
        hints = "/usr/local/etc/raddb/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 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/radius/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 = "/usr/local/etc/raddb/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 = "control"
 listen {
        socket = "/var/run/radiusd/radiusd.sock"
 }
}
Listening on authentication address * port 1812
Listening on accounting address * port 1813
Listening on command file /var/run/radiusd/radiusd.sock
Listening on proxy address * port 1814
Ready to process requests.
rad_recv: Access-Request packet from host 127.0.0.1 port 59607, id=163, length=32
        User-Name = "SomeUser"
+- entering group authorize {...}
++[preprocess] returns ok
++[chap] returns noop
++[mschap] returns noop
[suffix] No '@' in User-Name = "SomeUser", looking up realm NULL
[suffix] No such realm "NULL"
++[suffix] returns noop
[eap] No EAP-Message, not doing EAP
++[eap] returns noop
++[unix] returns notfound
++[files] returns noop
[ldap] performing user authorization for SomeUser
[ldap]  expand: %{Stripped-User-Name} -> 
[ldap]  ... expanding second conditional
[ldap]  expand: %{User-Name} -> SomeUser
[ldap]  expand: (&(uid=%{%{Stripped-User-Name}:-%{User-Name}}) \
(ntlRadiusStatus=Active) (inetUserStatus=Active) ) -> (&(uid=SomeUser) \
(ntlRadiusStatus=Active) (inetUserStatus=Active) ) [ldap]  expand: \
ou=People,o=SOMECOMPANY  ,o=somecompanynetwork -> ou=People,o=SOMECOMPANY  \
,o=somecompanynetwork  [ldap] ldap_get_conn: Checking Id: 0
  [ldap] ldap_get_conn: Got Id: 0
  [ldap] attempting LDAP reconnection
  [ldap] (re)connect to 172.16.1.52:389, authentication 0
  [ldap] bind as cn=secretpassword/secretpassword to 172.16.1.52:389
  [ldap] waiting for bind result ...
  [ldap] Bind was successful
  [ldap] performing search in ou=People,o=SOMECOMPANY  ,o=somecompanynetwork, with \
filter (&(uid=SomeUser) (ntlRadiusStatus=Active) (inetUserStatus=Active) ) [ldap] \
looking for check items in directory... [ldap] looking for reply items in \
directory...  [ldap] userPassword -> Password = "{SHA}rEtSjRgLo/JjdB2mc+QZbBYDxNU="
  [ldap] ntlradiusglobalprofileref -> Profile = \
"cn=prepaid,ou=Profiles,ou=Radius,ou=IP Services, o=SOMECOMPANY, \
                o=somecompanynetwork"
WARNING: No "known good" password was found in LDAP.  Are you sure that the user is \
configured correctly? [ldap] user SomeUser authorized to use remote access
  [ldap] ldap_release_conn: Release Id: 0
++[ldap] returns ok
++[expiration] returns noop
++[logintime] returns noop
[pap] WARNING! No "known good" password found for the user.  Authentication may fail \
because of this. ++[pap] returns noop
No authenticate method (Auth-Type) configuration found for the request: Rejecting the \
user Failed to authenticate the user.
Using Post-Auth-Type Reject
+- entering group REJECT {...}
[attr_filter.access_reject]     expand: %{User-Name} -> SomeUser
 attr_filter: Matched entry DEFAULT at line 11
++[attr_filter.access_reject] returns updated
Delaying reject of request 0 for 1 seconds
Going to the next request
Waking up in 0.9 seconds.
Sending delayed reject for request 0
Sending Access-Reject of id 163 to 127.0.0.1 port 59607
Waking up in 4.9 seconds.
Cleaning up request 0 ID 163 with timestamp +8
Ready to process requests.


--------------------------------------------------------------------------------
Craig Campbell 
craig.campbell@ccraft.ca 
CampbellCraft Consulting Inc
2 Kenny Court 
Whitby, Ontario 
Canada 
L1R 2L8 
905 922-2789 

 



__________ Information from ESET Smart Security, version of virus signature database \
5072 (20100429) __________

The message was checked by ESET Smart Security.

http://www.eset.com



__________ Information from ESET Smart Security, version of virus signature database \
5072 (20100429) __________

The message was checked by ESET Smart Security.

http://www.eset.com


[Attachment #5 (text/html)]

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML xmlns:o><HEAD>
<META content="text/html; charset=iso-8859-1" http-equiv=Content-Type>
<META name=GENERATOR content="MSHTML 8.00.6001.18904">
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV style="FONT: 10pt arial">
<DIV><FONT size=2 face=Arial>Hi,</FONT></DIV></DIV>
<DIV><FONT size=2 face=Arial>&nbsp;&nbsp;&nbsp; I have a requirement for 
'authentication' via LDAP.&nbsp; Only a User-Name is passed to freeradius.&nbsp; 
</FONT></DIV>
<DIV><FONT size=2 face=Arial>The requirement is to perform an LDAP lookup, and 
if the user exists, return a couple of other values in the LDAP database for 
that user.</FONT></DIV>
<DIV><FONT size=2 face=Arial>If the user does not exist, reject.</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT size=2 face=Arial>I have the LDAP lookups working, but I cannot 
figure out how to tell freeradius to skip the password check 
(authorization?).</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT size=2 face=Arial>I am using radcleint to test this via,</FONT></DIV>
<DIV><FONT size=2 face=Arial>&nbsp;&nbsp;&nbsp; echo "User-Name=2975600001" | 
/usr/local/bin/radclient -s 127.0.0.1 auth testing123</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT size=2 face=Arial>Below is a debug of this test.</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT size=2 face=Arial>FreeRADIUS Version 2.1.8, for host 
i686-pc-linux-gnu, built on Apr 27 2010 at 14:45:30<BR>Copyright (C) 1999-2009 
The FreeRADIUS server project and contributors. <BR>There is NO warranty; not 
even for MERCHANTABILITY or FITNESS FOR A <BR>PARTICULAR PURPOSE. <BR>You may 
redistribute copies of FreeRADIUS under the terms of the <BR>GNU General Public 
License v2. <BR>Starting - reading configuration files ...<BR>including 
configuration file /usr/local/etc/raddb/radiusd.conf<BR>including configuration 
file /usr/local/etc/raddb/proxy.conf<BR>including configuration file 
/usr/local/etc/raddb/clients.conf<BR>including files in directory 
/usr/local/etc/raddb/modules/<BR>including configuration file 
/usr/local/etc/raddb/modules/echo<BR>including configuration file 
/usr/local/etc/raddb/modules/inner-eap<BR>including configuration file 
/usr/local/etc/raddb/modules/logintime<BR>including configuration file 
/usr/local/etc/raddb/modules/perl<BR>including configuration file 
/usr/local/etc/raddb/modules/cui<BR>including configuration file 
/usr/local/etc/raddb/modules/expr<BR>including configuration file 
/usr/local/etc/raddb/modules/smsotp<BR>including configuration file 
/usr/local/etc/raddb/modules/pap<BR>including configuration file 
/usr/local/etc/raddb/modules/sql_log<BR>including configuration file 
/usr/local/etc/raddb/modules/mschap<BR>including configuration file 
/usr/local/etc/raddb/modules/sqlcounter_expire_on_login<BR>including 
configuration file /usr/local/etc/raddb/modules/digest<BR>including 
configuration file /usr/local/etc/raddb/modules/policy<BR>including 
configuration file /usr/local/etc/raddb/modules/preprocess<BR>including 
configuration file /usr/local/etc/raddb/modules/krb5<BR>including configuration 
file /usr/local/etc/raddb/modules/detail<BR>including configuration file 
/usr/local/etc/raddb/modules/always<BR>including configuration file 
/usr/local/etc/raddb/modules/exec<BR>including configuration file 
/usr/local/etc/raddb/modules/mac2vlan<BR>including configuration file 
/usr/local/etc/raddb/modules/unix<BR>including configuration file 
/usr/local/etc/raddb/modules/realm<BR>including configuration file 
/usr/local/etc/raddb/modules/wimax<BR>including configuration file 
/usr/local/etc/raddb/modules/acct_unique<BR>including configuration file 
/usr/local/etc/raddb/modules/otp<BR>including configuration file 
/usr/local/etc/raddb/modules/expiration<BR>including configuration file 
/usr/local/etc/raddb/modules/detail.example.com<BR>including configuration file 
/usr/local/etc/raddb/modules/pam<BR>including configuration file 
/usr/local/etc/raddb/modules/checkval<BR>including configuration file 
/usr/local/etc/raddb/modules/ntlm_auth<BR>including configuration file 
/usr/local/etc/raddb/modules/smbpasswd<BR>including configuration file 
/usr/local/etc/raddb/modules/chap<BR>including configuration file 
/usr/local/etc/raddb/modules/mac2ip<BR>including configuration file 
/usr/local/etc/raddb/modules/radutmp<BR>including configuration file 
/usr/local/etc/raddb/modules/ippool<BR>including configuration file 
/usr/local/etc/raddb/modules/ldap<BR>including configuration file 
/usr/local/etc/raddb/modules/linelog<BR>including configuration file 
/usr/local/etc/raddb/modules/sradutmp<BR>including configuration file 
/usr/local/etc/raddb/modules/attr_filter<BR>including configuration file 
/usr/local/etc/raddb/modules/passwd<BR>including configuration file 
/usr/local/etc/raddb/modules/detail.log<BR>including configuration file 
/usr/local/etc/raddb/modules/etc_group<BR>including configuration file 
/usr/local/etc/raddb/modules/files<BR>including configuration file 
/usr/local/etc/raddb/modules/ldap.orig<BR>including configuration file 
/usr/local/etc/raddb/modules/attr_rewrite<BR>including configuration file 
/usr/local/etc/raddb/modules/counter<BR>including configuration file 
/usr/local/etc/raddb/eap.conf<BR>including configuration file 
/usr/local/etc/raddb/policy.conf<BR>including files in directory 
/usr/local/etc/raddb/sites-enabled/<BR>including configuration file 
/usr/local/etc/raddb/sites-enabled/default<BR>including configuration file 
/usr/local/etc/raddb/sites-enabled/inner-tunnel<BR>including configuration file 
/usr/local/etc/raddb/sites-enabled/control-socket<BR>main 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; user = 
"radiusd"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; group = 
"radiusd"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; allow_core_dumps = 
no<BR>}<BR>including dictionary file /usr/local/etc/raddb/dictionary<BR>main 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; prefix = 
"/usr/local"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; localstatedir = 
"/var"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; logdir = 
"/var/log/radius"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; libdir = 
"/usr/local/lib"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; radacctdir = 
"/var/log/radius/radacct"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
hostname_lookups = no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
max_request_time = 30<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
cleanup_delay = 5<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; max_requests = 
1024<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pidfile = 
"/var/run/radiusd/radiusd.pid"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
checkrad = 
"/usr/local/sbin/checkrad"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
debug_level = 0<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; proxy_requests = 
yes<BR>&nbsp;log {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; stripped_names 
= no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; auth = 
no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; auth_badpass = 
no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; auth_goodpass = 
no<BR>&nbsp;}<BR>&nbsp;security {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
max_attributes = 200<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; reject_delay 
= 1<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; status_server = 
yes<BR>&nbsp;}<BR>}<BR>radiusd: #### Loading Realms and Home Servers 
####<BR>&nbsp;proxy server {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
retry_delay = 5<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; retry_count = 
3<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; default_fallback = 
no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; dead_time = 
120<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; wake_all_if_all_dead = 
no<BR>&nbsp;}<BR>&nbsp;home_server localhost 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ipaddr = 
127.0.0.1<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; port = 
1812<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; type = 
"auth"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; secret = 
"testing123"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; response_window = 
20<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; max_outstanding = 
65536<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
require_message_authenticator = no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
zombie_period = 40<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; status_check = 
"status-server"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ping_interval = 
30<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; check_interval = 
30<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; num_answers_to_alive = 
3<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; num_pings_to_alive = 
3<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; revive_interval = 
120<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; status_check_timeout = 
4<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; irt = 
2<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mrt = 
16<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mrc = 
5<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mrd = 
30<BR>&nbsp;}<BR>&nbsp;home_server_pool my_auth_failover 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; type = 
fail-over<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; home_server = 
localhost<BR>&nbsp;}<BR>&nbsp;realm example.com 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; auth_pool = 
my_auth_failover<BR>&nbsp;}<BR>&nbsp;realm LOCAL {<BR>&nbsp;}<BR>radiusd: #### 
Loading Clients ####<BR>&nbsp;client localhost 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ipaddr = 
127.0.0.1<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
require_message_authenticator = no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
secret = "testing123"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; shortname = 
"localhost"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; nastype = 
"other"<BR>&nbsp;}<BR>&nbsp;client 172.16.1.218 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; require_message_authenticator = 
no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; secret = 
"somecompanysecret"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; shortname = 
"GGSN-radius-1"<BR>&nbsp;}<BR>&nbsp;client 172.16.1.222 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; require_message_authenticator = 
no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; secret = 
"somecompanysecret"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; shortname = 
"GGSN-radius-2"<BR>&nbsp;}<BR>radiusd: #### Instantiating modules 
####<BR>&nbsp;instantiate {<BR>&nbsp;Module: Linked to module 
rlm_exec<BR>&nbsp;Module: Instantiating exec<BR>&nbsp; exec 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; wait = 
no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; input_pairs = 
"request"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; shell_escape = 
yes<BR>&nbsp; }<BR>&nbsp;Module: Linked to module rlm_expr<BR>&nbsp;Module: 
Instantiating expr<BR>&nbsp;Module: Linked to module 
rlm_expiration<BR>&nbsp;Module: Instantiating expiration<BR>&nbsp; expiration 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; reply-message = "Password Has 
Expired&nbsp; "<BR>&nbsp; }<BR>&nbsp;Module: Linked to module 
rlm_logintime<BR>&nbsp;Module: Instantiating logintime<BR>&nbsp; logintime 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; reply-message = "You are calling 
outside your allowed timespan&nbsp; 
"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; minimum-timeout = 60<BR>&nbsp; 
}<BR>&nbsp;}<BR>radiusd: #### Loading Virtual Servers ####<BR>server 
inner-tunnel {<BR>&nbsp;modules {<BR>&nbsp;Module: Checking authenticate {...} 
for more modules to load<BR>&nbsp;Module: Linked to module 
rlm_pap<BR>&nbsp;Module: Instantiating pap<BR>&nbsp; pap 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; encryption_scheme = 
"auto"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; auto_header = no<BR>&nbsp; 
}<BR>&nbsp;Module: Linked to module rlm_chap<BR>&nbsp;Module: Instantiating 
chap<BR>&nbsp;Module: Linked to module rlm_mschap<BR>&nbsp;Module: Instantiating 
mschap<BR>&nbsp; mschap {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; use_mppe 
= yes<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; require_encryption = 
no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; require_strong = 
no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; with_ntdomain_hack = 
no<BR>&nbsp; }<BR>&nbsp;Module: Linked to module rlm_unix<BR>&nbsp;Module: 
Instantiating unix<BR>&nbsp; unix 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; radwtmp = 
"/var/log/radius/radwtmp"<BR>&nbsp; }<BR>&nbsp;Module: Linked to module 
rlm_eap<BR>&nbsp;Module: Instantiating eap<BR>&nbsp; eap 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; default_eap_type = 
"md5"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; timer_expire = 
60<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ignore_unknown_eap_types = 
no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; cisco_accounting_username_bug = 
no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; max_sessions = 4096<BR>&nbsp; 
}<BR>&nbsp;Module: Linked to sub-module rlm_eap_md5<BR>&nbsp;Module: 
Instantiating eap-md5<BR>&nbsp;Module: Linked to sub-module 
rlm_eap_leap<BR>&nbsp;Module: Instantiating eap-leap<BR>&nbsp;Module: Linked to 
sub-module rlm_eap_gtc<BR>&nbsp;Module: Instantiating eap-gtc<BR>&nbsp;&nbsp; 
gtc {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; challenge = "Password: 
"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; auth_type = 
"PAP"<BR>&nbsp;&nbsp; }<BR>&nbsp;Module: Linked to sub-module 
rlm_eap_tls<BR>&nbsp;Module: Instantiating eap-tls<BR>&nbsp;&nbsp; tls 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; rsa_key_exchange = 
no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; dh_key_exchange = 
yes<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; rsa_key_length = 
512<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; dh_key_length = 
512<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; verify_depth = 
0<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pem_file_type = 
yes<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; private_key_file = 
"/usr/local/etc/raddb/certs/server.pem"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \
 certificate_file = 
"/usr/local/etc/raddb/certs/server.pem"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \
 CA_file = 
"/usr/local/etc/raddb/certs/ca.pem"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
private_key_password = "whatever"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
dh_file = 
"/usr/local/etc/raddb/certs/dh"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
random_file = 
"/usr/local/etc/raddb/certs/random"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
fragment_size = 1024<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
include_length = yes<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; check_crl = 
no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; cipher_list = 
"DEFAULT"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; make_cert_command = 
"/usr/local/etc/raddb/certs/bootstrap"<BR>&nbsp;&nbsp;&nbsp; cache 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; enable = 
no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; lifetime = 
24<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; max_entries = 
255<BR>&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp; }<BR>&nbsp;Module: Linked to 
sub-module rlm_eap_ttls<BR>&nbsp;Module: Instantiating eap-ttls<BR>&nbsp;&nbsp; 
ttls {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; default_eap_type = 
"md5"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; copy_request_to_tunnel = 
no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; use_tunneled_reply = 
no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; virtual_server = 
"inner-tunnel"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; include_length = 
yes<BR>&nbsp;&nbsp; }<BR>&nbsp;Module: Linked to sub-module 
rlm_eap_peap<BR>&nbsp;Module: Instantiating eap-peap<BR>&nbsp;&nbsp; peap 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; default_eap_type = 
"mschapv2"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; copy_request_to_tunnel 
= no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; use_tunneled_reply = 
no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; proxy_tunneled_request_as_eap = 
yes<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; virtual_server = 
"inner-tunnel"<BR>&nbsp;&nbsp; }<BR>&nbsp;Module: Linked to sub-module 
rlm_eap_mschapv2<BR>&nbsp;Module: Instantiating eap-mschapv2<BR>&nbsp;&nbsp; 
mschapv2 {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; with_ntdomain_hack = 
no<BR>&nbsp;&nbsp; }<BR>&nbsp;Module: Checking authorize {...} for more modules 
to load<BR>&nbsp;Module: Linked to module rlm_realm<BR>&nbsp;Module: 
Instantiating suffix<BR>&nbsp; realm suffix 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; format = 
"suffix"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; delimiter = 
"@"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ignore_default = 
no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ignore_null = no<BR>&nbsp; 
}<BR>&nbsp;Module: Linked to module rlm_files<BR>&nbsp;Module: Instantiating 
files<BR>&nbsp; files {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; usersfile 
= "/usr/local/etc/raddb/users"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
acctusersfile = 
"/usr/local/etc/raddb/acct_users"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
preproxy_usersfile = 
"/usr/local/etc/raddb/preproxy_users"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
compat = "no"<BR>&nbsp; }<BR>&nbsp;Module: Checking session {...} for more 
modules to load<BR>&nbsp;Module: Linked to module rlm_radutmp<BR>&nbsp;Module: 
Instantiating radutmp<BR>&nbsp; radutmp 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; filename = 
"/var/log/radius/radutmp"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; username 
= "%{User-Name}"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; case_sensitive = 
yes<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; check_with_nas = 
yes<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; perm = 
384<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; callerid = yes<BR>&nbsp; 
}<BR>&nbsp;Module: Checking post-proxy {...} for more modules to 
load<BR>&nbsp;Module: Checking post-auth {...} for more modules to 
load<BR>&nbsp;Module: Linked to module rlm_attr_filter<BR>&nbsp;Module: 
Instantiating attr_filter.access_reject<BR>&nbsp; attr_filter 
attr_filter.access_reject {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
attrsfile = 
"/usr/local/etc/raddb/attrs.access_reject"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \
 key = "%{User-Name}"<BR>&nbsp; }<BR>&nbsp;} # modules<BR>} # server<BR>server 
{<BR>&nbsp;modules {<BR>&nbsp;Module: Checking authenticate {...} for more 
modules to load<BR>&nbsp;Module: Linked to module rlm_ldap<BR>&nbsp;Module: 
Instantiating ldap<BR>&nbsp; ldap 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; server = 
"172.16.1.52"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; port = 
389<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; password = 
"secretpassword"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; identity = 
"cn=secretpassword"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; net_timeout = 
1<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; timeout = 
4<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; timelimit = 
3<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tls_mode = 
no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; start_tls = 
no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tls_require_cert = 
"allow"<BR>&nbsp;&nbsp; tls {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
start_tls = no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; require_cert = 
"allow"<BR>&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; basedn = 
"ou=People,o=SOMECOMPANY&nbsp; 
,o=somecompanynetwork"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; filter = 
"(&amp;(uid=%{%{Stripped-User-Name}:-%{User-Name}}) (ntlRadiusStatus=Active) 
(inetUserStatus=Active) )"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
base_filter = 
"(objectclass=radiusprofile)"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
auto_header = no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
access_attr_used_for_allow = yes<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
groupname_attribute = "cn"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
groupmembership_filter = 
"(|(&amp;(objectClass=GroupOfNames)(member=%{Ldap-UserDn}))(&amp;(objectClass=GroupOfU \
niqueNames)(uniquemember=%{Ldap-UserDn})))"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \
 dictionary_mapping = 
"/usr/local/etc/raddb/ldap.attrmap"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
ldap_debug = 0<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
ldap_connections_number = 5<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
compare_check_items = no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; do_xlat = 
yes<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; set_auth_type = yes<BR>&nbsp; 
}<BR>rlm_ldap: Registering ldap_groupcmp for Ldap-Group<BR>rlm_ldap: Registering 
ldap_xlat with xlat_name ldap<BR>rlm_ldap: reading ldap&lt;-&gt;radius mappings 
from file /usr/local/etc/raddb/ldap.attrmap<BR>rlm_ldap: LDAP radiusCheckItem 
mapped to RADIUS $GENERIC$<BR>rlm_ldap: LDAP radiusReplyItem mapped to RADIUS 
$GENERIC$<BR>rlm_ldap: LDAP radiusAuthType mapped to RADIUS 
Auth-Type<BR>rlm_ldap: LDAP radiusSimultaneousUse mapped to RADIUS 
Simultaneous-Use<BR>rlm_ldap: LDAP radiusCalledStationId mapped to RADIUS 
Called-Station-Id<BR>rlm_ldap: LDAP radiusCallingStationId mapped to RADIUS 
Calling-Station-Id<BR>rlm_ldap: LDAP lmPassword mapped to RADIUS 
LM-Password<BR>rlm_ldap: LDAP ntPassword mapped to RADIUS 
NT-Password<BR>rlm_ldap: LDAP sambaLmPassword mapped to RADIUS 
LM-Password<BR>rlm_ldap: LDAP sambaNtPassword mapped to RADIUS 
NT-Password<BR>rlm_ldap: LDAP dBCSPwd mapped to RADIUS LM-Password<BR>rlm_ldap: 
LDAP acctFlags mapped to RADIUS SMB-Account-CTRL-TEXT<BR>rlm_ldap: LDAP 
radiusExpiration mapped to RADIUS Expiration<BR>rlm_ldap: LDAP 
radiusNASIpAddress mapped to RADIUS NAS-IP-Address<BR>rlm_ldap: LDAP 
radiusServiceType mapped to RADIUS Service-Type<BR>rlm_ldap: LDAP 
radiusFramedProtocol mapped to RADIUS Framed-Protocol<BR>rlm_ldap: LDAP 
radiusFramedIPAddress mapped to RADIUS Framed-IP-Address<BR>rlm_ldap: LDAP 
radiusFramedIPNetmask mapped to RADIUS Framed-IP-Netmask<BR>rlm_ldap: LDAP 
radiusFramedRoute mapped to RADIUS Framed-Route<BR>rlm_ldap: LDAP 
radiusFramedRouting mapped to RADIUS Framed-Routing<BR>rlm_ldap: LDAP 
radiusFilterId mapped to RADIUS Filter-Id<BR>rlm_ldap: LDAP radiusFramedMTU 
mapped to RADIUS Framed-MTU<BR>rlm_ldap: LDAP radiusFramedCompression mapped to 
RADIUS Framed-Compression<BR>rlm_ldap: LDAP radiusLoginIPHost mapped to RADIUS 
Login-IP-Host<BR>rlm_ldap: LDAP radiusLoginService mapped to RADIUS 
Login-Service<BR>rlm_ldap: LDAP radiusLoginTCPPort mapped to RADIUS 
Login-TCP-Port<BR>rlm_ldap: LDAP radiusCallbackNumber mapped to RADIUS 
Callback-Number<BR>rlm_ldap: LDAP radiusCallbackId mapped to RADIUS 
Callback-Id<BR>rlm_ldap: LDAP radiusFramedIPXNetwork mapped to RADIUS 
Framed-IPX-Network<BR>rlm_ldap: LDAP radiusClass mapped to RADIUS 
Class<BR>rlm_ldap: LDAP radiusSessionTimeout mapped to RADIUS 
Session-Timeout<BR>rlm_ldap: LDAP radiusIdleTimeout mapped to RADIUS 
Idle-Timeout<BR>rlm_ldap: LDAP radiusTerminationAction mapped to RADIUS 
Termination-Action<BR>rlm_ldap: LDAP radiusLoginLATService mapped to RADIUS 
Login-LAT-Service<BR>rlm_ldap: LDAP radiusLoginLATNode mapped to RADIUS 
Login-LAT-Node<BR>rlm_ldap: LDAP radiusLoginLATGroup mapped to RADIUS 
Login-LAT-Group<BR>rlm_ldap: LDAP radiusFramedAppleTalkLink mapped to RADIUS 
Framed-AppleTalk-Link<BR>rlm_ldap: LDAP radiusFramedAppleTalkNetwork mapped to 
RADIUS Framed-AppleTalk-Network<BR>rlm_ldap: LDAP radiusFramedAppleTalkZone 
mapped to RADIUS Framed-AppleTalk-Zone<BR>rlm_ldap: LDAP radiusPortLimit mapped 
to RADIUS Port-Limit<BR>rlm_ldap: LDAP radiusLoginLATPort mapped to RADIUS 
Login-LAT-Port<BR>rlm_ldap: LDAP radiusReplyMessage mapped to RADIUS 
Reply-Message<BR>rlm_ldap: LDAP radiusTunnelType mapped to RADIUS 
Tunnel-Type<BR>rlm_ldap: LDAP radiusTunnelMediumType mapped to RADIUS 
Tunnel-Medium-Type<BR>rlm_ldap: LDAP radiusTunnelPrivateGroupId mapped to RADIUS 
Tunnel-Private-Group-Id<BR>rlm_ldap: LDAP ntlradiusglobalprofileref mapped to 
RADIUS Profile<BR>rlm_ldap: LDAP userPassword mapped to RADIUS 
Password<BR>conns: 0x9711090<BR>&nbsp;Module: Checking authorize {...} for more 
modules to load<BR>&nbsp;Module: Linked to module 
rlm_preprocess<BR>&nbsp;Module: Instantiating preprocess<BR>&nbsp; preprocess 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; huntgroups = 
"/usr/local/etc/raddb/huntgroups"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
hints = 
"/usr/local/etc/raddb/hints"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
with_ascend_hack = no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
ascend_channels_per_line = 23<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
with_ntdomain_hack = no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
with_specialix_jetstream_hack = no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
with_cisco_vsa_hack = no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
with_alvarion_vsa_hack = no<BR>&nbsp; }<BR>&nbsp;Module: Checking preacct {...} 
for more modules to load<BR>&nbsp;Module: Linked to module 
rlm_acct_unique<BR>&nbsp;Module: Instantiating acct_unique<BR>&nbsp; acct_unique 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; key = "User-Name, 
Acct-Session-Id, NAS-IP-Address, Client-IP-Address, NAS-Port"<BR>&nbsp; 
}<BR>&nbsp;Module: Checking accounting {...} for more modules to 
load<BR>&nbsp;Module: Linked to module rlm_detail<BR>&nbsp;Module: Instantiating 
detail<BR>&nbsp; detail {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
detailfile = 
"/var/log/radius/radacct/%{Client-IP-Address}/detail-%Y%m%d"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \
 header = "%t"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; detailperm = 
384<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; dirperm = 
493<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; locking = 
no<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; log_packet_header = 
no<BR>&nbsp; }<BR>&nbsp;Module: Instantiating 
attr_filter.accounting_response<BR>&nbsp; attr_filter 
attr_filter.accounting_response {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
attrsfile = 
"/usr/local/etc/raddb/attrs.accounting_response"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \
 key = "%{User-Name}"<BR>&nbsp; }<BR>&nbsp;Module: Checking session {...} for 
more modules to load<BR>&nbsp;Module: Checking post-proxy {...} for more modules 
to load<BR>&nbsp;Module: Checking post-auth {...} for more modules to 
load<BR>&nbsp;} # modules<BR>} # server<BR>radiusd: #### Opening IP addresses 
and Ports ####<BR>listen {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; type = 
"auth"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ipaddr = 
*<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; port = 0<BR>}<BR>listen 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; type = 
"acct"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ipaddr = 
*<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; port = 0<BR>}<BR>listen 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; type = "control"<BR>&nbsp;listen 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; socket = 
"/var/run/radiusd/radiusd.sock"<BR>&nbsp;}<BR>}<BR>Listening on authentication 
address * port 1812<BR>Listening on accounting address * port 1813<BR>Listening 
on command file /var/run/radiusd/radiusd.sock<BR>Listening on proxy address * 
port 1814<BR>Ready to process requests.<BR>rad_recv: Access-Request packet from 
host 127.0.0.1 port 59607, id=163, 
length=32<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; User-Name = 
"SomeUser"<BR>+- entering group authorize {...}<BR>++[preprocess] returns 
ok<BR>++[chap] returns noop<BR>++[mschap] returns noop<BR>[suffix] No <A 
href="mailto:'@'">'@'</A> in User-Name = "SomeUser", looking up realm 
NULL<BR>[suffix] No such realm "NULL"<BR>++[suffix] returns noop<BR>[eap] No 
EAP-Message, not doing EAP<BR>++[eap] returns noop<BR>++[unix] returns 
notfound<BR>++[files] returns noop<BR>[ldap] performing user authorization for 
SomeUser<BR>[ldap]&nbsp; expand: %{Stripped-User-Name} -&gt; <BR>[ldap]&nbsp; 
... expanding second conditional<BR>[ldap]&nbsp; expand: %{User-Name} -&gt; 
SomeUser<BR>[ldap]&nbsp; expand: 
(&amp;(uid=%{%{Stripped-User-Name}:-%{User-Name}}) (ntlRadiusStatus=Active) 
(inetUserStatus=Active) ) -&gt; (&amp;(uid=SomeUser) (ntlRadiusStatus=Active) 
(inetUserStatus=Active) )<BR>[ldap]&nbsp; expand: ou=People,o=SOMECOMPANY&nbsp; 
,o=somecompanynetwork -&gt; ou=People,o=SOMECOMPANY&nbsp; 
,o=somecompanynetwork<BR>&nbsp; [ldap] ldap_get_conn: Checking Id: 0<BR>&nbsp; 
[ldap] ldap_get_conn: Got Id: 0<BR>&nbsp; [ldap] attempting LDAP 
reconnection<BR>&nbsp; [ldap] (re)connect to 172.16.1.52:389, authentication 
0<BR>&nbsp; [ldap] bind as cn=secretpassword/secretpassword to 
172.16.1.52:389<BR>&nbsp; [ldap] waiting for bind result ...<BR>&nbsp; [ldap] 
Bind was successful<BR>&nbsp; [ldap] performing search in 
ou=People,o=SOMECOMPANY&nbsp; ,o=somecompanynetwork, with filter 
(&amp;(uid=SomeUser) (ntlRadiusStatus=Active) (inetUserStatus=Active) 
)<BR>[ldap] looking for check items in directory...<BR>[ldap] looking for reply 
items in directory...<BR>&nbsp; [ldap] userPassword -&gt; Password = 
"{SHA}rEtSjRgLo/JjdB2mc+QZbBYDxNU="<BR>&nbsp; [ldap] ntlradiusglobalprofileref 
-&gt; Profile = "cn=prepaid,ou=Profiles,ou=Radius,ou=IP Services, o=SOMECOMPANY, 
o=somecompanynetwork"<BR>WARNING: No "known good" password was found in 
LDAP.&nbsp; Are you sure that the user is configured correctly?<BR>[ldap] user 
SomeUser authorized to use remote access<BR>&nbsp; [ldap] ldap_release_conn: 
Release Id: 0<BR>++[ldap] returns ok<BR>++[expiration] returns 
noop<BR>++[logintime] returns noop<BR>[pap] WARNING! No "known good" password 
found for the user.&nbsp; Authentication may fail because of this.<BR>++[pap] 
returns noop<BR>No authenticate method (Auth-Type) configuration found for the 
request: Rejecting the user<BR>Failed to authenticate the user.<BR>Using 
Post-Auth-Type Reject<BR>+- entering group REJECT 
{...}<BR>[attr_filter.access_reject]&nbsp;&nbsp;&nbsp;&nbsp; expand: 
%{User-Name} -&gt; SomeUser<BR>&nbsp;attr_filter: Matched entry DEFAULT at line 
11<BR>++[attr_filter.access_reject] returns updated<BR>Delaying reject of 
request 0 for 1 seconds<BR>Going to the next request<BR>Waking up in 0.9 
seconds.<BR>Sending delayed reject for request 0<BR>Sending Access-Reject of id 
163 to 127.0.0.1 port 59607<BR>Waking up in 4.9 seconds.<BR>Cleaning up request 
0 ID 163 with timestamp +8<BR>Ready to process requests.</FONT></DIV>
<DIV>
<DIV class=Section1>
<P style="mso-layout-grid-align: none" class=MsoNormal><I><SPAN 
style="mso-ansi-language: EN-US">
<HR>
Craig Campbell <BR><A 
href="mailto:craig.campbell@ccraft.ca">craig.campbell@ccraft.ca</A> 
<BR>CampbellCraft Consulting Inc<BR>2 Kenny Court <BR>Whitby, Ontario <BR>Canada 
<BR>L1R 2L8 <BR>905 922-2789 
<P></P>
<P class=MsoNormal><SPAN 
lang=EN-CA>&nbsp;<o:p></o:p></SPAN></P></DIV></SPAN></I></DIV><BR><BR>__________ 
Information from ESET Smart Security, version of virus signature database 5072 
(20100429) __________<BR><BR>The message was checked by ESET Smart 
Security.<BR><BR><A 
href="http://www.eset.com">http://www.eset.com</A><BR><BR>
<BR>
__________ Information from ESET Smart Security, version of virus signature database \
5072 (20100429) __________<BR> <BR>
The message was checked by ESET Smart Security.<BR>
<BR>
<A HREF="http://www.eset.com">http://www.eset.com</A><BR>


</BODY></HTML>



-
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic