How To Get A Static IP Address

Jun 12, 2008

I just discovered that my Internet provider only provides me with a dynamic IP address because its not commercial!

Is there any way or workaround to sign up for a static ip on the web?

View 14 Replies


ADVERTISEMENT

Change IP Address DHCP To Static Using Xen VPS

Nov 19, 2008

I'm using XEN to setup my VPS. The installation have no problem for the first two server. On the 3rd server, I install using DHCP IP and it's ok.The problem is when I change the DHCP IP to static IP .

Using Centos 5.2, I'm using vi to edit /etc/sysconfig/network-scripts/ifcfg-eth0
and restart the network service network restart, the IP change, but outside or other static IP VPS network can't ping to this server.

I've tried to change the /etc/xen/the-host-config to include the IP . the results is still the same. Is there some script or way I can use to bridge this new 3rd server to the Xen host ant other network?

* I've restart the Xen server.

View 8 Replies View Related

Local Connetion With Static IP's What Is The Gateway Address

Jun 1, 2009

we have two servers; webserver and database server connected directly to each other via a standard cat6 cross-over cable. I am setting up their static IP's and have a few questions.

Both are running windows 2003. I went and setup the static ip's as follows:

[webserver]
IP: 192.168.200.1
SUBNET MASK: 255.255.255.0
GATEWAY: {blank}
DNS1: {blank}
DNS2: {blank}

[database server]
IP: 192.168.200.2
SUBNET MASK: 255.255.255.0
GATEWAY: {blank}
DNS1: {blank}
DNS2: {blank}

So DNS being blank is fine since there is no need for DNS, all communication is local (no internet). But should the gateway address be blank?

View 6 Replies View Related

.ASP (STATIC)

Oct 29, 2007

Another similar kind of question

I want to run .asp pages on a windows server where i am currently running .HTML files (STATIC without any script or database). I want convert those .html pages to .asp (without any scripts).


So WHAT DO YOU THINK, that .html (static) should work exactly same like .asp (Static) ? Suppose .html pages DO NOT CREATE any issue with IIS load , so using same (basic html code) in .asp would create any issue with APPLICATION POOL (IIS)?

View 3 Replies View Related

Static IP: Best Service And How To Use

Oct 18, 2007

My ISP here in the UK does not provide static ip addresses. I'd like to be able to set my server to only accept root access attempts from a set IP.

I am aware of how to set this up on my server, but not on my own machine.

I'd appreciate if anyone recommend the best service to use when seeking a static IP address and also point me in the right direction of documentation that explains how to utilise this IP (connect through it so when connecting to my server it sees the static IP and not my dynamic ISP IP).

I've had a search on WHT and Google but most of the documentation I've encountered is for people who want to run a web server from their home machine and so want a static IP for incoming connections.

I am using a windows machine (xp pro).

View 3 Replies View Related

Forward Domain To Static IP

Jul 2, 2006

i have a domain hosted at eNom which i would like to point to my FTP server which is running on my box at home. I have a static IP, and BulletProof FTP server installed. Now im just unclear how i can have www.mydomain.com point to 212.12.34.56:21.

View 3 Replies View Related

Static File Hosting

Apr 4, 2009

I currently have an existing web hosting package with a web host. However, I need to supplement that with a file hosting service for my users.

I'm estimating that I will need about 2Gb disk space, and approximately 30~40Gb of traffic monthly. This will just be plain static file hosting. I don't need any scripts, databases, etc.

View 11 Replies View Related

Need To Create A Static Route

Apr 9, 2007

Recently two servers of mine have stopped communicating with each other and I've been told to create a static route between the two, I am using CentOS 4.4 and not sure what the exact syntax would be

I also have the gateway IP which would be needed.

View 1 Replies View Related

10 Second Lag Serving Static HTML

Mar 21, 2007

this isn't my server, so I don't have a lot of information about it, other than it's a Linux/Apache Dedicated server at EV1. (cPanel/WHM)

There are other sites on the server, and they are running fine.

One site has a terrible lag. It takes about 10 seconds to serve up a static HTML file..

Now, it's not like the server is slow. It's like this: You request a small HTML file. The site sits and thinks about it for about 10 seconds, and then after that everything processes quickly.

The forum on the site is the same way. Everything you click on works fine and loads quickly after that initial delay passes.

Is there a common configuration problem that might be causing this?

If you want to see this phenomenon, here are a few test files:
[url]
[url]
[url]
[url]

View 7 Replies View Related

Static IP Provider And Best Prices

Jan 5, 2007

Is there a difference between static IP's and dedicated IP addresses?

Also I'm in the Atlanta GA region, does anyone have any reccomendations on a bandwidth provider and avarage cost of static IP's?

