Builtin Firewall Blocks Localhost Access (Even Open Ports)

Ask a Question related to Windows Server, Design and Development.

  1. #1

    Default Builtin Firewall Blocks Localhost Access (Even Open Ports)

    Hi,

    I am configuring a Windows 2003 Standard Edition Server and for reasons not
    worth going into we have to use some sort of software firewall. Currently
    this is a combination of the built-in Windows firewall (from the advance
    properties of the network connection) and IPSec to further filter the access
    to the open ports in the firewall.

    But there is a weird problem. I keep getting messages like this in my
    firewall log:

    2004-06-29 14:54:47 DROP TCP 127.0.0.1 192.168.0.64 3666 4026 40 R
    3232056443 3232056443 0 - - -
    2004-06-29 14:54:50 DROP TCP 127.0.0.1 192.168.0.64 3666 4026 40 R
    3232056443 3232056443 0 - - -
    2004-06-29 14:54:56 DROP TCP 127.0.0.1 192.168.0.64 3666 4026 40 R
    3232056443 3232056443 0 - - -
    2004-06-29 14:55:02 DROP TCP 127.0.0.1 192.168.0.64 3628 4026 40 R
    3216250718 3216250718 0 - - -

    where 192.168.0.64 has been substituted for the actual IP of the server.
    First of all, why is the firewall blocking access to localhost? Secondly,
    even after I have opened those ports in the firewall, they still show up as
    blocked in the firewall log for localhost (127.0.0.1).

    Please help if you have any ideas or comments.

    Also, I am trying to get NetBIOS file sharing to work for this server
    configuration. I have opened the ports that I can determine are necessary by
    looking at the blocked traffic in the firewall log. And this works OK for a
    short time, then the connection to the file shares seem to hang for a long
    time (1-5 minutes?) for no apparent reason. Anyone else got this to work?

    Thanks in advance,
    Michael



    Michael Kennedy [UB] Guest

  2. Similar Questions and Discussions

    1. Which ports to open?
      I have made ports 19998 and 19997 available to the ODBC Server but I still can't create a database in the Administrator. If I turn off TCP/IP port...
    2. sockstat -4 not showing all open ports for apache2
      I just installed apache 2 and was trying to see if port 80 was open by doing a sockstat -4 but I couldn't see the port so I thought it didn't...
    3. Open Ports on Windows 2003
      What are ports 1025,1026,1027,2381,2518,2519,and 2520 used for in Windows 2003? When I do a port scan, these ports are open, but I don't know why...
    4. Using blocks in C (with File.open)
      Hi: I have written some code in Ruby to parse a file and yield items inside the file. It looks something like this: def each(file)_...
    5. Personal Firewall; What ports should stay open?
      I have a McAfree personal firewall and I think that in order to get Windows Updates and stuff of that nature I need to open up a port to allow the...
  3. #2

    Default Re: Builtin Firewall Blocks Localhost Access (Even Open Ports)

    Inline:

    "Michael Kennedy [UB]" <mkennedy@REMOVETHIS.unitedbinary.com> wrote in
    message news:ORkxzTiXEHA.3120@TK2MSFTNGP12.phx.gbl...
    > I am configuring a Windows 2003 Standard Edition Server and for reasons
    not
    > worth going into we have to use some sort of software firewall. Currently
    > this is a combination of the built-in Windows firewall (from the advance
    > properties of the network connection) and IPSec to further filter the
    access
    > to the open ports in the firewall.
    Using both? unnecessary overkill.
    > But there is a weird problem. I keep getting messages like this in my
    > firewall log:
    > 2004-06-29 14:54:56 DROP TCP 127.0.0.1 192.168.0.64 3666 4026 40 R
    > 3232056443 3232056443 0 - - -
    > 2004-06-29 14:55:02 DROP TCP 127.0.0.1 192.168.0.64 3628 4026 40 R
    > 3216250718 3216250718 0 - - -
    >
    > where 192.168.0.64 has been substituted for the actual IP of the server.
    > First of all, why is the firewall blocking access to localhost?
    If i get the log format right, the 127.0.0.1 is the source, not destination.
    Whatever the source is, the firewall blocks traffic to the external Ip, as
    it should do. The source IP might be spoofed, ot you have a process on your
    computer trying to access port 4026 on it - see if there is something
    listening on that port.
    > Secondly,
    > even after I have opened those ports in the firewall, they still show up
    as
    > blocked in the firewall log for localhost (127.0.0.1).
    Meaning port 4026? Anyway, you should NOT open ports unless you know what
    kind of traffic is expected to come.
    > Please help if you have any ideas or comments.
    >
    > Also, I am trying to get NetBIOS file sharing to work for this server
    > configuration. I have opened the ports that I can determine are necessary
    by
    > looking at the blocked traffic in the firewall log. And this works OK for
    a
    > short time, then the connection to the file shares seem to hang for a long
    > time (1-5 minutes?) for no apparent reason. Anyone else got this to work?
    Yes, I did. The delay is because of NetBIOS name resolution, more
    precisely - lack thereof. Use fully-qualified domain name (like
    mycomputer.mydomain.net) to map to the resources, make sure DNS is in place.
    More importantly, use CIFS direct hosting (port 445) for file sharing - more
    secure and faster: you don't have to use NetBIOS nowadays.

    --
    Svyatoslav Pidgorny, MVP, MCSE
    -= F1 is the key =-


    S. Pidgorny 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