mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-22 08:11:44 +00:00
96_allowed: update documentation for basicAuth/passwort
git-svn-id: https://svn.fhem.de/fhem/trunk@13492 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
6b5873e986
commit
8231edc54e
@ -360,30 +360,19 @@ EOF
|
|||||||
|
|
||||||
<a name="basicAuth"></a>
|
<a name="basicAuth"></a>
|
||||||
<li>basicAuth, basicAuthMsg<br>
|
<li>basicAuth, basicAuthMsg<br>
|
||||||
request a username/password authentication for FHEMWEB access. You have
|
request a username/password authentication for FHEMWEB access.
|
||||||
to set the basicAuth attribute to the Base64 encoded value of
|
It can be a base64 encoded string of user:password, an SHA256 hash
|
||||||
<user>:<password>, e.g.:<ul>
|
(which should be set via the corresponding set command) or a perl
|
||||||
# Calculate first the encoded string with the commandline program<br>
|
expression if enclosed in {}, where $user and $password are set, and
|
||||||
$ echo -n fhemuser:secret | base64<br>
|
which returns true if accepted or false if not. Examples:
|
||||||
ZmhlbXVzZXI6c2VjcmV0<br>
|
|
||||||
# Set the FHEM attribute<br>
|
|
||||||
attr allowed_WEB basicAuth ZmhlbXVzZXI6c2VjcmV0
|
|
||||||
</ul>
|
|
||||||
You can of course use other means of base64 encoding, e.g. online
|
|
||||||
Base64 encoders.<br>
|
|
||||||
|
|
||||||
If the argument of basicAuth is enclosed in { }, then it will be
|
|
||||||
evaluated, and the $user and $password variable will be set to the
|
|
||||||
values entered. If the return value is true, then the password will be
|
|
||||||
accepted.<br>
|
|
||||||
|
|
||||||
If basicAuthMsg is set, it will be displayed in the
|
|
||||||
popup window when requesting the username/password.<br>
|
|
||||||
|
|
||||||
Example:<br>
|
|
||||||
<ul><code>
|
<ul><code>
|
||||||
attr allowedWEB basicAuth { "$user:$password" eq "admin:secret" }<br>
|
attr allowed basicAuth ZmhlbXVzZXI6c2VjcmV0<br>
|
||||||
|
attr allowed basicAuth SHA256:F87740B5:q8dHeiClaPLaWVsR/rqkzcBhw/JvvwVi4bEwKmJc/Is<br>
|
||||||
|
attr allowed basicAuth {"$user:$password" eq "fhemuser:secret"}<br>
|
||||||
</code></ul>
|
</code></ul>
|
||||||
|
If basicAuthMsg is set, it will be displayed in the popup window when
|
||||||
|
requesting the username/password. Note: not all browsers support this
|
||||||
|
feature.<br>
|
||||||
</li><br>
|
</li><br>
|
||||||
|
|
||||||
<a name="basicAuthExpiry"></a>
|
<a name="basicAuthExpiry"></a>
|
||||||
@ -399,20 +388,9 @@ EOF
|
|||||||
<a name="password"></a>
|
<a name="password"></a>
|
||||||
<li>password<br>
|
<li>password<br>
|
||||||
Specify a password for telnet instances, which has to be entered as the
|
Specify a password for telnet instances, which has to be entered as the
|
||||||
very first string after the connection is established. If the argument
|
very first string after the connection is established. The same rules
|
||||||
is enclosed in {}, then it will be evaluated, and the $password
|
apply as for basicAuth, with the expception that there is no user to be
|
||||||
variable will be set to the password entered. If the return value is
|
specified.<br>
|
||||||
true, then the password will be accepted. If this parameter is
|
|
||||||
specified, FHEM sends telnet IAC requests to supress echo while
|
|
||||||
entering the password. Also all returned lines are terminated with
|
|
||||||
\r\n.
|
|
||||||
Example:<br>
|
|
||||||
<ul>
|
|
||||||
<code>
|
|
||||||
attr allowed_tPort password secret<br>
|
|
||||||
attr allowed_tPort password {"$password" eq "secret"}
|
|
||||||
</code>
|
|
||||||
</ul>
|
|
||||||
Note: if this attribute is set, you have to specify a password as the
|
Note: if this attribute is set, you have to specify a password as the
|
||||||
first argument when using fhem.pl in client mode:
|
first argument when using fhem.pl in client mode:
|
||||||
<ul>
|
<ul>
|
||||||
@ -522,31 +500,20 @@ EOF
|
|||||||
|
|
||||||
<a name="basicAuth"></a>
|
<a name="basicAuth"></a>
|
||||||
<li>basicAuth, basicAuthMsg<br>
|
<li>basicAuth, basicAuthMsg<br>
|
||||||
Betrifft nur FHEMWEB Instanzen (siehe validFor): Fragt username /
|
Erzwingt eine Authentifizierung mit Benutzername/Passwort für die
|
||||||
password zur Autentifizierung ab. Es gibt mehrere Varianten:
|
zugerdnete FHEMWEB Instanzen. Der Wert kann entweder das base64
|
||||||
<ul>
|
kodierte Benutzername:Passwort sein, ein SHA256 hash (was man am besten
|
||||||
<li>falls das Argument <b>nicht</b> in { } eingeschlossen ist, dann wird
|
mit dem passenden set Befehl erzeugt), oder, falls er in {}
|
||||||
es als base64 kodiertes benutzername:passwort interpretiert.
|
eingeschlossen ist, ein Perl Ausdruck. Für Letzteres wird
|
||||||
Um sowas zu erzeugen kann man entweder einen der zahlreichen
|
$user und $passwort gesetzt, und muss wahr zurückliefern, falls
|
||||||
Webdienste verwenden, oder das base64 Programm. Beispiel:
|
Benutzername und Passwort korrekt sind. Beispiele:
|
||||||
<ul><code>
|
<ul><code>
|
||||||
$ echo -n fhemuser:secret | base64<br>
|
attr allowed basicAuth ZmhlbXVzZXI6c2VjcmV0<br>
|
||||||
ZmhlbXVzZXI6c2VjcmV0<br>
|
attr allowed basicAuth SHA256:F87740B5:q8dHeiClaPLaWVsR/rqkzcBhw/JvvwVi4bEwKmJc/Is<br>
|
||||||
fhem.cfg:<br>
|
attr allowed basicAuth {"$user:$password" eq "fhemuser:secret"}<br>
|
||||||
attr WEB basicAuth ZmhlbXVzZXI6c2VjcmV0
|
</code></ul>
|
||||||
</code></ul>
|
basicAuthMsg wird (in manchen Browsern) in dem Passwort Dialog als
|
||||||
</li>
|
Überschrift angezeigt.<br>
|
||||||
<li>Werden die Argumente in { } angegeben, wird es als perl-Ausdruck
|
|
||||||
ausgewertet, die Variablen $user and $password werden auf die
|
|
||||||
eingegebenen Werte gesetzt. Falls der Rückgabewert wahr ist,
|
|
||||||
wird die Anmeldung akzeptiert.
|
|
||||||
|
|
||||||
Beispiel:<br>
|
|
||||||
<ul><code>
|
|
||||||
attr allwedWEB basicAuth { "$user:$password" eq "admin:secret" }<br>
|
|
||||||
</code></ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</li><br>
|
</li><br>
|
||||||
|
|
||||||
|
|
||||||
@ -554,30 +521,18 @@ EOF
|
|||||||
<li>password<br>
|
<li>password<br>
|
||||||
Betrifft nur telnet Instanzen (siehe validFor): Bezeichnet ein
|
Betrifft nur telnet Instanzen (siehe validFor): Bezeichnet ein
|
||||||
Passwort, welches als allererster String eingegeben werden muss,
|
Passwort, welches als allererster String eingegeben werden muss,
|
||||||
nachdem die Verbindung aufgebaut wurde. Wenn das Argument in { }
|
nachdem die Verbindung aufgebaut wurde. Für die Werte gelten die
|
||||||
eingebettet ist, dann wird es als Perl-Ausdruck ausgewertet, und die
|
Regeln von basicAuth, mit der Ausnahme, dass nur Passwort und kein
|
||||||
Variable $password mit dem eingegebenen Passwort verglichen. Ist der
|
Benutzername spezifiziert wird.<br> Falls dieser Parameter gesetzt
|
||||||
zurückgegebene Wert wahr (true), wird das Passwort akzeptiert.
|
wird, sendet FHEM telnet IAC Requests, um ein Echo während der
|
||||||
Falls dieser Parameter gesetzt wird, sendet FHEM telnet IAC Requests,
|
Passworteingabe zu unterdrücken. Ebenso werden alle
|
||||||
um ein Echo während der Passworteingabe zu unterdrücken.
|
zurückgegebenen Zeilen mit \r\n abgeschlossen.<br>
|
||||||
Ebenso werden alle zurückgegebenen Zeilen mit \r\n abgeschlossen.
|
Falls dieses Attribut gesetzt wird, muss als erstes Argument ein
|
||||||
|
Passwort angegeben werden, wenn fhem.pl im Client-mode betrieben wird:
|
||||||
Beispiel:<br>
|
<ul><code>
|
||||||
<ul>
|
|
||||||
<code>
|
|
||||||
attr allowed_tPort password secret<br>
|
|
||||||
attr allowed_tPort password {"$password" eq "secret"}
|
|
||||||
</code>
|
|
||||||
</ul>
|
|
||||||
Hinweis: Falls dieses Attribut gesetzt wird, muss als erstes Argument
|
|
||||||
ein Passwort angegeben werden, wenn fhem.pl im Client-mode betrieben
|
|
||||||
wird:
|
|
||||||
<ul>
|
|
||||||
<code>
|
|
||||||
perl fhem.pl localhost:7072 secret "set lamp on"
|
perl fhem.pl localhost:7072 secret "set lamp on"
|
||||||
</code>
|
</code></ul>
|
||||||
</ul>
|
</li><br>
|
||||||
</li><br>
|
|
||||||
|
|
||||||
<a name="globalpassword"></a>
|
<a name="globalpassword"></a>
|
||||||
<li>globalpassword<br>
|
<li>globalpassword<br>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user