View 6 Replies View Related

Static Routes Questions

May 18, 2007

I have a small network at my colo provider.

Colo Provider
|
My HP 2650
| |
server1 serverN

I want to setup static routes on my servers so that my colo provider won't bill me for traffic among my servers.

I use FreeBSD 6 on my servers. I read the FreeBSD handbook on this and it looks like i should do this:

route add -net 0.0.0/24 0.0.0.3

where 0.0.0/24 is the C class I have from my provider and 0.0.0.3 is the IP address of my server (one of them/any of them).

However, this route appears to already exist as i get this error when running that route command:

route: writing to routing socket: File exists
add net 0.0.0: gateway 0.0.0.3: route already in table

Do I need to use a non-routeable ip block (eg 192.168.x.x) for this? Can I use "real"/routeable ips? Does FreeBSD take care of this for me automatically?

View 5 Replies View Related

Apache :: How To Use Virtual Host IP Address In Request To Remote Address

Feb 6, 2015

My customer has an external facing Apache server that is acting as a reverse proxy to two internal applications. They have:

- external addresses for each app which resolve to different ip addresses, so app1.their_domain.com and app2.their_domain.com resolve to 77.3.170.10 and 77.3.170.11 respectively.
- the Apache server has two network interfaces with ip addresses 192.168.10.10 and 192.168.10.11
- the external ip addresses resolve to the above internal addresses
- the firewall between the Apache server and the internal app servers is configured to allow traffic from 192.168.10.10 to reach app_server1, and traffic from 192.168.10.11 to reach app_server2, both using port 7777.

I have configured a virtual host in httpd.conf for each ip, i.e.

Code:

<VirtualHost 192.168.10.10:80>
...
ProxyPass /app http://app_server1:7777/app
ProxyPassReverse /app http://app_server1:7777/app
RewriteRule ^/$ /app/app1 [R,L]
...
<VirtualHost>

and

Code:

<VirtualHost 192.168.10.11:80>
...
ProxyPass /app http://app_server2:7777/app
ProxyPassReverse /app http://app_server2:7777/app
RewriteRule ^/$ /app/app2 [R,L]
...
<VirtualHost>

This works fine in that the external address are being routed to the correct application, however the firewall is blocking requests to the second app as it appears the requests are coming from the Apache servers 'primary' ip address 192.168.10.10 instead of 192.168.10.11.

Is it possible to send requests using the ip address from the relevant VirtualHost?

Windows server 2008
Apache 2.2

View 1 Replies View Related

Whats The Point Of Two Static Ip Addresses?

Jan 13, 2009

i don't get why people can have more than one static ip...wouldn't you only need one?

View 14 Replies View Related

Static HTML Resource Usage

Oct 21, 2008

I've been running website for several years, however, there's one thing that I've never quite figured, most likely because I haven't gone over to dedicated/vps yet.

How much memory would a static 10kb HTML use or for that matter a PHP page (static)?

I know it's quite a broad question, but I'm asking this as I might start a project and this one page may receive many hits. Oh and, would the memory usage go up if I have embedded objects from an outside source (e.g. embedded Youtube videos)?

View 6 Replies View Related

Compiling Static Standalone PHP Binary

Jun 22, 2007

I am using the following configure command in hope to generate a PHP binary which is totally independent, standalone and can be moved to other systems without caring for dependencies:

./configure --enable-fastcgi --enable-force-cgi-redirect --enable-discard-path --prefix=/server/php --exec-prefix=/server/php --with-config-file-path=/server/php --disable-all --enable-shared=no --enable-static=yes --enable-session --with-gd --with-zlib-dir --with-freetype-dir --enable-sockets

But when I try to run the generated binary on another system which doesn't have freetype etc installed, I get the following error:

error while loading shared libraries: libfreetype.so.6

View 1 Replies View Related

Static Server + Forum Cluster

Oct 23, 2008

my current servers are part of this mess with Alphared:
[url]

what I'm looking for:

static content main server:
average cpu, average ram
15-20gb data tops, but could use a fast drive
need about 6tb/m of higher quality bandwidth
2 machine cluster for forums

only thing on this will be vBulletin forums.
current database is about 6gb (~7 million posts)
averaging about 800 members active per 15 mins
this isn't for a business, so it all comes out of my pocket. however, after the $#@! with Alphared I do recognize the importance of a good host and I am willing to put money toward that as needed. however, my goal is in the $600-$800/m range for everything.
is that price range doable? if not, what is a reasonable price for what I'm asking? and can anyone recommend reliable hosts (especially one that can correctly setup the cluster for the forums).

View 3 Replies View Related

