Access¶
/stm.cgi?auth¶
Configure the authentication settings.
GET /stm.cgi?auth=ABC*D*E*F
A
determines whether Basic Authentication is enabled, integer0-1
B
determines whether upgrade is enabled, integer0-1
C
is the admin username, string (Base64 encoded)D
is the admin password, string (Base64 encoded)E
is the user username, string (Base64 encoded)F
is the user password, string (Base64 encoded)
Example:
http://192.168.1.100/stm.cgi?auth=01YWRtaW4=*YWRtaW4=*dXNlcg==*dXNlcg==
/post.cgi?users_save¶
Set list of users to access LC via Basic Authentication, mainly to control outputs.
POST /post.cgi?users_save
&uA=B*C*D&uA=B*C*D&&
A
is index of entry to set, integer0-49
B
is the username, stringC
is the password, stringD
determines whether the entry is active, integer0-1
Example:
http://192.168.1.100/post.cgi?users_save
&u0=user1*pass1*1&u1=user2*pass2*1&&