Windows and Forms Authentication

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Windows and Forms Authentication

    Hi,

    I need some help on building a security model for an intranet I am currently
    building. I am aware that Intranets lend themselves quite nicely to Windows
    authentication, since you would assume that all employees will have accounts
    on the web server and the domain in which the server sits. So, I thought
    about implementing this method of authentication in my intranet. However, I
    now realise that no all users will have accounts on the web server. I
    initially thought about adding them, but the volume and type of users that
    this involves makes this solution impractical.

    I then decided that forms authentication would be the solution. However,
    following some usability studies, it is quite clear that our internal
    employees will not use the intranet if they have have to log on when they
    want to access it. It is not a problem for external users as far as we are
    aware who expect to go through the process of logging on to our intranet.
    So using forms authentication is not an ideal solution all round.

    This leads me to my third idea. What about if I were to provide access to
    internal employees through their windows accounts, but implement forms
    authentication for those that do not have an account. Trouble is, I believe
    that you cannot mix the two forms of authentication within an asp.net
    application. Does anyone else have any suggestions about the best way for
    me to move forward?

    Glenn


    Glenn Wilson Guest

  2. Similar Questions and Discussions

    1. Windows and Forms Authentication together ???
      Hi, I am trying to create a site that will be used by both employees and external users, so both types of users trying to access the same pages. ...
    2. Forms and Windows Authentication
      Hello! I have a project that I'm working on and have some thoughts on how to secure it but was hoping to get suggestions on the feasibility of my...
    3. Combining forms and Windows authentication
      Hi! I've read Paul Wilsons article on mixing forms and Windows authentication...
    4. Forms authentication with Windows authentication
      Hi, I have an ASP.NET web site that uses IIS Basic Authentication and accesses an OLAP Server at various stages. The OLAP Server authentication...
    5. Forms / Windows Authentication
      I have an application where I would like to present a nice HTML based login page but log the user in using Windows Authentication. I know that...
  3. #2

    Default Windows and Forms Authentication

    Hi,

    The thing with Form Authentication is that you handle the
    authentication by yourself
    You set the Authenticated options manually... On your
    login page check first if the user are a local one (maybe
    by IP address), if so then set the Authentication options
    and redirect him/her to next page. And if the IP don't
    exist in your local network show the login form and
    handle this instead.

    I took the IP address as an example because if you use
    server variable that tells who you are logged in as you
    will get null value if the page is set to anonymous
    access.

    JN
    [url]http://www.nsquared2.net[/url]



    >-----Original Message-----
    >Hi,
    >
    >I need some help on building a security model for an
    intranet I am currently
    >building. I am aware that Intranets lend themselves
    quite nicely to Windows
    >authentication, since you would assume that all
    employees will have accounts
    >on the web server and the domain in which the server
    sits. So, I thought
    >about implementing this method of authentication in my
    intranet. However, I
    >now realise that no all users will have accounts on the
    web server. I
    >initially thought about adding them, but the volume and
    type of users that
    >this involves makes this solution impractical.
    >
    >I then decided that forms authentication would be the
    solution. However,
    >following some usability studies, it is quite clear that
    our internal
    >employees will not use the intranet if they have have to
    log on when they
    >want to access it. It is not a problem for external
    users as far as we are
    >aware who expect to go through the process of logging on
    to our intranet.
    >So using forms authentication is not an ideal solution
    all round.
    >
    >This leads me to my third idea. What about if I were to
    provide access to
    >internal employees through their windows accounts, but
    implement forms
    >authentication for those that do not have an account.
    Trouble is, I believe
    >that you cannot mix the two forms of authentication
    within an asp.net
    >application. Does anyone else have any suggestions
    about the best way for
    >me to move forward?
    >
    >Glenn
    >
    >
    >.
    >
    Johan Nomrén NSQUARED2 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139