]> git.entuzijast.net Git - freeradius-dialup-admin.git/commitdiff
* Fix a typo in lib/sql/attrmap.php3
authorkkalev <kkalev>
Wed, 5 Feb 2003 21:26:22 +0000 (21:26 +0000)
committerkkalev <kkalev>
Wed, 5 Feb 2003 21:26:22 +0000 (21:26 +0000)
* Add an entry in the FAQ about the Dialup-Access attribute

Changelog
FAQ
lib/sql/attrmap.php3

index 69895d7c29bdd2bd2e1bd5074aa33e8de79e8d0c..bcfedd6061e7ff33e7ce76464d676249fbffb4f5 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -7,6 +7,8 @@ Ver 1.63:
 * Add a configuration directive general_charset. Add a language meta tag in all pages
 * Use sql_extra_servers directive when adding users in the badusers table. Add a da_sql_host_connect() function
   to connect to a specific sql host
+* Fix a typo in lib/sql/attrmap.php3
+* Add an entry in the FAQ about the Dialup-Access attribute
 Ver 1.62:
 * Remove one sql query from user_admin which was not needed.
 * Instead of a query like "LIKE 'YYYY-MM-DD%'" use "AcctStopTime >= 'YYYY-MM-DD 00:00:00 AND AcctStopTime
diff --git a/FAQ b/FAQ
index 8a729e347256bcd4aed8faa031573f841a946c98..c36243f6cfe30832e9e671c824156ae9fe80d355 100644 (file)
--- a/FAQ
+++ b/FAQ
@@ -50,6 +50,19 @@ uses the correct snmpwalk command and that it returns the correct results (snmfi
 servers). Try commenting out general_finger_type so that the Online Users page will just query the radacct
 table and not try to do a finger on the NAS.
 
+> Even though I have uncommented Dialup-Access in user_edits.attrs, when
+> editing a user, that field is not available.  Is this because in sql.attrmap
+> I have:
+>
+> checkItem     Dialup-Access                   none
+>
+> What should the attribute be?
+
+Dialup-Access is an attribute used by the ldap module. It is not implemented in
+the sql module, that's why the mapping is set to none.
+You could set Auth-Type to Reject instead.
+
+
 >
 > After I make a few changes in one of the configuration files things only work like they worked before
 >
index c69f1a8ba784aadb64b8379143b055ad27ad43dc..b4c02efd938aeb5e785fb0d6b9f999ed8b79decb 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-#Read ldap attribute map
+#Read sql attribute map
 $ARR = file("$config[general_sql_attrmap]");
 foreach($ARR as $val){
        $val=chop($val);