apache2 - Apache suddenly stops serving to LAN computers, now only localhost

14
2014-03
  • Questioner

    TLDR: Apache WAS serving pages to LAN computers, but suddenly only works on localhost.

    Background info:

    (I discovered the WAMP, XAMPP, etc packages a day after) I built a WAMP server individually, with

    • Windows 7 HomePremium 64-bit
    • Apache 2.2.21
    • PHP 5.2.17
    • MySQL 5.5

    I will include httpd.conf, php.ini, httpd -S, errorlogs, host file, w/e you need, just tell me if you'd like it on a codepaste site, or inline here, or as a comment below.

    Edit 1:

    I should clarify that I made NO changes to any configuration files between when it worked and when it didn't, except for some reason near the same time, the MySQL service wouldn't start, because suddenly the lines

    #default-character-set=utf8
    #default-collation=utf8_unicode_ci
    

    became illegal in my.ini, so I commented them out.

    httpd.conf (my normal version)

    (to test if the problem was here, I used a much smaller file (below), which still error'd.) All comments removed, no commands removed. Full file.

    ServerRoot "C:/WebServer/Apache2.2"
    Listen 80
    LoadModule actions_module modules/mod_actions.so
    LoadModule alias_module modules/mod_alias.so
    LoadModule asis_module modules/mod_asis.so
    LoadModule auth_basic_module modules/mod_auth_basic.so
    LoadModule authn_default_module modules/mod_authn_default.so
    LoadModule authn_file_module modules/mod_authn_file.so
    LoadModule authz_default_module modules/mod_authz_default.so
    LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
    LoadModule authz_host_module modules/mod_authz_host.so
    LoadModule authz_user_module modules/mod_authz_user.so
    LoadModule autoindex_module modules/mod_autoindex.so
    LoadModule cgi_module modules/mod_cgi.so
    LoadModule dir_module modules/mod_dir.so
    LoadModule env_module modules/mod_env.so
    LoadModule include_module modules/mod_include.so
    LoadModule isapi_module modules/mod_isapi.so
    LoadModule log_config_module modules/mod_log_config.so
    LoadModule mime_module modules/mod_mime.so
    LoadModule negotiation_module modules/mod_negotiation.so
    LoadModule setenvif_module modules/mod_setenvif.so
    <IfModule !mpm_netware_module>
    <IfModule !mpm_winnt_module>
    User daemon
    Group daemon
    </IfModule>
    </IfModule>
    ServerAdmin [email protected]
    ServerName 10.0.0.9:80
    DocumentRoot "C:/WebServer/--site--"
    <Directory />
        Options FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
    </Directory>
    <Directory "C:/WebServer/--site--">
        Options Indexes FollowSymLinks
        IndexOptions +FancyIndexing +FoldersFirst
        AllowOverride None
        order deny,allow
        deny from all
        allow from 10.0.0.0/8
        allow from 127.0.0.1
    </Directory>
        <Directory "C:/WebServer/phpMyAdmin-3.4.9-english"> 
            order deny,allow
            deny from all
            allow from 10.0.0.0/8
            allow from 127.0.0.1
        </Directory>
    
        NameVirtualHost *:80
    
        <VirtualHost *:80>
            ServerName test
            DocumentRoot "C:/WebServer/--site--/dump"
            DirectoryIndex index.php
        </VirtualHost>
    
        <VirtualHost *:80>
            ServerName home
            DocumentRoot "C:/WebServer/--site--"
            DirectoryIndex index.php
        </VirtualHost>
    
        <VirtualHost *:80>
            ServerName db.home
            DocumentRoot "C:/WebServer/phpMyAdmin-3.4.9-english"
            DirectoryIndex index.php
        </VirtualHost>
    
    <IfModule dir_module>
        DirectoryIndex index.php index.html index.htm main.html main.htm
    </IfModule>
    <FilesMatch "^\.ht">
        Order allow,deny
        Deny from all
        Satisfy All
    </FilesMatch>
    ErrorLog "logs/error.log"
    LogLevel warn
    <IfModule log_config_module>
        LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
        LogFormat "%h %l %u %t \"%r\" %>s %b" common
        <IfModule logio_module>
          LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
        </IfModule>
        CustomLog "logs/access.log" common
    </IfModule>
    <IfModule alias_module>
        ScriptAlias /cgi-bin/ "C:/WebServer/Apache2.2/cgi-bin/"
    </IfModule>
    <Directory "C:/WebServer/Apache2.2/cgi-bin">
        AllowOverride None
        Options None
        Order allow,deny
        Deny from all
    </Directory>
    DefaultType text/plain
    <IfModule mime_module>
        TypesConfig conf/mime.types
        AddType application/x-compress .Z
        AddType application/x-gzip .gz .tgz
        AddType application/x-httpd-php .php .inc
    </IfModule>
    <IfModule mod_php5.c>
      php_value include_path ".:/usr/local/lib/php"
      php_admin_flag safe_mode on
    </IfModule>
    <IfModule ssl_module>
    SSLRandomSeed startup builtin
    SSLRandomSeed connect builtin
    </IfModule>
    LoadModule php5_module "C:/WebServer/PHP/php5apache2_2.dll"
    AddType application/x-httpd-php .php .inc
        PHPIniDir "C:/WebServer/Apache2.2/conf"
    

    C:\WebServer\Apache2.2\bin>httpd -S

    VirtualHost configuration:
    wildcard NameVirtualHosts and _default_ servers:
    *:80                   is a NameVirtualHost
             default server test (C:/WebServer/Apache2.2/conf/httpd.conf:278)
             port 80 namevhost test (C:/WebServer/Apache2.2/conf/httpd.conf:278)
             port 80 namevhost home (C:/WebServer/Apache2.2/conf/httpd.conf:284)
             port 80 namevhost db.home (C:/WebServer/Apache2.2/conf/httpd.conf:290)
    Syntax OK
    

    Edit 2:

    The LAN computers time out trying to access 10.0.0.9 or any hostfile alias: "The connection has timed out: The server at home is taking too long to respond." On a fresh-log restart of Apache, after attempting to access 10.0.0.9 from a LAN computer, access.log is still blank, and error.log says:

    [Wed Feb 15 23:56:20 2012] [notice] Apache/2.2.21 (Win32) PHP/5.2.17 configured -- resuming normal operations
    [Wed Feb 15 23:56:20 2012] [notice] Server built: Sep  9 2011 10:26:10
    [Wed Feb 15 23:56:20 2012] [notice] Parent: Created child process 16324
    [Wed Feb 15 23:56:20 2012] [notice] Child 16324: Child process is running
    [Wed Feb 15 23:56:20 2012] [notice] Child 16324: Acquired the start mutex.
    [Wed Feb 15 23:56:20 2012] [notice] Child 16324: Starting 64 worker threads.
    [Wed Feb 15 23:56:20 2012] [notice] Child 16324: Starting thread to listen on port 80.
    

    Possible causes:

    • I uninstalled Norton AV and installed AVG Free 2012
    • I rebooted it (though not the first time)
    • as mentioned above, MySQL wouldn't start after the last reboot, and I tracked it down to "default-character-set=utf8" not being allowed anymore, in favor of "character-set-server=utf8"

    Edit 3: (sorry this is getting so long)

    Using this minimalist httpd.conf (no ServerAlias's) yields no change; the server is still inaccessible from multiple LAN PCs.

    ServerRoot "C:/WebServer/Apache2.2"
    Listen 80
    LoadModule actions_module modules/mod_actions.so
    LoadModule alias_module modules/mod_alias.so
    LoadModule asis_module modules/mod_asis.so
    LoadModule auth_basic_module modules/mod_auth_basic.so
    LoadModule authn_default_module modules/mod_authn_default.so
    LoadModule authn_file_module modules/mod_authn_file.so
    LoadModule authz_default_module modules/mod_authz_default.so
    LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
    LoadModule authz_host_module modules/mod_authz_host.so
    LoadModule authz_user_module modules/mod_authz_user.so
    LoadModule autoindex_module modules/mod_autoindex.so
    LoadModule cgi_module modules/mod_cgi.so
    LoadModule dir_module modules/mod_dir.so
    LoadModule env_module modules/mod_env.so
    LoadModule include_module modules/mod_include.so
    LoadModule isapi_module modules/mod_isapi.so
    LoadModule log_config_module modules/mod_log_config.so
    LoadModule mime_module modules/mod_mime.so
    LoadModule negotiation_module modules/mod_negotiation.so
    LoadModule setenvif_module modules/mod_setenvif.so
    <IfModule !mpm_netware_module>
        <IfModule !mpm_winnt_module>
            User daemon
            Group daemon
        </IfModule>
    </IfModule>
    ServerAdmin [email protected]
    ServerName 10.0.0.9:80
    DocumentRoot "C:/WebServer/--site--"
    <Directory "C:/WebServer/--site--">
        Options Indexes FollowSymLinks
        IndexOptions +FancyIndexing +FoldersFirst
        AllowOverride None
        allow from all
    </Directory>
    <IfModule dir_module>
        DirectoryIndex index.php index.html index.htm main.html main.htm
    </IfModule>
    ErrorLog "logs/error.log"
    LogLevel warn
        <IfModule log_config_module>
            LogFormat "%h %t %>s %b \t\"%r\" \tfrom:(\"%{Referer}i\") ~ [\"%{User-Agent}i\"]" combined
            LogFormat "%h %l %u %t %>s %b \t\"%r\"" common
            <IfModule logio_module>
              LogFormat "%h %l %u %t %>s %b \"%r\" ~ \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
              CustomLog "logs/access2.log" combinedio
            </IfModule>
            CustomLog "logs/access.log" common
            CustomLog "logs/access.combined.log" combined
        </IfModule>
    DefaultType text/plain
    <IfModule mime_module>
        TypesConfig conf/mime.types
        AddType application/x-compress .Z
        AddType application/x-gzip .gz .tgz
        AddType application/x-httpd-php .php .inc
    </IfModule>
    <IfModule mod_php5.c>
      php_value include_path ".:/usr/local/lib/php"
      php_admin_flag safe_mode on
    </IfModule>
    LoadModule php5_module "C:/WebServer/PHP/php5apache2_2.dll"
    AddType application/x-httpd-php .php .inc
        PHPIniDir "C:/WebServer/Apache2.2/conf"
    

    Edit 4:

    netstat -an

      Proto  Local Address          Foreign Address        State
      TCP    0.0.0.0:21             0.0.0.0:0              LISTENING
      TCP    0.0.0.0:80             0.0.0.0:0              LISTENING
      TCP    0.0.0.0:135            0.0.0.0:0              LISTENING
      TCP    0.0.0.0:445            0.0.0.0:0              LISTENING
      TCP    0.0.0.0:554            0.0.0.0:0              LISTENING
      TCP    0.0.0.0:990            0.0.0.0:0              LISTENING
      TCP    0.0.0.0:2869           0.0.0.0:0              LISTENING
      TCP    0.0.0.0:3306           0.0.0.0:0              LISTENING
      TCP    0.0.0.0:5357           0.0.0.0:0              LISTENING
      TCP    0.0.0.0:10243          0.0.0.0:0              LISTENING
      TCP    0.0.0.0:49152          0.0.0.0:0              LISTENING
      TCP    0.0.0.0:49153          0.0.0.0:0              LISTENING
      TCP    0.0.0.0:49154          0.0.0.0:0              LISTENING
      TCP    0.0.0.0:49156          0.0.0.0:0              LISTENING
      TCP    0.0.0.0:49167          0.0.0.0:0              LISTENING
      TCP    10.0.0.9:139           0.0.0.0:0              LISTENING
      TCP    10.0.0.9:61322         74.125.224.39:443      ESTABLISHED
      TCP    10.0.0.9:61324         74.125.53.125:5222     ESTABLISHED
      TCP    10.0.0.9:61327         74.125.224.136:443     ESTABLISHED
      TCP    10.0.0.9:61332         74.125.224.113:443     ESTABLISHED
      TCP    10.0.0.9:64902         80.68.88.15:80         CLOSE_WAIT
      TCP    10.0.0.9:65041         74.125.224.98:443      ESTABLISHED
      TCP    127.0.0.1:2559         0.0.0.0:0              LISTENING
      TCP    127.0.0.1:4664         0.0.0.0:0              LISTENING
      TCP    127.0.0.1:5679         0.0.0.0:0              LISTENING
      TCP    127.0.0.1:7438         0.0.0.0:0              LISTENING
      TCP    127.0.0.1:14147        0.0.0.0:0              LISTENING
      TCP    127.0.0.1:14147        127.0.0.1:61315        ESTABLISHED
      TCP    127.0.0.1:61315        127.0.0.1:14147        ESTABLISHED
      TCP    [::]:21                [::]:0                 LISTENING
      TCP    [::]:135               [::]:0                 LISTENING
      TCP    [::]:445               [::]:0                 LISTENING
      TCP    [::]:554               [::]:0                 LISTENING
      TCP    [::]:990               [::]:0                 LISTENING
      TCP    [::]:2869              [::]:0                 LISTENING
      TCP    [::]:3306              [::]:0                 LISTENING
      TCP    [::]:3587              [::]:0                 LISTENING
      TCP    [::]:5357              [::]:0                 LISTENING
      TCP    [::]:10243             [::]:0                 LISTENING
      TCP    [::]:49152             [::]:0                 LISTENING
      TCP    [::]:49153             [::]:0                 LISTENING
      TCP    [::]:49154             [::]:0                 LISTENING
      TCP    [::]:49156             [::]:0                 LISTENING
      TCP    [::]:49167             [::]:0                 LISTENING
      TCP    [::1]:3306             [::1]:60428            ESTABLISHED
      TCP    [::1]:5679             [::]:0                 LISTENING
      TCP    [::1]:14147            [::]:0                 LISTENING
      TCP    [::1]:60428            [::1]:3306             ESTABLISHED
      UDP    0.0.0.0:500            *:*                    
      UDP    0.0.0.0:3702           *:*                    
      UDP    0.0.0.0:3702           *:*                    
      UDP    0.0.0.0:3702           *:*                    
      UDP    0.0.0.0:3702           *:*                    
      UDP    0.0.0.0:4500           *:*                    
      UDP    0.0.0.0:5004           *:*                    
      UDP    0.0.0.0:5005           *:*                    
      UDP    0.0.0.0:5355           *:*                    
      UDP    0.0.0.0:50469          *:*                    
      UDP    0.0.0.0:52432          *:*                    
      UDP    0.0.0.0:64969          *:*                    
      UDP    10.0.0.9:137           *:*                    
      UDP    10.0.0.9:138           *:*                    
      UDP    10.0.0.9:1900          *:*                    
      UDP    10.0.0.9:63401         *:*                    
      UDP    127.0.0.1:1900         *:*                    
      UDP    127.0.0.1:48000        *:*                    
      UDP    127.0.0.1:48001        *:*                    
      UDP    127.0.0.1:63402        *:*                    
      UDP    [::]:500               *:*                    
      UDP    [::]:3540              *:*                    
      UDP    [::]:3702              *:*                    
      UDP    [::]:3702              *:*                    
      UDP    [::]:3702              *:*                    
      UDP    [::]:3702              *:*                    
      UDP    [::]:4500              *:*                    
      UDP    [::]:5004              *:*                    
      UDP    [::]:5005              *:*                    
      UDP    [::]:5355              *:*                    
      UDP    [::]:50470             *:*                    
      UDP    [::]:52433             *:*                    
      UDP    [::]:64970             *:*                    
      UDP    [::1]:1900             *:*                    
      UDP    [::1]:63400            *:*                    
      UDP    [fe80::e954:ccd0:fa11:7768%11]:1900  *:*                    
      UDP    [fe80::e954:ccd0:fa11:7768%11]:63399  *:*                    
    
  • Answers
  • Iain

    Check that the firewall on yor 'server' system is allowing traffic on port 80. Check that noting else is using your external IP address port 80 (skype is good at stealing it for example).

  • Area 51

    Why are there no error log entries detailing what the apache involvement is ?

    Oh, I see, nothing.

    Then produce netstat -an and check what is already messing with port 80.

    Of course, it's Windoze, so it may just be "because".


  • Related Question

    connection - Can not connect to some ports on Local Area Network
  • Samet Sorgut

    I have 2 PCs connected by a switch.
    PC1--<-->--Switch--<-->--PC2

    Both PCs have Windows 7.
    Both are able to connect and share files with each other.
    Both PCs can connect via remote desktop.
    Firewall is disabled on both PCs.
    But I can not connect from PC1 to the web server in PC2 on port 80.
    PC2 has proxy server runnin on port 8888.
    I can connect to port 8888 by sockets from PC1 but I can't connect to port 80. Connection timeouts...

    What can be the problem and how can be solved?

    EDIT: NETSTAT Output of PC2 (netstat -anb):

    Active Connections
    
      Proto  Local Address          Foreign Address        State
      TCP    0.0.0.0:80             0.0.0.0:0              LISTENING
     Can not obtain ownership information
      TCP    0.0.0.0:135            0.0.0.0:0              LISTENING
      RpcSs
     [svchost.exe]
      TCP    0.0.0.0:445            0.0.0.0:0              LISTENING
     Can not obtain ownership information
      TCP    0.0.0.0:554            0.0.0.0:0              LISTENING
     [wmpnetwk.exe]
      TCP    0.0.0.0:809            0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    0.0.0.0:990            0.0.0.0:0              LISTENING
      WcesComm
     [svchost.exe]
      TCP    0.0.0.0:1025           0.0.0.0:0              LISTENING
     [wininit.exe]
      TCP    0.0.0.0:1026           0.0.0.0:0              LISTENING
      eventlog
     [svchost.exe]
      TCP    0.0.0.0:1027           0.0.0.0:0              LISTENING
      Schedule
     [svchost.exe]
      TCP    0.0.0.0:1029           0.0.0.0:0              LISTENING
     [lsass.exe]
      TCP    0.0.0.0:1037           0.0.0.0:0              LISTENING
     [services.exe]
      TCP    0.0.0.0:2383           0.0.0.0:0              LISTENING
     [msmdsrv.exe]
      TCP    0.0.0.0:2869           0.0.0.0:0              LISTENING
     Can not obtain ownership information
      TCP    0.0.0.0:3389           0.0.0.0:0              LISTENING
      CryptSvc
     [svchost.exe]
      TCP    0.0.0.0:5357           0.0.0.0:0              LISTENING
     Can not obtain ownership information
      TCP    0.0.0.0:10243          0.0.0.0:0              LISTENING
     Can not obtain ownership information
      TCP    127.0.0.1:21           0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    127.0.0.1:23           0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    127.0.0.1:25           0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    127.0.0.1:110          0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    127.0.0.1:143          0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    127.0.0.1:554          0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    127.0.0.1:808          0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    127.0.0.1:1080         0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    127.0.0.1:1434         0.0.0.0:0              LISTENING
     [sqlservr.exe]
      TCP    127.0.0.1:2080         0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    127.0.0.1:5679         0.0.0.0:0              LISTENING
      WcesComm
     [svchost.exe]
      TCP    127.0.0.1:7000         0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    127.0.0.1:7438         0.0.0.0:0              LISTENING
      WcesComm
     [svchost.exe]
      TCP    127.0.0.1:8010         0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    127.0.0.1:8080         0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    127.0.0.1:8110         0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    192.168.2.3:21         0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    192.168.2.3:23         0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    192.168.2.3:25         0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    192.168.2.3:110        0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    192.168.2.3:139        0.0.0.0:0              LISTENING
     Can not obtain ownership information
      TCP    192.168.2.3:143        0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    192.168.2.3:554        0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    192.168.2.3:1080       0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    192.168.2.3:2080       0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    192.168.2.3:7000       0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    192.168.2.3:8010       0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    192.168.2.3:8080       0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    192.168.2.3:8110       0.0.0.0:0              LISTENING
     [WinGate.exe]
      TCP    [::]:80                [::]:0                 LISTENING
     Can not obtain ownership information
      TCP    [::]:135               [::]:0                 LISTENING
      RpcSs
     [svchost.exe]
      TCP    [::]:445               [::]:0                 LISTENING
     Can not obtain ownership information
      TCP    [::]:554               [::]:0                 LISTENING
     [wmpnetwk.exe]
      TCP    [::]:990               [::]:0                 LISTENING
      WcesComm
     [svchost.exe]
      TCP    [::]:1025              [::]:0                 LISTENING
     [wininit.exe]
      TCP    [::]:1026              [::]:0                 LISTENING
      eventlog
     [svchost.exe]
      TCP    [::]:1027              [::]:0                 LISTENING
      Schedule
     [svchost.exe]
      TCP    [::]:1029              [::]:0                 LISTENING
     [lsass.exe]
      TCP    [::]:1037              [::]:0                 LISTENING
     [services.exe]
      TCP    [::]:2383              [::]:0                 LISTENING
     [msmdsrv.exe]
      TCP    [::]:2869              [::]:0                 LISTENING
     Can not obtain ownership information
      TCP    [::]:3389              [::]:0                 LISTENING
      CryptSvc
     [svchost.exe]
      TCP    [::]:3587              [::]:0                 LISTENING
      p2pimsvc
     [svchost.exe]
      TCP    [::]:5357              [::]:0                 LISTENING
     Can not obtain ownership information
      TCP    [::]:10243             [::]:0                 LISTENING
     Can not obtain ownership information
      TCP    [::1]:1434             [::]:0                 LISTENING
     [sqlservr.exe]
      TCP    [::1]:5679             [::]:0                 LISTENING
      WcesComm
     [svchost.exe]
      TCP    [fe80::adb8:8865:e549:ec5d%23]:445  [fe80::c79:b496:f8cc:7d1b%23]:1121  ESTABLISHED
     Can not obtain ownership information
      TCP    [fe80::adb8:8865:e549:ec5d%23]:1034  [fe80::c79:b496:f8cc:7d1b%23]:1029  ESTABLISHED
     [spoolsv.exe]
      TCP    [fe80::adb8:8865:e549:ec5d%23]:1051  [fe80::c79:b496:f8cc:7d1b%23]:3587  ESTABLISHED
      p2pimsvc
     [svchost.exe]
      TCP    [fe80::adb8:8865:e549:ec5d%23]:1054  [fe80::c79:b496:f8cc:7d1b%23]:3587  TIME_WAIT
      UDP    0.0.0.0:123            *:*                    
      W32Time
     [svchost.exe]
      UDP    0.0.0.0:500            *:*                    
      IKEEXT
     [svchost.exe]
      UDP    0.0.0.0:520            *:*                    
     [WinGate.exe]
      UDP    0.0.0.0:3544           *:*                    
      iphlpsvc
     [svchost.exe]
      UDP    0.0.0.0:3702           *:*                    
      EventSystem
     [svchost.exe]
      UDP    0.0.0.0:3702           *:*                    
      FDResPub
     [svchost.exe]
      UDP    0.0.0.0:3702           *:*                    
      EventSystem
     [svchost.exe]
      UDP    0.0.0.0:3702           *:*                    
      FDResPub
     [svchost.exe]
      UDP    0.0.0.0:4500           *:*                    
      IKEEXT
     [svchost.exe]
      UDP    0.0.0.0:5004           *:*                    
     [wmpnetwk.exe]
      UDP    0.0.0.0:5005           *:*                    
     [wmpnetwk.exe]
      UDP    0.0.0.0:5355           *:*                    
      Dnscache
     [svchost.exe]
      UDP    0.0.0.0:51148          *:*                    
     [WinGate.exe]
      UDP    0.0.0.0:55535          *:*                    
     [WinGate.exe]
      UDP    0.0.0.0:55834          *:*                    
      FDResPub
     [svchost.exe]
      UDP    0.0.0.0:55836          *:*                    
      EventSystem
     [svchost.exe]
      UDP    0.0.0.0:55838          *:*                    
      EventSystem
     [svchost.exe]
      UDP    0.0.0.0:59370          *:*                    
     [WinGate.exe]
      UDP    0.0.0.0:65467          *:*                    
     [WinGate.exe]
      UDP    0.0.0.0:65468          *:*                    
     [WinGate.exe]
      UDP    127.0.0.1:53           *:*                    
     [WinGate.exe]
      UDP    127.0.0.1:368          *:*                    
     [WinGate.exe]
      UDP    127.0.0.1:1900         *:*                    
      SSDPSRV
     [svchost.exe]
      UDP    127.0.0.1:8000         *:*                    
     [WinGate.exe]
      UDP    127.0.0.1:55627        *:*                    
      SSDPSRV
     [svchost.exe]
      UDP    192.168.2.3:53         *:*                    
     [WinGate.exe]
      UDP    192.168.2.3:67         *:*                    
     [WinGate.exe]
      UDP    192.168.2.3:137        *:*                    
     Can not obtain ownership information
      UDP    192.168.2.3:138        *:*                    
     Can not obtain ownership information
      UDP    192.168.2.3:368        *:*                    
     [WinGate.exe]
      UDP    192.168.2.3:1900       *:*                    
      SSDPSRV
     [svchost.exe]
      UDP    192.168.2.3:8000       *:*                    
     [WinGate.exe]
      UDP    192.168.2.3:51174      *:*                    
      iphlpsvc
     [svchost.exe]
      UDP    192.168.2.3:55626      *:*                    
      SSDPSRV
     [svchost.exe]
      UDP    [::]:123               *:*                    
      W32Time
     [svchost.exe]
      UDP    [::]:500               *:*                    
      IKEEXT
     [svchost.exe]
      UDP    [::]:3540              *:*                    
      p2pimsvc
     [svchost.exe]
      UDP    [::]:3702              *:*                    
      EventSystem
     [svchost.exe]
      UDP    [::]:3702              *:*                    
      FDResPub
     [svchost.exe]
      UDP    [::]:3702              *:*                    
      FDResPub
     [svchost.exe]
      UDP    [::]:3702              *:*                    
      EventSystem
     [svchost.exe]
      UDP    [::]:4500              *:*                    
      IKEEXT
     [svchost.exe]
      UDP    [::]:5004              *:*                    
     [wmpnetwk.exe]
      UDP    [::]:5005              *:*                    
     [wmpnetwk.exe]
      UDP    [::]:5355              *:*                    
      Dnscache
     [svchost.exe]
      UDP    [::]:55835             *:*                    
      FDResPub
     [svchost.exe]
      UDP    [::]:55837             *:*                    
      EventSystem
     [svchost.exe]
      UDP    [::]:55839             *:*                    
      EventSystem
     [svchost.exe]
      UDP    [::1]:1900             *:*                    
      SSDPSRV
     [svchost.exe]
      UDP    [::1]:55625            *:*                    
      SSDPSRV
     [svchost.exe]
      UDP    [fe80::adb8:8865:e549:ec5d%23]:546  *:*                    
      Dhcp
     [svchost.exe]
      UDP    [fe80::adb8:8865:e549:ec5d%23]:1900  *:*                    
      SSDPSRV
     [svchost.exe]
      UDP    [fe80::adb8:8865:e549:ec5d%23]:55624  *:*                    
      SSDPSRV
     [svchost.exe]
    

  • Related Answers
    Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.