Skip to content

Access

/stm.cgi?auth

  • Configure the authentication settings.

    GET /stm.cgi?auth=ABC*D*E*F
    
    • A determines whether Basic Authentication is enabled, integer 0-1
    • B determines whether upgrade is enabled, integer 0-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.

    GET /post.cgi?users_save
    
    &uA=B*C*D&uA=B*C*D&&
    
    • A is index of entry to set, integer 0-49
    • B is the username, string
    • C is the password, string
    • D determines whether the entry is active, integer 0-1

    Example:

    http://192.168.1.100/post.cgi?users_save
    
    &u0=user1*pass1*1&u1=user2*pass2*1&&
    

Last update: 2020-09-21
Back to top