Static File Serving - Performance

Jun 24, 2008

I'm planning to setup a server ONLY for hosting of static binary files varying from few KB to few MB in size.

I've seen some of the litespeedtech performance benchmarks, which you can find here: [url]

From the "small static file" benchmark chart, i can see that IIS6 beats lighttpd in this test.

So i'm wondering does the IIS6 really have better performance at file hosting than lighttpd.

Actually it does not matter which operating system i will be using at this server, since i will use it only for file serving. With lots of concurrent connections. Possibly thousands of connections.

I need some feedbacks on this, so i can decide, IIS or lighttpd.

Few more bucks for win2k3 won't be an issue here, if it's performance is better than lighttpd for this kind of use.

View 11 Replies View Related

How Many RAM To Host 200 Static Webpage Sites In One Vps

Sep 8, 2007

how can I know how many RAM do I need to host 200 static webpage sites in one vps?

I prefer a managed plan from futurehosting.biz Plesk - Platinum450GB512MB1.5GB30GB3 IPsPlesk: $54.95

View 8 Replies View Related

Apache :: Redirect Dynamic URL To Static URL

Nov 14, 2013

I transferred my WordPress site to static HTML website, but some other website have a link to my old WordPress site URL....

I want to redirect all traffic from that URL to new URL which is URL...., but my redirect in .htaccess file doesn't work (Redirect 301 /?page_id=1234 URL... because of the query string."mod_rewrite" to create the right code in .htaccess file.

View 1 Replies View Related

Virtuozzo Firewall :: Is It Possible To Enter Two Different Ip Address In Source Address?

Aug 4, 2008

I am using virtuozzo firewall to secure access.

I enter 58.27.175.211/255.255.255.0 for Source Address and Netmask for port 22.

But still I can connect using 58.181.103.217 or 58.27.151.120.

Second is it possible to enter two different ip address in source address?

View 4 Replies View Related

Apache: Need Thoughts On Offloading Static Content

May 18, 2009

I'm looking for a way to get a little more mileage out of Apache + PHP environment without losing Apache capabilities. In shared hosting environments, losing features such as .htaccess and a real mod_rewrite are not even on the table. I'm also not willing to accept the performance hit and connection issues that are inherent with FastCGI, so that means mod_php.

In this particular situation, there are two busy sites, which are the problem.

These are a few ideas I've been thinking about.

1. mod_proxy + nginx: mod_proxy sends static content requests to nginx. This requires two sets of vhost files to be maintained.

2. mod_cache: Caching common static content such as page graphics .css, .js, etc.

3. squid

If you've been down 2 or more of these roads, I could benefit from your experience.

View 10 Replies View Related

Totally Static HTML Content Hosting

Oct 7, 2009

I'm configuring an VPS that's going to serve all static stuff and absolutely no dynamic scripts at all.

What could be the bottle necks with all these static content websites? Can a 256MB VPS handle a static website receiving millions of page views a month?

View 1 Replies View Related

Problem Serving Gzipped Static Content

Nov 21, 2007

I'm trying to serve as much gzipped content as possible on my web site. I will gzip dynamic pages on the fly using PHP, and I plan to gzip static content just one time, not to use much CPU, and serve css.gz, .js.gz files, etc... So, I uploaded a test.html file and a .css file that changes the color of the text to red. I gzipped the css file:

%gzip style.css

I also uploaded an .htaccess file with this content:

RewriteEngine on
RewriteBase /gzip/
RewriteCond %{HTTP_ACCEPT_ENCODING} gzip
RewriteRule ^(([^.]+.)+)css$ /$1css.gz

For now I'm not going to include any gunzipped style sheet, just to make sure my browser picks the gzipped style sheet. I also uploaded a phpinfo.php file to make sure I have mod_gzip. So, here's the list of files I have:

- .htaccess
- style.css.gz
- test.html
- phpinfo.php

But when I open the test.html file: [url] the style sheet isn't applied. If I upload a regular style.css file, it works fine. It seems the Rewrite rules aren't taken into account. Do you know how I could server the gzipped style sheet instead?

View 4 Replies View Related

Multiple Outside Static IP Addresses To Host Web And Mail Server?

Apr 16, 2008

Q: Does one need to have more than one ISP (outside) static IP address to host its own mail and web server?

Or will one static IP with port forwarding to two different machines (one mail and other web server) be good enough?

What would happen if one wants to host two websites on one machine (web server) and have webmail to access emails (presumably via port 80) on another (mail server)?

My only concern is I guess my ASA 5505 won't support more than one assigned static IP or am I wrong?

View 8 Replies View Related

DDOS Deflate On A Static Video File Server

