Ad Widget

Collapse

frontend auto login

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • felipeth
    Junior Member
    • Oct 2007
    • 1

    #1

    frontend auto login

    hi,
    I need help to give acces to different users, and jump automaticly to frontend monitor page, with diferent permisions.
    I have a different services to monitoring, and different user to show this services, but I need set a default page of browser to show maps, graphs, or overview page, without use login page.
    I thought to use something like this "http://myzabbixserver/zabbix/index.php?name=user&password=xxx" but doesn't work
    whos knows how can do that?
    thanks
  • sarathyme
    Member
    • Mar 2009
    • 58

    #2
    I see that u asked the question year before. Not sure u ud still looking for answer!! posting it as matter of use for others!!!

    This would work, there is an additional hidden field to be sent across
    See Manual, Page 169, Configuring Web Scenarios

    "http://urserver/index.php?name=user&enter=Enter&password=dontsee"
    Last edited by sarathyme; 26-09-2009, 06:07. Reason: URL not seen fully

    Comment

    • tonysalinas
      Junior Member
      • Jan 2013
      • 1

      #3
      Enter="Sign in"

      Actually, I found in this other post [QUOTE=mcmyst;111286] that the proper value for the parameter enter is "Sign in".

      However, I would recommend creating a forward page instead of sending a password over an URL. For example, autologin.htm:

      <form name=login method=post action="http://172.17.12.25/zabbix/index.php">
      <input type=hidden id=name name=name value=<yerusername>>
      <input type=hidden id=enter name=enter value="Sign in">
      <input type=hidden id=password name=password value=<yerpassword>>
      <input type=submit>
      </form>
      </body>
      </html>

      Then set the appropriate permissions on yer webserver to avoid others knowing the passwerd.

      HTH

      Comment

      • huangyingja
        Junior Member
        • Apr 2015
        • 27

        #4
        Hi
        try
        http://127.0.0.1/zabbix/index.php?na...est&enter=Sign in
        it's ok now !

        Comment

        Working...