Greetings,
I did read the FAQ. Now that I have CHAP working for a specific
huntgroup, I can't get PAP working locally. It does not even hit the
rlm_unix during debug (Below). I do not know what is missing. Below are
exerps from the config files. The operating system is FreeBSD 4.7-STABLE.
Radius runs as root (I know not the safeest, but for the moment I need to
get it working). The users file contains some user entries, but 98%+ of
the users are in the unix password (/etc/master.passwd /etc/pwd.db) files.
Any help would be apprecieated. My old freeradius-0.9.3 used similar files and had
no problems.
--------------------------------------------------------
radius.conf:
prefix = /usr/local/newradius
exec_prefix = ${prefix}
sysconfdir = ${prefix}/etc
localstatedir = /var
sbindir = ${exec_prefix}/sbin
logdir = /var/log
log_dir = /var/log
raddbdir = ${sysconfdir}/1812
radacctdir = ${logdir}/radacct
confdir = ${raddbdir}
run_dir = ${localstatedir}/run/radiusd
log_file = /var/log/radius.log
libdir = ${exec_prefix}/lib
pidfile = ${run_dir}/radiusd.pid
max_request_time = 30
delete_blocked_requests = no
cleanup_delay = 5
max_requests = 8192
bind_address = *
port = 9999 #for testing
hostname_lookups = no
allow_core_dumps = yes
regular_expressions = yes
extended_expressions = yes
log_stripped_names = no
log_auth = yes
log_auth_badpass = yes
log_auth_goodpass = yes
usercollide = no
lower_user = no
lower_pass = no
nospace_user = no
nospace_pass = no
checkrad = ${sbindir}/checkrad
security {
max_attributes = 200
reject_delay = 1
status_server = no
}
proxy_requests = yes
$INCLUDE ${confdir}/proxy.conf
$INCLUDE ${confdir}/clients.conf
snmp = no
$INCLUDE ${confdir}/snmp.conf
thread pool {
start_servers = 5
max_servers = 63
min_spare_servers = 5
max_spare_servers = 20
max_requests_per_server = 1024
}
modules {
pap {
encryption_scheme = crypt
}
chap {
authtype = CHAP
Auth-Type := File
}
pam {
pam_auth = radiusd
}
unix {
cache = no
cache_reload = 600
# To force the module to use the system password functions,
# instead of reading the files, leave the following entries
# commented out.
#
# This is required for some systems, like FreeBSD,
# and Mac OSX.
#
# passwd = /etc/passwd
# shadow = /etc/shadow
# group = /etc/group
#
radwtmp = /var/log/radwtmp
}
$INCLUDE ${confdir}/eap.conf
mschap {
authtype = MS-CHAP
}
ldap {
server = "ldap.your.domain"
# identity = "cn=admin,o=My Org,c=UA"
# password = mypass
basedn = "o=My Org,c=UA"
filter = "(uid=%{Stripped-User-Name:-%{User-Name}})"
# base_filter = "(objectclass=radiusprofile)"
start_tls = no
access_attr = "dialupAccess"
dictionary_mapping = ${raddbdir}/ldap.attrmap
ldap_connections_number = 5
timeout = 4
timelimit = 3
net_timeout = 1
}
passwd etc_group {
filename = /etc/group
format = "=Group-Name:::*,User-Name"
hashsize = 50
ignorenislike = yes
allowmultiplekeys = yes
delimiter = ":"
}
realm IPASS {
format = prefix
delimiter = "/"
ignore_default = no
ignore_null = no
}
realm suffix {
format = suffix
delimiter = "@"
ignore_default = no
ignore_null = no
}
realm realmpercent {
format = suffix
delimiter = "%"
ignore_default = no
ignore_null = no
}
realm ntdomain {
format = prefix
delimiter = "\\"
ignore_default = no
ignore_null = no
}
checkval {
item-name = Calling-Station-Id
check-name = Calling-Station-Id
data-type = string
}
preprocess {
huntgroups = ${confdir}/huntgroups
hints = ${confdir}/hints
with_ascend_hack = no
ascend_channels_per_line = 23
with_ntdomain_hack = no
with_specialix_jetstream_hack = no
with_cisco_vsa_hack = yes
}
files {
usersfile = ${confdir}/users
acctusersfile = ${confdir}/acct_users
compat = no
}
detail {
detailfile =
/var/log/radacct/%{Client-IP-Address}/detail-%Y%m%d
detailperm = 0600
}
acct_unique {
key = "User-Name, Acct-Session-Id, NAS-IP-Address, Client-IP-Address,
NAS-Port"
}
$INCLUDE ${confdir}/sql.conf
radutmp {
filename = ${logdir}/radutmp
username = %{User-Name}
case_sensitive = yes
check_with_nas = yes
perm = 0600
callerid = "yes"
}
radutmp sradutmp {
filename = ${logdir}/sradutmp
perm = 0644
callerid = "no"
}
attr_filter {
attrsfile = ${confdir}/attrs
}
counter daily {
filename = ${raddbdir}/db.daily
key = User-Name
count-attribute = Acct-Session-Time
reset = daily
counter-name = Daily-Session-Time
check-name = Max-Daily-Session
allowed-servicetype = Framed-User
cache-size = 5000
}
always fail {
rcode = fail
}
always reject {
rcode = reject
}
always ok {
rcode = ok
simulcount = 0
mpp = no
}
expr {
}
digest {
}
exec {
wait = no
input_pairs = request
}
exec echo {
wait = yes
program = "/bin/echo %{User-Name}"
input_pairs = request
output_pairs = reply
}
ippool main_pool {
range-start = 192.168.1.1
range-stop = 192.168.3.254
netmask = 255.255.255.0
cache-size = 800
session-db = ${raddbdir}/db.ippool
ip-index = ${raddbdir}/db.ipindex
override = no
maximum-timeout = 0
}
}
instantiate {
exec
expr
# daily
}
authorize {
preprocess
# auth_log
# attr_filter
chap
mschap
# digest
# IPASS
suffix
# ntdomain
eap
files
# sql
# etc_smbpasswd
# ldap
# daily
# checkval
}
authenticate {
Auth-Type PAP {
pap
}
Auth-Type CHAP {
chap
}
Auth-Type MS-CHAP {
mschap
}
# digest
# pam
unix
# Auth-Type LDAP {
# ldap
# }
eap
}
preacct {
preprocess
acct_unique
# IPASS
suffix
# ntdomain
files
}
accounting {
detail
unix
radutmp
# sradutmp
# main_pool
# sql
# pgsql-voip
}
session {
radutmp
# sql
}
post-auth {
# main_pool
# reply_log
# sql
# Post-Auth-Type REJECT {
# insert-module-name-here
# }
}
pre-proxy {
}
post-proxy {
eap
}
---------------------------------------------
Users file entries:
DEFAULT Group == "nonprof", Login-Time == "Any0800-1700"
Fall-Through = Yes
DEFAULT Group == "mailonly"
Session-Timeout := 1,
Fall-Through := Yes
DEFAULT Group == "natdialup"
Session-Timeout := 1,
Fall-Through := Yes
DEFAULT Huntgroup-Name == "local", Simultaneous-Use == 1
Fall-Through := Yes
DEFAULT Huntgroup-Name =="National", Simultaneous-Use == 1
Fall-Through := Yes
DEFAULT Huntgroup-Name == "local", Auth-Type := System
Reply-Message := "local",
Fall-Through := Yes
DEFAULT Huntgroup-Name == "National", Auth-Type := Local
Reply-Message := "National",
Fall-Through := Yes
DEFAULT Huntgroup-Name == "web", Auth-Type := System
Reply-Message := "Web!",
Fall-Through := Yes
DEFAULT Service-Type == Framed-User, Huntgroup != "National"
Framed-Protocol := PPP,
Framed-IP-Address := 255.255.255.254,
Framed-MTU := 576,
Service-Type := Framed-User,
Fall-Through := Yes
DEFAULT Framed-Protocol == PPP, Huntgroup-Name != "National"
Framed-Protocol := PPP,
Framed-Compression := Van-Jacobson-TCP-IP
DEFAULT Hint == "CSLIP"
Framed-Protocol = SLIP,
Framed-Compressi
DEFAULT Hint == "SLIP"
Framed-Protocol = SLIP
---------------------------------------------
huntgroups:
ISDN NAS-IP-Address == 216.65.160.248
web NAS-IP-Address == 209.172.26.16
web NAS-IP-Address == 209.172.26.13
web NAS-IP-Address == 209.172.26.26
#web NAS-IP-Address == 209.172.21.6
local NAS-IP-Address == 216.65.160.245
local NAS-IP-Address == 216.65.160.246
local NAS-IP-Address == 216.65.160.247
local NAS-IP-Address == 216.65.160.248
local NAS-IP-Address == 216.65.160.249
local NAS-IP-Address == 209.172.29.193
local NAS-IP-Address == 209.172.29.130
local NAS-IP-Address == 209.172.29.250
local NAS-IP-Address == 209.172.26.32
local NAS-IP-Address == 209.172.26.34
local NAS-IP-Address == 209.172.21.6
#National NAS-IP-Address == 209.172.21.6
National Group == national
National Group == roaming
National User-Name == [EMAIL PROTECTED]
---------------------------------------------
Debug output:
Mon Sep 13 11:00:36 2004 : Info: Starting - reading configuration files ...
Mon Sep 13 11:00:36 2004 : Debug: reread_config: reading radiusd.conf
Mon Sep 13 11:00:36 2004 : Debug: Config: including file:
/usr/local/newradius/etc/1812/proxy.conf
Mon Sep 13 11:00:36 2004 : Debug: Config: including file:
/usr/local/newradius/etc/1812/clients.conf
Mon Sep 13 11:00:36 2004 : Debug: Config: including file:
/usr/local/newradius/etc/1812/snmp.conf
Mon Sep 13 11:00:36 2004 : Debug: Config: including file:
/usr/local/newradius/etc/1812/eap.conf
Mon Sep 13 11:00:36 2004 : Debug: Config: including file:
/usr/local/newradius/etc/1812/sql.conf
Mon Sep 13 11:00:36 2004 : Debug: main: prefix = "/usr/local/newradius"
Mon Sep 13 11:00:36 2004 : Debug: main: localstatedir = "/var"
Mon Sep 13 11:00:36 2004 : Debug: main: logdir = "/var/log"
Mon Sep 13 11:00:36 2004 : Debug: main: libdir = "/usr/local/newradius/lib"
Mon Sep 13 11:00:36 2004 : Debug: main: radacctdir = "/var/log/radacct"
Mon Sep 13 11:00:36 2004 : Debug: main: hostname_lookups = no
Mon Sep 13 11:00:36 2004 : Debug: main: snmp = no
Mon Sep 13 11:00:36 2004 : Debug: main: max_request_time = 30
Mon Sep 13 11:00:36 2004 : Debug: main: cleanup_delay = 5
Mon Sep 13 11:00:36 2004 : Debug: main: max_requests = 8192
Mon Sep 13 11:00:36 2004 : Debug: main: delete_blocked_requests = 0
Mon Sep 13 11:00:36 2004 : Debug: main: port = 9999
Mon Sep 13 11:00:36 2004 : Debug: main: allow_core_dumps = yes
Mon Sep 13 11:00:36 2004 : Debug: main: log_stripped_names = no
Mon Sep 13 11:00:36 2004 : Debug: main: log_file = "/var/log/radius.log"
Mon Sep 13 11:00:36 2004 : Debug: main: log_auth = yes
Mon Sep 13 11:00:36 2004 : Debug: main: log_auth_badpass = yes
Mon Sep 13 11:00:36 2004 : Debug: main: log_auth_goodpass = yes
Mon Sep 13 11:00:36 2004 : Debug: main: pidfile = "/var/run/radiusd/radiusd.pid"
Mon Sep 13 11:00:36 2004 : Debug: main: user = "(null)"
Mon Sep 13 11:00:36 2004 : Debug: main: group = "(null)"
Mon Sep 13 11:00:36 2004 : Debug: main: usercollide = no
Mon Sep 13 11:00:36 2004 : Debug: main: lower_user = "no"
Mon Sep 13 11:00:36 2004 : Debug: main: lower_pass = "no"
Mon Sep 13 11:00:36 2004 : Debug: main: nospace_user = "no"
Mon Sep 13 11:00:36 2004 : Debug: main: nospace_pass = "no"
Mon Sep 13 11:00:36 2004 : Debug: main: checkrad =
"/usr/local/newradius/sbin/checkrad"
Mon Sep 13 11:00:36 2004 : Debug: main: proxy_requests = yes
Mon Sep 13 11:00:36 2004 : Debug: proxy: retry_delay = 5
Mon Sep 13 11:00:36 2004 : Debug: proxy: retry_count = 3
Mon Sep 13 11:00:36 2004 : Debug: proxy: synchronous = no
Mon Sep 13 11:00:36 2004 : Debug: proxy: default_fallback = no
Mon Sep 13 11:00:36 2004 : Debug: proxy: dead_time = 60
Mon Sep 13 11:00:36 2004 : Debug: proxy: post_proxy_authorize = yes
Mon Sep 13 11:00:36 2004 : Debug: proxy: wake_all_if_all_dead = no
Mon Sep 13 11:00:36 2004 : Debug: security: max_attributes = 200
Mon Sep 13 11:00:36 2004 : Debug: security: reject_delay = 1
Mon Sep 13 11:00:36 2004 : Debug: security: status_server = no
Mon Sep 13 11:00:36 2004 : Debug: main: debug_level = 0
Mon Sep 13 11:00:36 2004 : Debug: read_config_files: reading dictionary
Mon Sep 13 11:00:36 2004 : Debug: read_config_files: reading naslist
Mon Sep 13 11:00:36 2004 : Debug: read_config_files: reading clients
Mon Sep 13 11:00:36 2004 : Debug: read_config_files: reading realms
Mon Sep 13 11:00:36 2004 : Debug: radiusd: entering modules setup
Mon Sep 13 11:00:36 2004 : Debug: Module: Library search path is
/usr/local/newradius/lib
Mon Sep 13 11:00:36 2004 : Debug: Module: Loaded exec
Mon Sep 13 11:00:36 2004 : Debug: exec: wait = no
Mon Sep 13 11:00:36 2004 : Debug: exec: program = "(null)"
Mon Sep 13 11:00:36 2004 : Debug: exec: input_pairs = "request"
Mon Sep 13 11:00:36 2004 : Debug: exec: output_pairs = "(null)"
Mon Sep 13 11:00:36 2004 : Debug: exec: packet_type = "(null)"
Mon Sep 13 11:00:36 2004 : Debug: Module: Instantiated exec (exec)
Mon Sep 13 11:00:36 2004 : Debug: Module: Loaded expr
Mon Sep 13 11:00:36 2004 : Debug: Module: Instantiated expr (expr)
Mon Sep 13 11:00:36 2004 : Debug: Module: Loaded PAP
Mon Sep 13 11:00:36 2004 : Debug: pap: encryption_scheme = "crypt"
Mon Sep 13 11:00:36 2004 : Debug: Module: Instantiated pap (pap)
Mon Sep 13 11:00:36 2004 : Debug: Module: Loaded CHAP
Mon Sep 13 11:00:36 2004 : Debug: Module: Instantiated chap (chap)
Mon Sep 13 11:00:36 2004 : Debug: Module: Loaded MS-CHAP
Mon Sep 13 11:00:36 2004 : Debug: mschap: use_mppe = yes
Mon Sep 13 11:00:36 2004 : Debug: mschap: require_encryption = no
Mon Sep 13 11:00:36 2004 : Debug: mschap: require_strong = no
Mon Sep 13 11:00:36 2004 : Debug: mschap: with_ntdomain_hack = no
Mon Sep 13 11:00:36 2004 : Debug: mschap: passwd = "(null)"
Mon Sep 13 11:00:36 2004 : Debug: mschap: authtype = "MS-CHAP"
Mon Sep 13 11:00:36 2004 : Debug: mschap: ntlm_auth = "(null)"
Mon Sep 13 11:00:36 2004 : Debug: Module: Instantiated mschap (mschap)
Mon Sep 13 11:00:36 2004 : Debug: Module: Loaded System
Mon Sep 13 11:00:36 2004 : Debug: unix: cache = no
Mon Sep 13 11:00:36 2004 : Debug: unix: passwd = "(null)"
Mon Sep 13 11:00:36 2004 : Debug: unix: shadow = "(null)"
Mon Sep 13 11:00:36 2004 : Debug: unix: group = "(null)"
Mon Sep 13 11:00:36 2004 : Debug: unix: radwtmp = "/var/log/radwtmp"
Mon Sep 13 11:00:36 2004 : Debug: unix: usegroup = no
Mon Sep 13 11:00:36 2004 : Debug: unix: cache_reload = 600
Mon Sep 13 11:00:36 2004 : Debug: Module: Instantiated unix (unix)
Mon Sep 13 11:00:36 2004 : Debug: Module: Loaded eap
Mon Sep 13 11:00:36 2004 : Debug: eap: default_eap_type = "md5"
Mon Sep 13 11:00:36 2004 : Debug: eap: timer_expire = 60
Mon Sep 13 11:00:36 2004 : Debug: eap: ignore_unknown_eap_types = no
Mon Sep 13 11:00:36 2004 : Debug: eap: cisco_accounting_username_bug = no
Mon Sep 13 11:00:36 2004 : Debug: rlm_eap: Loaded and initialized type md5
Mon Sep 13 11:00:36 2004 : Debug: rlm_eap: Loaded and initialized type leap
Mon Sep 13 11:00:36 2004 : Debug: gtc: challenge = "Password: "
Mon Sep 13 11:00:36 2004 : Debug: gtc: auth_type = "PAP"
Mon Sep 13 11:00:36 2004 : Debug: rlm_eap: Loaded and initialized type gtc
Mon Sep 13 11:00:36 2004 : Debug: mschapv2: with_ntdomain_hack = no
Mon Sep 13 11:00:36 2004 : Debug: rlm_eap: Loaded and initialized type mschapv2
Mon Sep 13 11:00:36 2004 : Debug: Module: Instantiated eap (eap)
Mon Sep 13 11:00:36 2004 : Debug: Module: Loaded preprocess
Mon Sep 13 11:00:36 2004 : Debug: preprocess: huntgroups =
"/usr/local/newradius/etc/1812/huntgroups"
Mon Sep 13 11:00:36 2004 : Debug: preprocess: hints =
"/usr/local/newradius/etc/1812/hints"
Mon Sep 13 11:00:36 2004 : Debug: preprocess: with_ascend_hack = no
Mon Sep 13 11:00:36 2004 : Debug: preprocess: ascend_channels_per_line = 23
Mon Sep 13 11:00:36 2004 : Debug: preprocess: with_ntdomain_hack = no
Mon Sep 13 11:00:36 2004 : Debug: preprocess: with_specialix_jetstream_hack = no
Mon Sep 13 11:00:36 2004 : Debug: preprocess: with_cisco_vsa_hack = yes
Mon Sep 13 11:00:36 2004 : Debug: Module: Instantiated preprocess (preprocess)
Mon Sep 13 11:00:36 2004 : Debug: Module: Loaded realm
Mon Sep 13 11:00:36 2004 : Debug: realm: format = "suffix"
Mon Sep 13 11:00:36 2004 : Debug: realm: delimiter = "@"
Mon Sep 13 11:00:36 2004 : Debug: realm: ignore_default = no
Mon Sep 13 11:00:36 2004 : Debug: realm: ignore_null = no
Mon Sep 13 11:00:36 2004 : Debug: Module: Instantiated realm (suffix)
Mon Sep 13 11:00:36 2004 : Debug: Module: Loaded files
Mon Sep 13 11:00:36 2004 : Debug: files: usersfile =
"/usr/local/newradius/etc/1812/users"
Mon Sep 13 11:00:36 2004 : Debug: files: acctusersfile =
"/usr/local/newradius/etc/1812/acct_users"
Mon Sep 13 11:00:36 2004 : Debug: files: preproxy_usersfile =
"/usr/local/newradius/etc/1812/preproxy_users"
Mon Sep 13 11:00:36 2004 : Debug: files: compat = "no"
Mon Sep 13 11:00:36 2004 : Debug: Module: Instantiated files (files)
Mon Sep 13 11:00:36 2004 : Debug: Module: Loaded Acct-Unique-Session-Id
Mon Sep 13 11:00:36 2004 : Debug: acct_unique: key = "User-Name, Acct-Session-Id,
NAS-IP-Address, Client-IP-Ad
dress, NAS-Port"
Mon Sep 13 11:00:36 2004 : Debug: Module: Instantiated acct_unique (acct_unique)
Mon Sep 13 11:00:36 2004 : Debug: Module: Loaded detail
Mon Sep 13 11:00:36 2004 : Debug: detail: detailfile =
"/var/log/radacct/%{Client-IP-Address}/detail-%Y%m%d"
Mon Sep 13 11:00:36 2004 : Debug: detail: detailperm = 384
Mon Sep 13 11:00:36 2004 : Debug: detail: dirperm = 493
Mon Sep 13 11:00:36 2004 : Debug: detail: locking = no
Mon Sep 13 11:00:36 2004 : Debug: Module: Instantiated detail (detail)
Mon Sep 13 11:00:36 2004 : Debug: Module: Loaded radutmp
Mon Sep 13 11:00:36 2004 : Debug: radutmp: filename = "/var/log/radutmp"
Mon Sep 13 11:00:36 2004 : Debug: radutmp: username = "%{User-Name}"
Mon Sep 13 11:00:36 2004 : Debug: radutmp: case_sensitive = yes
Mon Sep 13 11:00:36 2004 : Debug: radutmp: check_with_nas = yes
Mon Sep 13 11:00:36 2004 : Debug: radutmp: perm = 384
Mon Sep 13 11:00:36 2004 : Debug: radutmp: callerid = yes
Mon Sep 13 11:00:36 2004 : Debug: Module: Instantiated radutmp (radutmp)
Mon Sep 13 11:00:36 2004 : Debug: Listening on authentication *:9999
Mon Sep 13 11:00:36 2004 : Debug: Listening on accounting *:10000
Mon Sep 13 11:00:36 2004 : Debug: Listening on proxy *:10001
Mon Sep 13 11:00:36 2004 : Info: Ready to process requests.
rad_recv: Access-Request packet from host 209.172.21.6:3562, id=23,
length=98
User-Name = "test"
User-Password = "test321"
Framed-Protocol = PPP
Called-Station-Id = "2313451111"
Calling-Station-Id = "2318325965"
NAS-Port = 1
NAS-Port-Type = Async
NAS-IP-Address = 216.65.160.245
Service-Type = Framed-User
Mon Sep 13 11:02:46 2004 : Debug: Processing the authorize section of radiusd.conf
Mon Sep 13 11:02:46 2004 : Debug: modcall: entering group authorize for request 0
Mon Sep 13 11:02:46 2004 : Debug: modsingle[authorize]: calling preprocess
(rlm_preprocess) for request 0
Mon Sep 13 11:02:46 2004 : Debug: modsingle[authorize]: returned from preprocess
(rlm_preprocess) for request
0
Mon Sep 13 11:02:46 2004 : Debug: modcall[authorize]: module "preprocess" returns ok
for request 0
Mon Sep 13 11:02:46 2004 : Debug: modsingle[authorize]: calling chap (rlm_chap) for
request 0
Mon Sep 13 11:02:46 2004 : Debug: modsingle[authorize]: returned from chap
(rlm_chap) for request 0
Mon Sep 13 11:02:46 2004 : Debug: modcall[authorize]: module "chap" returns noop for
request 0
Mon Sep 13 11:02:46 2004 : Debug: modsingle[authorize]: calling mschap (rlm_mschap)
for request 0
Mon Sep 13 11:02:46 2004 : Debug: modsingle[authorize]: returned from mschap
(rlm_mschap) for request 0
Mon Sep 13 11:02:46 2004 : Debug: modcall[authorize]: module "mschap" returns noop
for request 0
Mon Sep 13 11:02:46 2004 : Debug: modsingle[authorize]: calling suffix (rlm_realm)
for request 0
Mon Sep 13 11:02:46 2004 : Debug: rlm_realm: No '@' in User-Name = "test", looking
up realm NULL
Mon Sep 13 11:02:46 2004 : Debug: rlm_realm: Found realm "NULL"
Mon Sep 13 11:02:46 2004 : Debug: rlm_realm: Adding Stripped-User-Name = "test"
Mon Sep 13 11:02:46 2004 : Debug: rlm_realm: Proxying request from user test to
realm NULL
Mon Sep 13 11:02:46 2004 : Debug: rlm_realm: Adding Realm = "NULL"
Mon Sep 13 11:02:46 2004 : Debug: rlm_realm: Authentication realm is LOCAL.
Mon Sep 13 11:02:46 2004 : Debug: modsingle[authorize]: returned from suffix
(rlm_realm) for request 0
Mon Sep 13 11:02:46 2004 : Debug: modcall[authorize]: module "suffix" returns noop
for request 0
Mon Sep 13 11:02:46 2004 : Debug: modsingle[authorize]: calling eap (rlm_eap) for
request 0
Mon Sep 13 11:02:46 2004 : Debug: rlm_eap: No EAP-Message, not doing EAP
Mon Sep 13 11:02:46 2004 : Debug: modsingle[authorize]: returned from eap (rlm_eap)
for request 0
Mon Sep 13 11:02:46 2004 : Debug: modcall[authorize]: module "eap" returns noop for
request 0
Mon Sep 13 11:02:46 2004 : Debug: modsingle[authorize]: calling files (rlm_files)
for request 0
Mon Sep 13 11:02:46 2004 : Debug: users: Matched DEFAULT at 142
Mon Sep 13 11:02:46 2004 : Debug: users: Matched DEFAULT at 545
Mon Sep 13 11:02:46 2004 : Debug: users: Matched DEFAULT at 552
Mon Sep 13 11:02:46 2004 : Debug: modsingle[authorize]: returned from files
(rlm_files) for request 0
Mon Sep 13 11:02:46 2004 : Debug: modcall[authorize]: module "files" returns ok for
request 0
Mon Sep 13 11:02:46 2004 : Debug: modcall: group authorize returns ok for
request 0
Mon Sep 13 11:02:46 2004 : Debug: auth: No authenticate method (Auth-Type)
configuration found for the request:
Rejecting the user
Mon Sep 13 11:02:46 2004 : Debug: auth: Failed to validate the user.
Mon Sep 13 11:02:46 2004 : Auth: Login incorrect: [test/test321] (from client flyer
port 1 cli 2318325965)
Mon Sep 13 11:02:46 2004 : Debug: Delaying request 0 for 1 seconds
Mon Sep 13 11:02:46 2004 : Debug: Finished request 0
Mon Sep 13 11:02:46 2004 : Debug: Going to the next request
------ Forwarded message ------
From: Alan DeKok <[EMAIL PROTECTED]>
Date: Sat, 11 Sep 2004 09:21:56 -0400
Subject: Re: CHAP & PAP
To:
William <[EMAIL PROTECTED]> wrote:
> Fri Sep 10 17:04:54 2004 : Auth: rlm_unix: Attribute "User-Password" is
required for authentication. Cannot use "CHAP-Password".
Please read the FAQ.
Alan DeKok.
-
List info/subscribe/unsubscribe? See
http://www.freeradius.org/list/users.html
-------- End of message -------
--
�William Ragsdale �http://www.netonecom.net
�Server Administrator �Office Hours �NetOne Communications, Inc.
�Work: 231-734-2917 10AM - 7PM �2186 US 10
�FAX: 231-734-6395 �Sears, MI 49679
-
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html