[SOLVED] Local Hosting Using a Dynamic DNS

I've been trying to self host a domain to use owncloud with, through www.mydomainname/owncloud.com or something similar. I've gotten a LAMP set up with a virtual host, have signed up with https://freedns.afraid.org/, set the afraid nameservers, set my IP as an A record through my domain provider and have tried to install a dynamic DNS client on my server computer, though I have not gotten successful results. On my LAMP I've set a virtual host for my domain and I've been able to connect to it locally but not outside of my network. I was able to ping my domain that would in result ping my home IP address but now I get an unknown host. I've also tried to set up my DDWRT router with the provided dyndns. At this point I'm not sure what I'm doing incorrectly.
Another issue I've been having has been finding a working dyndns client, afraid-dyndns-uv from the AUR gives me a hash error, and the only promising client I've been able to find is freedns-afraid, but it's an RPM package and I don't know how to make use of the files in the tarball.
I can provide any needed configs, though I don't think that a config would be an error as I've been able to start up my httpd service and connect to it locally perfectly fine. I would greatly appreciate any help c:
Last edited by 0X1A (2013-06-16 20:19:10)

0X1A wrote:Alright, so the problem with not being able to ping my IP again was with my registrar nameservers, I had to remove the provided nameservers from them and only use the afraid ones. Now I can ping my IP address but I still can't connect to my domain through my LAMP so now I'm guessing it's either a port forwarding issue or a issue with my apache configuration. What exactly should I have on my httpd conf? I have the ServerName set to my domain name, is there something I'm missing?
My "ServerName" isn't set to anything particularly special. It's "archsystem:80", which is what I call my computer locally. Here's the entire file for reference:
# 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 'log/access_log'
# with ServerRoot set to '/www' will be interpreted by the
# server as '/www/log/access_log', where as '/log/access_log' will be
# interpreted as '/log/access_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 12.34.56.78:80
Listen 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
LoadModule php5_module modules/libphp5.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 archsystem: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 "/home/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 "/home/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 All
# 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 index.php
</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
# 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 /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
# Use for PHP 5.x:
AddHandler php5-script php
# 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
# MaxRanges: Maximum number of Ranges in a request before
# returning the entire resource, or one of the special
# values 'default', 'none' or 'unlimited'.
# Default setting is to accept 200 Ranges.
#MaxRanges unlimited
# 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
# 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>
# PHP
Include conf/extra/php5_module.conf
# phpMyAdmin
Include conf/extra/httpd-phpmyadmin.conf
# General shared files
Include conf/extra/httpd-drcouzelis.conf
# Angela's files
Include conf/extra/httpd-angela.conf
I'm sorry, I'm having a really hard time understanding the terminology you're using (maybe because I'm just not educated enough). Even so, I'll look into what else might be the problem...

