HTTPD - Internet connection problems.

Thanks to who ever solves this in advance!
I've recently followed
'https://wiki.archlinux.org/index.php/LAMP'
Which is a really comprehensive guide, as they all are.
I've ran into a problem when trying to connect to my web server through the internet(local connection works perfectly).
I'm not completely sure what's going wrong and why my port forwarding technique isn't working.
Here is my /etc/httpd/conf/httpd.conf file
With particular emphasis on
and I'm not sure if  'Listen 192.168.1.1:80'  is the correct IP (Do I use my internal router address for this option?)
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses.
#Listen 114.77.115.60:80
Listen 192.168.1.1:80
This is my whole configuration file If I've missed something.
# This is the main Apache HTTP server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.2> for detailed information.
# In particular, see
# <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
# for a discussion of each configuration directive.
# Do NOT simply read the instructions in here without understanding
# what they do. They're here only as hints or reminders. If you are unsure
# consult the online docs. You have been warned.
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path. If the filenames do *not* begin
# with "/", the value of ServerRoot is prepended -- so "/var/log/httpd/foo_log"
# with ServerRoot set to "/etc/httpd" will be interpreted by the
# server as "/etc/httpd//var/log/httpd/foo_log".
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
# Do not add a slash at the end of the directory path. If you point
# ServerRoot at a non-local disk, be sure to point the LockFile directive
# at a local disk. If you wish to share the same ServerRoot for multiple
# httpd daemons, you will need to change at least LockFile and PidFile.
ServerRoot "/etc/httpd"
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses.
#Listen 114.77.115.60:80
Listen 192.168.1.1:80
# Dynamic Shared Object (DSO) Support
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
# Example:
# LoadModule foo_module modules/mod_foo.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authn_dbm_module modules/mod_authn_dbm.so
LoadModule authn_anon_module modules/mod_authn_anon.so
LoadModule authn_dbd_module modules/mod_authn_dbd.so
LoadModule authn_default_module modules/mod_authn_default.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule authz_dbm_module modules/mod_authz_dbm.so
LoadModule authz_owner_module modules/mod_authz_owner.so
LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
LoadModule authz_default_module modules/mod_authz_default.so
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule auth_digest_module modules/mod_auth_digest.so
LoadModule file_cache_module modules/mod_file_cache.so
LoadModule cache_module modules/mod_cache.so
LoadModule disk_cache_module modules/mod_disk_cache.so
LoadModule mem_cache_module modules/mod_mem_cache.so
LoadModule dbd_module modules/mod_dbd.so
LoadModule dumpio_module modules/mod_dumpio.so
LoadModule reqtimeout_module modules/mod_reqtimeout.so
LoadModule ext_filter_module modules/mod_ext_filter.so
LoadModule include_module modules/mod_include.so
LoadModule filter_module modules/mod_filter.so
LoadModule substitute_module modules/mod_substitute.so
LoadModule deflate_module modules/mod_deflate.so
LoadModule ldap_module modules/mod_ldap.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule log_forensic_module modules/mod_log_forensic.so
LoadModule logio_module modules/mod_logio.so
LoadModule env_module modules/mod_env.so
LoadModule mime_magic_module modules/mod_mime_magic.so
LoadModule cern_meta_module modules/mod_cern_meta.so
LoadModule expires_module modules/mod_expires.so
LoadModule headers_module modules/mod_headers.so
LoadModule ident_module modules/mod_ident.so
LoadModule usertrack_module modules/mod_usertrack.so
LoadModule unique_id_module modules/mod_unique_id.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule version_module modules/mod_version.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule proxy_scgi_module modules/mod_proxy_scgi.so
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
LoadModule ssl_module modules/mod_ssl.so
LoadModule mime_module modules/mod_mime.so
LoadModule dav_module modules/mod_dav.so
LoadModule status_module modules/mod_status.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule asis_module modules/mod_asis.so
LoadModule info_module modules/mod_info.so
LoadModule suexec_module modules/mod_suexec.so
LoadModule cgi_module modules/mod_cgi.so
LoadModule cgid_module modules/mod_cgid.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule vhost_alias_module modules/mod_vhost_alias.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule dir_module modules/mod_dir.so
LoadModule imagemap_module modules/mod_imagemap.so
LoadModule actions_module modules/mod_actions.so
LoadModule speling_module modules/mod_speling.so
LoadModule userdir_module modules/mod_userdir.so
LoadModule alias_module modules/mod_alias.so
LoadModule rewrite_module modules/mod_rewrite.so
<IfModule !mpm_netware_module>
<IfModule !mpm_winnt_module>
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
# User/Group: The name (or #number) of the user/group to run httpd as.
# It is usually good practice to create a dedicated user and group for
# running httpd, as with most system services.
User http
Group http
</IfModule>
</IfModule>
# 'Main' server configuration
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# <VirtualHost> definition. These values also provide defaults for
# any <VirtualHost> containers you may define later in the file.
# All of these directives may appear inside <VirtualHost> containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
# ServerAdmin: Your address, where problems with the server should be
# e-mailed. This address appears on some server-generated pages, such
# as error documents. e.g. [email protected]
ServerAdmin [email protected]
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
# If your host doesn't have a registered DNS name, enter its IP address here.
#ServerName www.example.com:80
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
DocumentRoot "/srv/http"
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
# First, we configure the "default" to be a very restrictive set of
# features.
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
# This should be changed to whatever you set DocumentRoot to.
<Directory "/srv/http">
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
Options Indexes FollowSymLinks
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
AllowOverride None
# Controls who can get stuff from this server.
Order allow,deny
Allow from all
</Directory>
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
<FilesMatch "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</FilesMatch>
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here. If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
ErrorLog "/var/log/httpd/error_log"
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
<IfModule log_config_module>
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
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>
# You need to enable mod_logio.c to use %I and %O
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
# The location and format of the access logfile (Common Logfile Format).
# If you do not define any access logfiles within a <VirtualHost>
# container, they will be logged here. Contrariwise, if you *do*
# define per-<VirtualHost> access logfiles, transactions will be
# logged therein and *not* in this file.
CustomLog "/var/log/httpd/access_log" common
# If you prefer a logfile with access, agent, and referer information
# (Combined Logfile Format) you can use the following directive.
#CustomLog "/var/log/httpd/access_log" combined
</IfModule>
<IfModule alias_module>
# Redirect: Allows you to tell clients about documents that used to
# exist in your server's namespace, but do not anymore. The client
# will make a new request for the document at its new location.
# Example:
# Redirect permanent /foo http://www.example.com/bar
# Alias: Maps web paths into filesystem paths and is used to
# access content that does not live under the DocumentRoot.
# Example:
# Alias /webpath /full/filesystem/path
# If you include a trailing / on /webpath then the server will
# require it to be present in the URL. You will also likely
# need to provide a <Directory> section to allow access to
# the filesystem path.
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the target directory are treated as applications and
# run by the server when requested rather than as documents sent to the
# client. The same rules about trailing "/" apply to ScriptAlias httpd
# directives as to Alias.
ScriptAlias /cgi-bin/ "/srv/http/cgi-bin/"
</IfModule>
<IfModule cgid_module>
# ScriptSock: On threaded servers, designate the path to the UNIX
# socket used to communicate with the CGI daemon of mod_cgid.
#Scriptsock /var/run/httpd/cgisock
</IfModule>
# "/srv/http/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
<Directory "/srv/http/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
# DefaultType: the default MIME type the server will use for a document
# if it cannot otherwise determine one, such as from filename extensions.
# If your server contains mostly text or HTML documents, "text/plain" is
# a good value. If most of your content is binary, such as applications
# or images, you may want to use "application/octet-stream" instead to
# keep browsers from trying to display binary files as though they are
# text.
DefaultType text/plain
<IfModule mime_module>
# TypesConfig points to the file containing the list of mappings from
# filename extension to MIME-type.
TypesConfig conf/mime.types
# AddType allows you to add to or override the MIME configuration
# file specified in TypesConfig for specific file types.
#AddType application/x-gzip .tgz
# AddEncoding allows you to have certain browsers uncompress
# information on the fly. Note: Not all browsers support this.
#AddEncoding x-compress .Z
#AddEncoding x-gzip .gz .tgz
# If the AddEncoding directives above are commented-out, then you
# probably should define those extensions to indicate media types:
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
# AddHandler allows you to map certain file extensions to "handlers":
# actions unrelated to filetype. These can be either built into the server
# or added with the Action directive (see below)
# To use CGI scripts outside of ScriptAliased directories:
# (You will also need to add "ExecCGI" to the "Options" directive.)
#AddHandler cgi-script .cgi
# For type maps (negotiated resources):
#AddHandler type-map var
# Filters allow you to process content before it is sent to the client.
# To parse .shtml files for server-side includes (SSI):
# (You will also need to add "Includes" to the "Options" directive.)
#AddType text/html .shtml
#AddOutputFilter INCLUDES .shtml
</IfModule>
# The mod_mime_magic module allows the server to use various hints from the
# contents of the file itself to determine its type. The MIMEMagicFile
# directive tells the module where the hint definitions are located.
#MIMEMagicFile conf/magic
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.example.com/subscription_info.html
# EnableMMAP and EnableSendfile: On systems that support it,
# memory-mapping or the sendfile syscall is used to deliver
# files. This usually improves server performance, but must
# be turned off when serving from networked-mounted
# filesystems or if support for these functions is otherwise
# broken on your system.
#EnableMMAP off
#EnableSendfile off
# Supplemental configuration
# The configuration files in the conf/extra/ directory can be
# included to add extra features or to modify the default configuration of
# the server, or you may simply copy their contents here and change as
# necessary.
# Server-pool management (MPM specific)
#Include conf/extra/httpd-mpm.conf
# Multi-language error messages
Include conf/extra/httpd-multilang-errordoc.conf
# Fancy directory listings
Include conf/extra/httpd-autoindex.conf
# Language settings
Include conf/extra/httpd-languages.conf
# User home directories
Include conf/extra/httpd-userdir.conf
# Real-time info on requests and configuration
#Include conf/extra/httpd-info.conf
# Virtual hosts
#Include conf/extra/httpd-vhosts.conf
# Local access to the Apache HTTP Server Manual
#Include conf/extra/httpd-manual.conf
# Distributed authoring and versioning (WebDAV)
#Include conf/extra/httpd-dav.conf
#httpd Various default settings
#Include conf/extra/httpd-default.conf
# Secure (SSL/TLS) connections
#Include conf/extra/httpd-ssl.conf
# Note: The following must must be present to support
# starting without SSL on platforms with no /dev/random equivalent
# but a statically compiled-in mod_ssl.
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
Last edited by Compulsed (2011-09-09 05:29:16)

