]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
update docs and fixes
authorAlan T. DeKok <aland@freeradius.org>
Tue, 8 Jun 2021 13:23:33 +0000 (09:23 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Tue, 8 Jun 2021 13:27:01 +0000 (09:27 -0400)
raddb/mods-available/mschap

index 905bfa59777d09fc89406b28200bda2d207fb0cf..5eb4501d6c2722aca526dfec66a8dcad4e478013 100644 (file)
@@ -10,7 +10,7 @@
 #  The `mschap` module performs `MS-CHAP` and `MS-CHAPv2` authentication.
 #
 #  MS-CHAP authentication requires access to either the
-#  Password.Cleartext or NT-Password attribute for the user.  Due to
+#  Password.Cleartext or Password.NT attribute for the user.  Due to
 #  the limitations of MS-CHAP, no other password "encryption" methods
 #  are possible.
 #
 #  Samba documentation for the meaning of SMB account control. The
 #  module does not read Samba password files. Instead, the rlm_passwd
 #  module can be used to read a Samba password file, and then supply
-#  an `NT-Password` attribute which this module can use.
+#  an `Password.NT` attribute which this module can use.
+#
+#  The `mschap` module registers a few `xlat` functions.
+#
+#  [options="header,autowidth"]
+#  |===
+#  | Function          | Description
+#  | `Challenge`       | The MS-CHAP challenge.
+#  | `Domain-Name`     | The full domain name, taken from the `User-Name` attribute
+#  | `NT-Domain`       | The NT domain portion of the domain name, taken from the `User-Name` attribute
+#  | `NT-Hash`         | Take the NT-Hash of the string passed into the xlat
+#  | `NT-Response`     | The MS-CHAP response.
+#  | `User-Name`       | The MS-CHAP username portion of the `User-Name` attribute.
+#  |===
 #
 #  [NOTE]
 #  ====