Mar 6, 2008

I am using DDOS Deflate

[url]

I have a problem with NO_OF_CONNECTIONS.
The default is 150

For example, if a website has 200 thumbnails in one page, then the user will get banned.
But in my case, each time a user have only 1 connection(He only access 1 flv file each time).

So, is that safe for me to decrease the number to 20.

I can see a lot of IP having more than 80 connections, which I think they are ddos attack.

View 1 Replies View Related

Nginx As Apache Proxy For Static Content -- Configuration

Nov 23, 2007

I am a non-tech person trying to configure Nginx to serve static content (apache will remain on port 80 for the dynamic stuff).

Nginx is already installed, what I need is a workable configuration file for nginx so that it serves all static stuff (images and a few folders with static html) and instructions in how to create it. The server is running DirectAdmin panel, Apache 2.24, PHP 5.23 and XCache 1.2.

View 12 Replies View Related

Plesk 12.x / Linux :: Awstats Not Building Static Pages

Nov 5, 2014

I have an issue with Plesk and Awstats not building the html pages for website statistics. Problem is server-wide i.e. it effects all domains.

I've tried to manually run the /usr/local/psa/admin/sbin/statistics with every possible options but all that happens is that awstats calculates new stats to the vhosts /var/www/vhosts/system/domain.tld/statistics/webstat/awstatsMMYYYY.domain.tld-http.txt file.

Nothing is put into the /var/www/vhosts/system/domain.tld/statistics/webstat/YYYY-MM folder which should contain the static html pages.

Example listings:

Code:
# ll /var/www/vhosts/system/<domain.tld>/statistics/webstat
total 80
drwxr-xr-x 4 root root 4096 Nov 5 10:58 ./
dr-xr-x--- 6 root psaserv 4096 Oct 23 12:36 ../
drwxr-xr-x 2 root root 4096 Oct 23 13:12 2014-10/

[Code] ....

I was able to create the static pages by running Awstats directly:

Code:
# /usr/share/awstats/tools/awstats_buildstaticpages.pl -awstatsprog=/usr/lib/cgi-bin/awstats.pl -configdir=/usr/local/psa/etc/awstats -config=<domain.tld>-http -dir=/var/www/vhosts/system/<domain.tld>/statistics/webstat/current

So things I have already checked:
- Awstat paths in /etc/psa/psa.conf are correct
- Domain configs are ok as awstat can create the stats data and awstats_buildstaticpages.pl can can create the pages just fine
- File permissions are ok

I just cannot figure what the problem is. /usr/local/psa/admin/sbin/statistics doesn't give any errors but on the other hand it doesn't have a debug option either which might be useful.

OS: Ubuntu 14.04.1 LTS
Plesk version: 12.0.18 Update #22

View 4 Replies View Related

How Do I Setup A New Ip Address As My Server's Main Ip Address

Jul 26, 2007

I just bought a new ip address and want to setup this new ip as my server's main ip, making the 'existing main ip' as the secondary ip.

Which means, this new ip will be the server's default ip address for all services, including when connecting to other server.

I'm using CentOs 4.5 and swsoft's panels: HSPcomplete & Virtuozzo Power Panel, and Webmin.

View 1 Replies View Related

Need Dedicated Servers (Download Static Content) 1and1, GoDaddy, ...

May 15, 2008

Ok, I'm a few lost about which dedicated server to choose.

First, I need 2 dedicated servers. These servers are only to download static content.

Downloadable files are small (50-400k).

I'll use lightweight server.

If there are too many user, I'll buy another server.

I search for excellent uptime, US server and fast download server.

I've visited some popular web hosting but if you know better, lets me know

1and1
Price (Root Server): $99
CPU: Single Core AMD Athlon 64 3500+ 2.2 GHz
RAM: 1 GB
HD: 2 x 160 GB
Bandwidth: 2,000 GB
Bandwidth Cap: 100 Mbps

GoDaddy
Price: $68
CPU: Celeron 2.0GHz
RAM: 1GB
HD: 1 x 120GB
Bandwidth: 500GB
Bandwidth Cap: 10-20 Mbps

Also, the price between 1and1 and GoDaddy is $31 but 1and1 give more on cpu, hd, bandwidth(4x), connection...

One of my question is 1and1 offers a average price for dedicated server or GoDaddy spends a part of money with Amanda, Candice and Danica?

Do you have some suggestion for dedicated server or web hosting?

View 8 Replies View Related

Ngix To Serve Static File Contents On CPanel Servers

Jun 17, 2009

how to setup Nginx webserver on a cpanel server to serve static contents,
say /images folder from every domains hosted on the server so that Apache's load will decrease?

View 12 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved