Does ASP.Net v.1.1 Forms authentication mode require port 80 for http?

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

  1. #1

    Default Does ASP.Net v.1.1 Forms authentication mode require port 80 for http?

    I'm trying to do a "proof-of-concept" ASP.Net setup from my home/office.

    Since my ISP blocks port 80 - to prevent high-bandwidth serving from residential accounts, I used the cable router to redirect another port (coming in) back to port 80, once inside my LAN.

    My client (halfway across the country) can get to the default page (which has no security restrictions, yet). When they click to my .aspx pages, which work fine behind the router, ... nada. IE "needs to shut down"; Netscape just goes back to the default page. Ballgame over.

    To experiment, I set one .aspx page to:
    <authentication mode="None" />
    <authorization>

    <allow users="*" /> i.e. allow all users

    The other pages use:
    <authentication mode="Forms" />
    <forms loginUrl="login.aspx" />

    <authorization>

    <deny users="?" /> <!-- Deny anonymous users -->

    So, I was wondering if the http port redirection might be somehow messing up ASP.Net security?

    Any insights ... appreciated ...

    thanks,
    Mike


    ---
    Outgoing mail is certified Virus Free.
    Checked by AVG anti-virus system ([url]http://www.grisoft.com[/url]).
    Version: 6.0.543 / Virus Database: 337 - Release Date: 11/21/2003
    Michael Coughlin Guest

  2. Similar Questions and Discussions

    1. Change HTTP Port?
      I am still trying to get the FrontPage Publish Web Command to work in Dreamweaver and have traced my problem down to the fact that my ISP uses HTTP...
    2. Forms Authentication with http/https
      Hi, I am trying to implement Single Sign On solution to my web applications. I have developed a web application which does authenticaion and it...
    3. Send Basic HTTP authentication credential in the first HTTP request
      Hello, How can I make the web service proxy class send basic authentication information in the HTTP header of the first request? My...
    4. NET::FTP Passive Mode and PORT command
      Hello, I have a strange problem under perl 5.8 using NET::FTP On a network, a first Computer running a RedHat 9 here a trace of a Basic ftp...
    5. Authentication ticket, cookieless, forms authentication?
      Hi. I want to use Forms Authentication, cookieless. The issue is setting the Authentication Ticket without using cookies (!) That is, the...
  3. #2

    Default Re: Does ASP.Net v.1.1 Forms authentication mode require port 80 for http?

    If you have a Win2k/2003 server, what about creating a VPN for your client? Then they could tunnel into your home/office, and use whatever port they wanted to. PPTP uses port 1723, as defined by [url]http://www.iana.org[/url] . (Full list at [url]http://www.iana.org/assignments/port-numbers[/url] ) Quick & dirty test; set up a web site on your server, but change the properties/identification tab to use port 1723.

    Or.. along the same lines, I guess... change your web server to use another port, one that isn't blocked, preferably something in the private/dynamic range.

    It doesn't quite answer your question, but maybe it presents an easier alternative.

    -TH
    "Michael Coughlin" <noSpam@anywhere.net> wrote in message news:eqg5g4GvDHA.2360@TK2MSFTNGP10.phx.gbl...
    I'm trying to do a "proof-of-concept" ASP.Net setup from my home/office.

    Since my ISP blocks port 80 - to prevent high-bandwidth serving from residential accounts, I used the cable router to redirect another port (coming in) back to port 80, once inside my LAN.

    My client (halfway across the country) can get to the default page (which has no security restrictions, yet). When they click to my .aspx pages, which work fine behind the router, ... nada. IE "needs to shut down"; Netscape just goes back to the default page. Ballgame over.

    To experiment, I set one .aspx page to:
    <authentication mode="None" />
    <authorization>

    <allow users="*" /> i.e. allow all users

    The other pages use:
    <authentication mode="Forms" />
    <forms loginUrl="login.aspx" />

    <authorization>

    <deny users="?" /> <!-- Deny anonymous users -->

    So, I was wondering if the http port redirection might be somehow messing up ASP.Net security?

    Any insights ... appreciated ...

    thanks,
    Mike


    ---
    Outgoing mail is certified Virus Free.
    Checked by AVG anti-virus system ([url]http://www.grisoft.com[/url]).
    Version: 6.0.543 / Virus Database: 337 - Release Date: 11/21/2003
    Thomas H 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