Similar Messages

  • Use two dynamic dns updaters  on one machine?

    I am wanting to enable virtual hosting in Apache2 on my PPC leopard mac mini to host more than one domain I own. I've been a DYN DNS customer for many years, but it appears now the costs for adding another domain has skyrocketed. If I keep my first one with them, and go to no-ip for the second, that would mean I would need to run two of their client updater apps. Is that a good idea? Doable? thanx, sam

    OK....I figured it out.
    I was able to set the IPV4 properties on the ones needing filtering to use the IP or OpenDNS as the primary DNS and my server address as the secondary and that works.
    I removed OpenDNS forwarder from the server, flushed dns on all machines and so far it's working perfectly.  The machines that are not going to be filtered just go through the server for DNS.
    Hopefully, after a while it doesn't break down!

  • Clearing Host Name from Dynamic DNS set up - Home ...

    I changed my DNS provider due to poor performance. Since then I have been trying to change the host name and it stays with the original.  Do I have to rest teh home hub back to default settings and set it up again?
    If so this is very poor...!

    Oh and that is "reset the hub"

  • WRT160n local hosts in DNS

    I'm wondering if it's possible to have local hosts added to the DNS.  As in, when a host connects and gets an IP assigned using DHCP, it advertises its hostname to the router.  It would be nice if that same hostname resolved to an IP, since the router is a DNS server.
    For example, if I connect to computers named "sleepy" and "dopey" to the router, it would be nice if I could visit http://sleepy from dopey.
    For a while, I had DD-WRT installed, and it had this feature (as have a number of other routers I've used), but it looks like the factory firmware doesn't support it.  Am I missing something?
    (I removed DD-WRT because, while it had some nice features, it crashed fairly often on large Wireless-N transfers.)

    The Router offers a Dynamic Domain Name System (DDNS) feature. DDNS lets you assign a fixed host and domain name to a dynamic Internet IP address. It is useful when you are hosting your own website, FTP server, or other server behind the Router.
    Here is the screenshot for the same:

  • Dynamic DNS Port Forwarding Set up on Airport Extreme

    I just bought the new AEBS and am unable to afp into my computer from outside the network. I use a dynamic DNS service (www.dyndns.org) and have not had trouble in the past, but now it tells me that the server does not exist. What is the trick? I have tried many options in the forum, but with no luck. I am using firmware 7.2.1 (that is what came with the base station). My Internet service is through Verizon and I know that it does not provide port problems since it worked with my Netgear router, I don't have file sharing on for mounted disks (there are none attached) and entered my DYN DNS information in the Bonjour tab. I know this should not be so complicated, but nothing seems to work. For some reason, the base station is using port 548 (i have been told) and tried using another port). Someone please help.

    First of all you must install a DDNS Client on the machine you want to access. I don't know if DynDNS has one.
    No-ip.com as one. Just create a free account, install and configure the client software. It will transmit the Wan IP of you network to the no-ip servers, then you'll be able to connect IF the port for afp is routed to the correct machine in the AEBS. Here is a link the the ports used by Apple products:
    http://docs.info.apple.com/article.html?artnum=106439
    Jean-Luc Marechal
    http://www.tarmac.be

  • Sending email from local host

    sir ,
    i want to know ,can send email from the local host using smtp server .
    my web server is tomcat 4.1
    please help me

    1. create a resource in your server.xml
    <Resource
    name="mail/mailhost"
    type="javax.mail.Session"
    mail.smtp.host="mailhost"/>
    2. added the following in your web.xml (application level)
    <ResourceLink global="mail/mailhost" name="mail/mailhost" type="javax.mail.Session"/>
    3. get your mail session by look up on the jndi context.
    4. send your mail using java mail.
    read the for details info
    http://tomcat.apache.org/tomcat-4.0-doc/jndi-resources-howto.html

  • DNS or Local Host Name Issue

    I have an iMac, 10.6.2 that continues to get a duplicate IP address error. I have determined that this iMac is seeing itself as another machine on the network, hence the duplicate IP error. I have changed the local host name under system preferences -->network (and in sharing) to imac10.6.2-username However, on the WINS tab of system preferences-->network the computer name shows as imac 9B14C4. I have manually changed this on the WINS tab and but it doesn't actually change it. I have flushed DNS and used the scutil--gethostname command to no avail. Additionally, this iMac does not show up when browsing the network from any machine on the network. All other Macs here do. Any suggestions?
    Message was edited by: EricWeiner
    Actually I can browse to it through the network by either the DNS name or the WINS name, even though I tried to make them the same.

    I use a Mac mini as a small AV server, and have exactly the same issue. Message keeps popping up at least once a day. Changing name in Preferences doesn't make any difference. After a few weeks it's gone from 'Centerstage' to 'Centerstage-8'. I even formatted the HD and installed Leopard and after that Snow Leopard. Didn't solve anything. Very irritating. Apple only recognizes this as a Mac OS X server issue.
    Help.

  • Is there a way to run using local host ip (127.0.0.1)?

    I am trying to get a working system at home. Obviously I cannot use a dialup
    dynamic IP address, but is there a way to enable iAS 6.0 SP3 to use the
    local host address of 127.0.0.1?
    kas.exe complains 'value of admin host in registry is invalid (localhost IP
    is not acceptable)'. I am running Windows 2000 and I do have a network card
    that I sporadically use to connect a laptop. It appears that with Windows
    2000, I can not use my Ethernet cards PI address unless I actually have it
    connected to a network.
    Any assistance would be appreciated.
    Thanks,
    Bret Hansen

    Yes. Use the loopback adapter.
    Bret Hansen wrote:
    I am trying to get a working system at home. Obviously I cannot use a dialup
    dynamic IP address, but is there a way to enable iAS 6.0 SP3 to use the
    local host address of 127.0.0.1?

  • Local host name already in use

    I routinely get a message saying "local host name is already in use on this network. The name has ben changed to...."

    Is this a home network or a workplace network?
    If you open up terminal.
    Go to Applications> Utilities> Terminal and type in hostname
    what comes up?

  • Using Airport Extreme 802.11n to update automatic IP for Dynamic DNS ???

    Hello,
    does anybody now if it is possible to use Airport to forward the recent IP address to DynDNS.com ? As most routers are able to forward the IP to a provider like DynDns eachtime when IP address is renewed . I have found at the Airport Configruation Utility in the manual configuration the following fields: Button Airport -> Button "Basic Station" next to the field Airport extreme name the Button "config" -> a new pop up opens and at the bottom I am able to activate "dynamic global hostname" and to fill in the user ID + password. But the IP address is not updated at DYNDNS.com
    Has anybody experience with Dynamic DNS and Airport extreme ?
    Thanks in advance
    Stephan

    You may want to try using the DynDNS update client for Macintosh. http://www.dyndns.com/support/clients/mac.html

  • Muse export HTML to use as Android APP ( local host kiosk)

    I was wondering how to load my exported HTML site folder onto an Android device to play as Native web style APP from start screen.
    I do not want to run kiosk mode screen locking programs using  web hosted data.
    I need fast screen load from loading directly from local hosted site.
    THX

    are you asking a question or did you just post a tutorial here? you might want to post it as a blog post or wiki entry instead.

  • Extremely slow download (8 kbps) and using "show local-host" to troubleshoot

    I have a USB device that gets firmware updates from the manufacture, the download of the firmware is very fast at other sites and at home except 1 site.  I found the following difference on the 2 ASAs (one where the download is fast the other where the download is very slow and cannot be completed) using "sh local-host" command. I think the ESP connection is the problem but I am not sure why its there - and I can see the byte count increment very slowly.  What would cause this connection to use ESP?
    At the sites where the download is fast
    DMZFW#  sh local-host 10.51.40.18 connection
    local host: <10.51.40.18>,
        TCP flow count/limit = 1/unlimited
        TCP embryonic count to host = 0
        TCP intercept watermark = unlimited
        UDP flow count/limit = 0/unlimited
      Conn:
        TCP Outside 70.42.140.65:80 inside 10.51.40.18:54632, idle 0:00:00, bytes 19480442, flags UIO
    ... ... (repeat the above command)
      Conn:
        TCP Outside 70.42.140.65:80 inside 10.51.40.18:54632, idle 0:00:00, bytes 24182974, flags UIO
    At the site where the download is extremely slow (like 8 kbps)
    DMZFW# sh local-host 10.1.40.74 connection
    local host: <10.1.40.74>,
        TCP flow count/limit = 1/unlimited
        TCP embryonic count to host = 0
        TCP intercept watermark = unlimited
        UDP flow count/limit = 0/unlimited
      Xlate:
        PAT Global X.X.X.X(30020) Local 10.1.40.74(50582) 
      Conn:
        ESP outside 70.42.140.65 inside 10.1.40.74, idle 0:02:48, bytes 0
        TCP outside 70.42.140.65:80 inside 10.1.40.74:50582, idle 0:00:00, bytes 2308822, flags UIO
    ... ... (repeat the above command)
      Conn:
        ESP outside 70.42.140.65 inside 10.1.40.74, idle 0:02:51, bytes 0
        TCP outside 70.42.140.65:80 inside 10.1.40.74:50582, idle 0:00:00, bytes 2318474, flags UIO

    I managed to run the test again a few minutes ago, was a bit quicker this time
    Test1 comprises of two tests 1.
    Best Effort Test: -provides background information.
    Download Speed 7 Kbps 0 Kbps 2000 Kbps
    Max Achievable Speed Download speedachieved during the test was - 7 Kbps For your connection, the acceptable range of speeds is 800-2000 Kbps.
    Additional Information: Your DSL Connection Rate :2167 Kbps(DOWN-STREAM), 955 Kbps(UP-STREAM) IP Profile for your line is - 1911 Kbps
    2. Upstream Test: -provides background information. Upload Speed 588 Kbps 0 Kbps 955 Kbps Max Achievable Speed >Upload speed achieved during the test was - 588 Kbps Additional Information: Upstream Rate IP profile on your line is - 955 Kbps This test was not conclusive and further testing is required.This might be useful for your ISP to investigate the fault.

  • Using local host XAMPP with Wordpress and Dreamweaver

    I hope this is within the scope of this forum. It's probably more of a WP than DW topic but I have found this forum to be very helpful on a wide scope of general web design/build topics so here goes.
    I have a static html/css web site created with DW. I've got it as a local site on my computer and also have it uploaded to a remote host server (fatcow). It's using a temporary domain/address while under development and will replace an exisitng site when completed.
    http://www.prospectrealty1.fatcow.com/index.html
    I have installed WP on the remote host and created a Blog thru the WP Dashboard. There is a link in the navigation of the static site to the WP Blog. When clicked a new tab opens and the user is taken to the seperate blog.
    http://prospectrealty1.fatcow.com/blog/
    I want to be able to work on a copy of the blog "offline" on my local computer.
    So I have xampp installed and it is working correctly  on the C drive of my computer. Next I copied my entire local site folder into a folder under the htdocs/xampp. So  Next I copied the folder I created that contains the wordpress install from the remote host at fatcow (I named it "blog"), and pasted it into my local install. So now I have localhost/xampp/prospect-blog-test/blog.

    geez, I was editing  the post above but got an error and it didn't save my edits and left out the problem.  so here's the trouble.
    After trying what I described above I made a new install of all of the WP files and put it here localhost/xampp/prospect-blog-test/. did this just to "start from scratch" Planning to export the WP files from the fatcow host and import into new local host install. I type localhost/xampp/prospect-blog-test into my browser and the WP splash screen appears and askis about creating the config file. First step is to specify the database. That's where I am having trouble.
    Using mySQL on the fatcow host and following the seemingly simple instructions on the WP codex I export the database .sql file. Then I go to mySQL on my local host and try to import the .sql file.
    I am getting the following error message.
    http://www.openrangeimaging.com/Test/local-host-MySQL.jpg
    Not sure what I'm doing wrong. Any help or advice or point me to a resource will be much appreciated.
    thanks in advance

  • FIOS and Dynamic DNS

    I'm thinking about switching from Verizon DSL to FIOS, but I have a few concerns.
    Right now I am able to directly connect form my linux-based router to the DSL modem via PPPoE.  If for some resaon the PPP link drops the router just re-establishes it, and it always knows my outside IP.  It can also update my multiple dyanamic DNS addresses automatically when this happens.  My DSL IP address seems to change only when I shut down my router - it lasts weeks at a time.
    With FIOS it sounds like you are forced to use NAT with the supplied router.  I can go ahead and disable wireless on it, and then just set up my own router to use a static IP and put it in the DMZ to get as close to a bypass as I can.  However, if my outside IP changes my internal router isn't going to know about it, and won't be able to update my dynamic DNS/etc.  It looks like the FIOS routers will update dynamic DNS addresses, but I'm not sure if they support namecheap, and I also don't know if they support updating more than one dynamic DNS service when my IP changes.
    It also sounds like they cut the copper connection, so if it doesn't work out right it will be very hard to go back to DSL.
    Does anybody know:
    1.  Will the supplied router update more than one dynamic DNS service automatically?
    2.  Will the supplied router update a namecheap hosted dynamic DNS record? 
    3.  When updating a namecheap DNS record will it only touch the A record and not mess with all my other DNS settings?
    4.  Can I somehow configure the router to provide my external IP to a single internal computer via DHCP (ie router gets an address from verizon, and then the router offers that address to my own router)?  Obviously this won't work with more than one computer on the router.
    5.  Can I alternatively connect to the verizon-provided router using PPPoE or a similar protocol to just get my external IP directly tunneled through the router?
    6.  Does a FIOS TV standard definition tuner box require a network connection? 
    7.  What happens if the tuner it isn't connected to the network?  I won't be using any kind of interactive services anyway since the tuners will just be connected to my DVR.
    8.  Does the network connection have to be on the same subnet as the verizon-provided router, or is it sufficient that it be able to reach that router or the internet via NAT (there would be a NAT layer between my internal network and the verizon-powered router)?
    9.  If this stuff doesn't end up working right, can I just pull the plug on FIOS and go back to Verizon DSL and POTS?
    In case it isn't clear, here is how I envision the network looking:
    Verizon - Verizon Router - NAT with My Router in the DMZ - My Router - NAT - My internal network
    I guess if I get really desperate I could try to find a tunnel broker of some kind - not sure if anybody does that for IPv4 the way it is done for IPv6.  That would allow me to get my external IP through the NAT and potentially give me a static one as well...
    I REALLY don't want to pay an extra $50 for a static IP.  I'd probably just stick with the DSL if it came to that even though it is actually more expensive than switching (for dynamic service) and it is a lot slower...
    Solved!
    Go to Solution.

    Hmm - that idea might not actually work out all that well.  It might or might not work at all, but one thing that it would probably do is make it impossible to access the router's web interface (since the router wouldn't have an IP address of its own on any of the ports).  So, if it did work it would be a once-and-done configuration and then I'd need to reset it to do anything else with it.  This would also make it impossible to attach set-top-boxes directly to the actiontec router, but then again they'd be only one NAT layer away from verizon if I attached them to my home network.
    I suspect I might be better off with the DMZ approach and just living with a single dynamic dns entry.  The main reason I use more than one of those is so that if my IP address changes I don't have to wait for the DNS TTL to run out to find out what the new IP is - I can just wait a few minutes to be safe and resolve one of my other dynamic addresses which won't be cached anywhere so it will get the fresh entry. 
    I guess my other option is to fire up nslookup and point it directly at the appropriate DNS server so that I"m not seeing a cached response.
    I've heard mixed reports on how often the FIOS IPs change anyway.  If they only change once in a blue moon I'm not terribly concerned about this stuff. 
    (Why can't everybody just switch to IPv6 and end all this NAT nonsense anyway...?) 

  • How to Configure bootpd to Perform Dynamic DNS Updates

    I have been able to get bootpd configured to function as a basic DHCP server. I would now like to configure it to dynamically update DNS forward and reverse zones when leases are assigned, released, or expired.
    Does anyone have an example of a bootpd.plist file to configure bootpd for dynamic DNS updates?

    Hi,
    I am not sure what you are attempting to configure here.
    But what the NAT configuration above does is do a Dynamic PAT for all the servers on the "firewall-dmz" to a single IP address towards the "firewall-outbound"
    This Dynamic translation doesnt however enable connections to be initiated from behind the "firewall-outbound" interface. When your hosting a server which needs a NAT towards the users then the NAT type has to be Static NAT or Static PAT.
    Static NAT will essentially use up one public IP address for just the single local host/server.
    Static PAT will do a Port Forward from the public IP address and public port to the local IP and local port. And this is most commonly used with environments which only public IP address is the one that the ASA holds in its WAN interface.
    A typical Static NAT configuration is this
    static (inside,outside) 1.1.1.1 10.10.10.10 netmask 255.255.255.255
    Where
    inside = is the interface behind which the host is
    outside = is the interface towards which the host is NATed
    1.1.1.1 = is the public NAT IP address for the host
    10.10.10.10 = is the local IP address of the host
    A typical Static PAT configuration is this
    static (inside,outside) tcp interface 80 10.10.10.10 80 netmask 255.255.255.255
    Where
    tcp = specifies the protocol for which the Static PAT configured
    interface = specifies that we will be using the public IP address of the destination interface "outside" as the public IP address for this single Port Forward.
    80 = first "80" specifies the public port visible to users behind the destination interface
    80 = second "80" specifies the actual local port on which the local host is listening on
    Hope this helps
    - Jouni

Maybe you are looking for