you should be listening on 127.0.0.1 - you need to ford port 80 from you router to your to the internal ip of your local machine and access your server from your external ip - remember external ip  may change periodically or if you reboot your router

Similar Messages

  • When is Apple going to fix Yosemite's internet connection problem

    Is Apple going to fix Yosemite"s internet connection problem?

    Nobody here knows any more than you do about what Apple is going to do. If you want help from other end users with your problem, you'll have to describe it in more detail.

  • Omni 10 mostly internet connection problem, also difficulties responding generally

    Dear all,
    For two weeks now i am proud owner of an omni 10 tablet. However, i already encountered some problems like the loss of the audio System, which was luckily restored with the help of the hp support via telephone.
    Unfortunately, my tablet is not properly connecting to the internet since yesterday. It also has problems opening PDF files with 'adobe read', deleting or newly creating appointments in the challenger app and foremost it sometimes does not open the settings section depite repeatedly tapping on its button..
    Most important currently is the internet connection problem. Is connects but says at the same time that the connection is limited. Additionally, it does not offer any solutions to this. That happend with three differend routers so far..
    I hope you can help me
    Greetings

    The only thing I can suggest is for you to follow as many steps in this document as you can: Troubleshooting Wireless Network
    *** If my reply was helpful, please click on the "Kudos Thumbs-Up" on the right, as a way to say "Thanks!".
    If this reply also fixed your issue - please click the "Accept as Solution" button, so that others can find the same answer. ***

  • How to resolve this: Some Gmail features have failed to load due to an Internet connectivity problem. If this problem persists, try reloading the page, using the older version, or using basic HTML mode.

    Keep getting this message while using Gmail "Some Gmail features have failed to load due to an Internet connectivity problem. If this problem persists, try reloading the page, using the older version, or using basic HTML mode. "
    I have to use the older version of gmail for it to work properly.

    now i cant even send emails out of gmail, except when using the older version.

  • I have updated all of my plugins and still cannot get any videos to play i get either an error message or internet connection problem message and my internet is working fine

    videos have stopped playing on firefox, i get an error message on youtube, facebook and on netflix i get an internet connection problem, i have no problem with my internet connection, i have updated all of my plug ins...what has happened

    If you get an error that says can't backup, try moving the existing backup file to a safe location and thry again. again. You can find the location of the backup file here:
    iPhone and iPod touch: About backups

  • Some Gmail features have failed to load due to an Internet connectivity problem.

    This error message comes up both using Firefox and Chrome when using G mail. Also if it works at all,
    switching from compose to draft just takes very long or keeps working.
    No problem with G mail using Internet Explorer or Safari.
    I have used Firefox for many years & want to go back when I can solve this Vexing problem.

    Thank you for your help.
    I reset Firefox, re started and wanted to answer using G mail with Firefox,
    and the same error message comes up.. When it does the screan gets
    very lite with the error message on top.
    '''''Some Gmail features have failed to load due to an Internet connectivity problem. If this problem persists, try reloading the page, or using the basic HTML version. Learn More.'''''
    I am now using Explorer to send this!
    Sy

  • Has anyone experienced internet connection problems through Comcast after taking a recent Apple security download?

    Has anyone experienced internet connection problems through Comcast after taking a recent security update download from Apple??

    Hello jessie029, and a warm welcome to the forums!
    What browser do you connect with?
    Safe Boot from the HD, (holding Shift key down at bootup), it will try to repair your Disk Directory while the spinning radian is happening, so let it go, run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, then Open System Preferences>Network>Configure>Proxies Tab, make sure none are set, like for HTTP & HTTPS to use at Home, if you use it at 2 locations, just make a New Location for home.
    Make a New Location, Using network locations in Mac OS X ...
    http://docs.info.apple.com/article.html?artnum=106653
    Then try putting these numbers in Network>TCP/IP>DNS Servers for the Interface you're using...
    208.67.222.222
    208.67.220.220
    Then Apply. These are safer/faster than most ISP's DNS numbers, and have been patched against DNS poisoning.
    https://www.opendns.com/homenetwork/start/device/apple-osx-tige
    How to Flush DNS in Mac OSX using the Terminal.
    In Mac OSX versions 10.5.1 and before, the command lookupd -flushcache performs this task:
    lookupd -flushcache
    Reboot.

  • HT1657 get money back on a movie because of internet connection problem

    I rented a movie but i had an internet connection problem, now after 24 hours it is fixed but my movie has expired. Can I get my money back ?

    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

  • Internet connectivity problems. Conflicting IP address?

    For the last few months I have been experiencing significant internet connection problems on my mac mini. Although at times my connection is ok, the majority of the time I'm suffering from what would best be described as an "intermittent" internet connection. It seems that my internet connection is constantly cutting out for short periods of time before re-establishing itself.
    I'm connected to the internet via a wireless network (netgear router). There are also two windows machines (one laptop and one desktop) and a PS3 connected on the same network (also occasionally there is a macbook connected to the network too).
    I've been with the same ISP for over a year now and previously had always experienced a good connection, also all the other devices connected on this network seem to have fine connectivity so I doubt there is any problem with my service provider.
    It could be a coincidence but the emergence of the problem seems to have conincided with my flatmates purchase of a laptop. When my flatmate first connected his laptop to the internet I received a message on my mac mini stating there was an IP address conflict, although I have not had that message again and I seem to suffer from bad connectivity at all times, not just when my flatmates laptop is turned on! Could these to issues be related?
    I'd be very grateful for any advice on how to resolve this issue as it's getting to be a very significant problem, thanks in advance for any replies...

    Also try using the open dns servers instead or your ISP's. System Preferences>Network. Advanced>DNS. Click on + and add the following: 208.67.222.222 and 208.67.220.220. Hit Ok,then Apply.

  • OSX Mavericks having internet connection problems.

    Just updated to OSX Mavericks on my early 2011 MacBook Pro, and it's having internet connection problems. I'm using wi-fi, and so far only Firefox and Mail will connect. All other programs (such as iTunes and App Store) won't establish a connection. This is a problem that only started after I installed Mavericks. What can I do to fix this? Thanks in advance.

    App Store / iTunes Store relies on Safari settings if you can't access secure sites from Safari then they won't work...  Reset Safari  and make sure Block Cookies Setting is not set to Always.  You can also try to create a new user and see if it works there to help isolate the issue.

  • Internet connection problems with OSX 10.10.3

    Does anyone else have very bad Internet connection problems after downloading OSX 10.101.3?  Does anyone have a solution? P.S. What do you think of PHOTOS, after Aperture?

    1, No problems here with internet on 10.10.3
    2, No solution
    3, I think that Photos is a toy. Apple has basically neutered both Aperture and iPhotos with their efforts to make their desktop solution match the iOS solution.
    I am currently looking for a non-Apple solution for my photographic needs since Photos in no way shape or form is able to fill my needs.

  • Just one month before i bought iphone 5... but the iphone has the internet connectivity problem... while a iphone 4s is cathcing 3G tower, whereas iphone 5 is catching 2G network only.... I've tried so many things to get recovered, but alas

    Just one month before i bought iphone 5... but the iphone has the internet connectivity problem... while a iphone 4s is cathcing 3G tower, whereas iphone 5 is catching 2G network only.... I've tried so many things to get recovered, but alas, nothing is workable- such as- restaring the iphone, reseting the networks etc... Please help me out from this problem..

    to be clear, my phone works fine when not in motion in a vehicle.  If I pull over and come to a complete stop, remaining in the car, my phone works.
    And while the phone is not working when I'm in motion, an internet search or a text message will go through, but I can not use Siri or any voice assistance when doing the text message or internet search.  The microphone is greyed out.
    So this is a unique issue, which appears to be the iPhone and not Verizon.

  • Persistent internet connection problems.

    Every 8 months I get a spate of internet connection problems that last for a few months. (Meaning I get relief for two months at a time, and bad service for two months). When the previous bout of internet connection issues happened I was fortunate enough to get a good technician who showed me how to reset the connection at the fios box at the entrance to my home, by unplugging the backup battery, unplugging the connection box and then reconnecting the battery and plugging back in the connection box. The technician had remarked that there were problems with the main fios connection system to the townhouses, and somehow that got fixed.
    This time I have not had as much luck. The technicians on duty have had me reset the cable router (which isn't the problem) and even replace the cable router (also not the problem). Fortunately I have remembered the previous technician's solution and am doing that every three days, without contacting technical support since they have proven useless at this time, only continuing to have me get new routers that do not even connect without the previous steps.
    How do I get Verizion to bother to listen to me? At this time I am really wishing Cox was in my neighborhood, since I was able to go at least eight months straight without problems from them. 
    I am hoping that this causes someone to check on this problem. You had a good technician on technical support once, but  not now.
    By the way - this has been going on for over two years.

    AtrixWolfe
    Since we haven't heard back from you or have received a form submission as requested in your private support case, it appears assistance is no longer required. If you need any future help with your Verizon service, please make a post here on the forums so we can assist.
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • RG54G2 Wireless Router Internet Connection Problem

    Hi,
    (apologies for the long message - trying to cover all details - summary: wireless router often drops internet connection)
    I recently bought an RG54G2 Wireless Router, a CB54G2 PCMCIA Wireless card and a D-Link GWL-630 PCMCIA Wireless card.  In addition to two laptops connected to the wireless router WLAN, I have two PCs (one Win WP Pro SP 1 and one Win98SE) connected to the router via wired LAN.  I also have a SurfBoard SB3100 Cable Modem connected to the WAN port (this connects to my ISP -  Optusnet (Australia) via DHCP).
    The problem I have is that the internet connection is disconnected many times a day (often every few minutes, sometimes an hour or so).  I am able to reconnect by resetting the wireless router via the wireless router configuration page.  When the internet is disconnected I am still able to access the computers on the LAN/WLAN (via Windows Explorer and Ping), I am also able to ping the router and the Cable Modem, but nothing outside of the cable modem.
    Also, when the internet is disconnected the System Status page indicates that the router is still connected to the internet, and the Diagnostics page passes the Test Connection test, though no external pings work.
    I did not have this problem when the cable modem was connected directly to the Win98SE PC (and other PCs via ICS).
    I have disabled the WLAN and the problem still exists with only the wired LAN.
    I have changed numerous settings in the wireless router config page with no success (eg disabling DHCP and setting each IP address, minimising LAN and WLAN speeds to 10 and 11MBps plus others).
    I have upgraded the wireless router firmware to R1.0.6.0 (no change to the problem).
    Searching on Google I have found several other cases of routers with unstable internet connections (none refering to the MSI routers), but none had solutions that helped my situation (most replies suggested updating the firmware).
    Any suggestions of how to make the router internet connection stable?
    Thanks,
    Mike

    maybe this is the FIX 4 wireles router internet connection problem
    please let me know if any one fix the problem with this tips
    thankz
    M. B.      Feb 6 2004, 8:20 am     hide options
    Newsgroups: comp.os.ms-windows.networking.windows
    From: "M. B." - Find messages by this author
    Date: Fri, 06 Feb 2004 16:20:48 GMT
    Local: Fri, Feb 6 2004 8:20 am
    Subject: SOLUTION to my router loosing connection to Windows XP
    Reply | Reply to Author | Forward | Print | Individual Message | Show original | Report Abuse
    I am happy to report that after 8 days of constant battles, reboots, phone
    calls, cable pulling, router changing, it seems that I finally have found a
    combination that has had me using Verizon DSL account for over 12 hours so
    far without any kind of interruptions.
    Since so many of you tried giving me comments and suggestions, I felt that
    it is necessary for me to post this here so that the next person will not
    (hopefully) need to go through this hell as I did!
    My original problem was that when after I purchased a D-Link Wireless Router
    DI-624, I would get disconnected from Verizon DSL at least once every 2
    hours or so. My internet access would "freeze" and then a little popup box
    at the bottom right system tray would tell me that the "LAN cable has been
    unplugged".   After about a minute or so, my internet connection would be
    back working   This was NEVER happening during the 2+ years I was using my
    Westell modem alone (running in router mode).
    Please keep in mind: The problem I was having was not wireless related as
    it was happening to the desktop computer to which the router/westell was
    connected to!
    During these last 8 days, I tried: one DI-624 wireless router, two Netgear
    614v3 routers and two Linksys WRT54G v.2 routers. In addition, I received a
    brand new Westell 2200 modem from Verizon.   I also tried about four
    different CAT-5 cables. Here is the final outcome:
    I have the Linksys WRT54G (version 2) wireless router connected to the
    Netgear Fast Ethernet FA310TX network card in Auto-Sense mode (using the
    built-in XP drivers, as Netgear told me that there was never a newer
    revision released). I have DISABLED the built-in 3Com Gigabit LOM (3C940)
    network card (via the ASUS P4C800 Deluxe motherboard BIOS), DISABLED the
    Zero Wireless Configuration service, and have put in the IP/Gateway/DNS
    address numbers inside my Windows XP Network Connections | LAN setup. My
    operating system is Windows XP Pro SP1 and the modem is a Westell 2200
    configured as bridge only.
    If my situation continues to be stable, I *might* try to go back to the 3Com
    built-in card (disable any power management) and then re-enabling the Zero
    Wireless Configuration services. But in reality, I am happy with the way
    things are and have already spent enough time trying to get my router to
    work with Verizon DSL without having it drop connections!
    Now, the next step will be setting up the WIRELESS part of this. I don't
    even yet have a laptop with me on the premises, but the 802.11g card that I
    already have is the D-Link DWL-G650. I hope and assume that this will work
    okay with the Linksys...
    One thing I must say is that I never realized that how many problems other
    users are having. I would have thought that since 802.11x has been around
    in the mainstream by now 2+ years, that things would have been much more
    "system friendlier".   And again, my issues were not even WIRELESS related.
    All 3 tech supports were not really helpful, as none of them realized that
    the problem is somehow between the router and Windows XP (Ethernet card?)
    loosing a connection, which of course results in Verizon DSL loosing the
    connection also.
    One other comment about the Netgear 614 v.3 router: A number of people have
    responded to tell me that they have had this random "router resetting"
    happen to them (where the routers behaves as if someone turned the power off
    and then back on, and the lights flash) just as if you first turn it on). I
    was lucky to witness it myself during one of the "disconnects" that I had.
    This was actually the reason why I went back to try the Linksys one more
    time. So, I would definitely recommend staying way from this 614 (version
    3) model.
    Once again - THANK YOU everyone!

  • Internet Connection Problem on MSI K7N2-Delta-ILSR

    Hi, recently I buy an MSI K7N2-Delta-ILSR.I have a problem when I was trying to connect to the Internet through my modem on WinXP Pro SP1. It bring me up an error message 678 ( The computer that was tried to connect did not respond...). I have also a second hard disk with Mel windows. On disk the disk with the Mel I don’t have any problem with the internet connection. All my settings are same on WInXP pro and Mel.I have checked I thousand times. My computer configuration is:
    Athlon XP 2400+ Overclocked to 2205MHz
    2 memory modules of 256MB 400 manufactured by Samsung
    TharmalTake Volcano 11
    Triplex Xabre 400 PRO with 128MB
    Hercules Gamesurrround Fortissimo III 7.1
    Microcom InPorte Home modem 56k
    Leadtek winfast 2000 (TV/FM radio)
    Acard SCSI controller (Acard AEC-6710D) for my scanner
    WesternDigital WD800 GB
    WesternDigital  15.3gb
    Bios ver.7.4  
    Can anyone help me?

    Quote
    Originally posted by Roger Wilco
    Hmmmmm, I\'m also having a problem with the onboard lan of the K7N2 Delta.
    I have an ADSL connection, and have an Alcatel SpeedTouch Home modem.
    I pretty much get the same error as SiliconMan (The computer that was tried to connect did not respond...)
    I ended up giving up on it for the time being, just using my SMC NIC. Would be quite interested in finding out what the problem is though.
    Anyone else in the same boat?
    Hi,
        Your problem is not the same, SiliconMan is trying to connect with a dial-up modem not LAN. Your problem sounds like it may be configuration, do a search on this post, I'm sure you will find people with onboard LAN troubles. It's hard to troubleshoot though since you didn't provide any info about your computer. Good Luck  
    Rob

Maybe you are looking for

  • Satellite P100 won't start (or stop) ...

    The computer does not respond at all to the start up button... The two first lights from the left are constantly on though (that is if either the battery or the AC adapter are plugged in). What's weird is that they're not orange or blue, but both. Bo

  • Outlook & Exchange 2010 AutoDiscover and 2008 R2 Terminal Services

    Hi, I have a strange issue with Outlook 2010 in Terminal Server 2008 R2 which we don't have on the standard user desktops. When setting up a new outlook profile it does not populate the user and server details. The setup has to be done manually. Once

  • Constant Purple & Orange Flashing light on BTHH3

    We're currently experiencing problems with our line. No internet. As mentioned on the subject, the light on the Hub3 is constantly flashing purple and orange. On the white Openreach modem, the LED light labeled DSL will blink for a few of seconds, th

  • Interactive reports - Number formats

    Hi Guys, I am new to Interactive Reports. I have a number column that I want to but a format on and have a total which I also want to format. Any ideas. TO_CHAR means I cannot apply an aggregate. Thanks

  • ITunes Database Tables

    I've been working on ripping my extensive CD collection to iTunes over the past year, and have started to have serious issues with the database size and the way iTunes updates the tables. My database file has reached 92MB in size and the library itse