How To Find Unused IP Addresses

Nov 2, 2008

In my new job as webmaster (last one left without notice), I added 12 IP addresses to our managed server. Silly me, thought the cpanel would show the new ones seperate from the ones currently used.

But when I went to add a new website, I discovered that now all IP addresses (both used and unused) are listed in the same dropdown menu. Web host tech supt says unless I had a listing of old, used IP addresses, to compare with, I would have to manually test each one.

Since this company has over 100+ websites on this server, this will be slow going.

Does any one have an idea of a legit software app that I can use test ping my websites for me so I can track down these newly assigned but unused IP addresses for my sites?

View 4 Replies


ADVERTISEMENT

Where To Find Bulk IP Addresses

May 13, 2009

I am in need of 5,000 to 10,000 thousand ip addresses for a private proxy network.

View 14 Replies View Related

Unused Account

Oct 20, 2008

Let's say a customer opened a VPS account with you, but never actually used the service. After having the dormant account 6 months, they call and ask for a refund.

View 14 Replies View Related

Unused IP's Using Bandwidth

Nov 19, 2007

We have 8 IP's on our dedicated server, and only 3 are being used. The other 5, according to bandmin, are using both incoming and outgoing bandwidth. I've never seen this before. Each IP is using on average... 160mb (in+out).

My server provider says its normal, but he didn't really seem interested in the problem.

View 6 Replies View Related

Locating Unused Files

Apr 19, 2008

if there is any good method for finding files that have not been accessed by the server for a long period of time. I was thinking this might be a good way of clearing space.

View 10 Replies View Related

Plesk 12.x / Windows :: Drop Unused Listed Databases

Feb 24, 2015

Plesk12 has been installed on Windows2012R2. In the Tools and Settings/Database Servers list we have

· Local MySQL server (default for MySQL)
· .MSSQLSERVER2012
· sql-db-1 (default for MS SQL)

We only expect to use the remote sql-db-1 database for user databases.

Can we delete the other 2 databases and is this recommended? Does the Local MySQL server contain the Plesk Management database/schema?

View 1 Replies View Related

Using Find Command With Regex To Find All Number-only Filenames

Oct 15, 2007

how can i do a search for all files (probs using regex) of files consisting purely of numbers?

for e.g. find:

53243.php
24353.php
24098.php

(always have 5 numbers).

seems one of my accounts has had some script run which generated a bunch of these in various subfolders, and the php file basically does a callback to www3.rssnews.ws and www3.xmldata.info, which seem to be some sort of spyware servers.

View 10 Replies View Related

Find & Tar

Jun 21, 2007

I can't seem to figure out why this is not working. I want to cd into a directory and only compress certain files. However, what I end up with is a file called ..tgz (I am not sure why it is adding that other dot).

Here is the command line:

find . -mmin +1 -exec tar czf {}.tgz {} ;

View 2 Replies View Related

Someone Are Using My BW. Can I Find Out Whose Ips

Jul 14, 2007

I have a CentOS web server at my company. It's dual opteron. That server also acts like a router and I have about 5 computer are connected to that router. My web server has been slowed and can i find out who is using my bw ?. Those 5 computers has only local ips (10.10.0.x).

that my website is just for me, no one else know that website.

View 5 Replies View Related

Buy IP Addresses?

Jan 25, 2008

Basically, considering my host is in Europe/Malaysia, it uses APNIC for their RR, and for more IPs its $5.00 per ip/month. Which is a bit expensive for me, so I was wondering if there are people on here that sell IPs for cheap? It doesn't matter what country it comes up in with a whois lookup, or what RIR it uses, I just need more IPs for my dedicated server.

So does anyone sell? Or know where I can buy?

View 6 Replies View Related

Can You Buy IP Addresses

May 2, 2008

Our business has grown and we would like to know if it is possible to buy IPs (/18 or /19)

Anyone have any experience with this?

View 14 Replies View Related

Are We Almost Out Of IP4 Addresses?

May 8, 2008

There's a gadget showing how quickly we are running out of IP4 addresses.

View 11 Replies View Related

Ip Addresses

Apr 25, 2007

As iam going to rent a server for my hosting plan I need to know 2 things:

1) are the ip addresses provided to me by the comany public or they are private inside the comany and they use natting to reach it as I don't know how they treat all the servers in thier DCs?If I check my server configuration I will find the real public ip's?

2) How they put the servers together?I mean is there any logical division like VLANs or what?

If someone can help me on this as Iam going to rent my first server and I will manage it by myself.

View 2 Replies View Related

IP Addresses

Mar 24, 2007

question about my ip addresses, can one of u guys let me know what is ment by

IP Addresses: /26 (~60)

how do i find out if my ip address is one of the above, is this some thing to do with the class of the ip?

View 6 Replies View Related

IP Addresses

Jan 27, 2007

I got a deal. The person claimed he's from US.

Just curious. Is it possible that someone in Rusia, for example, can pretend that he comes from US?

I know one way is to use proxy. What are the other ways?

Is there a paid service/software that can make your IP look american, british, etc.

View 8 Replies View Related

How-To: Find PHP Nobody Spammers!

Apr 9, 2004

Someone posted some code similar to below, I made modifications or two after trying to detect PHP "nobody" users, after dumping a few printenv I found PHP exports PWD when calling an external program such sendmail. Basically the PWD will show the user directory that is coming from, which is enough to detect who is sending SPAM even as nobody! It's not 100% secure in that they could wipe /var/log/formmail but I don't imagine any spam will notice the logger, they presume any cPanel server (or other CP for that matter) is the same.

mv /usr/sbin/sendmail /usr/sbin/sendmail2
pico /usr/bin/sendmail (paste the below code into it)
chmod +x /usr/bin/sendmail
echo > /var/log/formmail
chmod 777 /var/log/formail

#!/usr/local/bin/perl

# use strict;
use Env;
my $date = `date`;
chomp $date;
open (INFO, ">>/var/log/formmail.log") || die "Failed to open file ::$!";
my $uid = $>;
my @info = getpwuid($uid);
if($REMOTE_ADDR) {
print INFO "$date - $REMOTE_ADDR ran $SCRIPT_NAME at $SERVER_NAME";
}
else {

print INFO "$date - $PWD - @info";

}
my $mailprog = '/usr/sbin/sendmail.real';
foreach (@ARGV) {
$arg="$arg" . " $_";
}

open (MAIL,"|$mailprog $arg") || die "cannot open $mailprog: $!";
while (<STDIN> ) {
print MAIL;
}
close (INFO);
close (MAIL);

View 14 Replies View Related

How Do You Find Joe's Datacenter

Oct 3, 2009

i want to know more about there service.
does any one work with them?
i need more review about them.

View 14 Replies View Related

Where To Find My Crontab

Jun 23, 2009

in which folder is the crontab generally located.

i run LAMP

also,i m looking for a specific cron right now (xbt_cron).once i find it ,what command do i use to run it manually.its supposed to run by itself..i just moved to a new server last week and now its stopped working.

View 7 Replies View Related

Where To Find VPS On Litespeed

Feb 27, 2009

I tried searching for it on google but couldn't find any server company offering VPS using Litespeed instead of Apache. Yes, I know that Apache could be optimized, but would like to try a VPS or dedicated server with Litespeed, just for testing and learning to use and troubleshoot Litespeed. Does anybody here know of a supplier? I would need less than 10 gigs, 250+ Ram as well as cPanel.

View 13 Replies View Related

How To Find Paths Within The VPS

Nov 26, 2008

How can I find a path in my VPS? It uses virtuozzo. I am new to all this so this might be a stupid question..

For example, my host says ffmpeg is in usr/bin/ffmpeg,, how do I find /usr/?

View 6 Replies View Related

Where Can I Find 10+ Tb Bandwidth

Sep 4, 2008

Here's my situation:

I run a site that does a lot of transfers AND uses a lot of CPU resources. I think I would like to get two different hosting plans to deal with these different patterns of usage, but where can I find a good host offering lots of bandwidth that is content to have it actually used? I've been with DreamHost for a while but they don't allow "data archiving" or whatever (and I have arguments against their claims but it's neither here nor there). So, really, where the heck can a guy find a good host offering plenty of space and bandwidth? Keep in mind I need pretty much no CPU power with such a plan; the web server can be stone cold stupid for all I care, as I can just get a VPS to run the CPU-intensive part of my site!

View 14 Replies View Related

How Do You Find Your Host

Apr 21, 2008

I was wondering how you guys go about finding a host?

Where do you do your research?

What forums do you use?

What else do you do in your process before finding a web host?

Do you subscribe to newsletters or web host magazines?

View 14 Replies View Related

/var Is Full, Cant Find

May 10, 2008

Weve got a server where the /var is setup at 7gb, which is now %100 full.

Weve deleted the common logs we always notice, but thats only gotten us down to %94.

Anyone have any ideas what we should be cleaning or a good script that might help?

seems 5.5gb of data is in /lib

What is safe to delete from /lib and why is it taking up so much space?

View 4 Replies View Related

Find Domain Against PID

Sep 12, 2007

If I have PID 1122 of apche httpd and using 99% CPU. How can I find the crosponding web site name which is utilizing that much CPU so I can the suspend it.

View 1 Replies View Related

How To Find A Big File

Sep 14, 2007

Over the last day. I have noticed that something is suddenly taking up 15gb on my server.

My server is Centos.

How would i find what this is. I have tried for about 1 hour to track this down but cant find anything.

How do i do a search of all files on the server and arranging it by the file size.

View 3 Replies View Related

Cannot Find The Maillog

Jan 23, 2007

waht i do ?

Code:
root@server [~]# service exim restart
Shutting down clamd: [ OK ]
Shutting down exim: [ OK ]
Shutting down antirelayd: [FAILED]
Shutting down spamd: [ OK ]
Starting clamd: [ OK ]
Starting exim-26: [ OK ]
Starting exim: [ OK ]
Starting exim-smtps: [ OK ]
Starting antirelayd: Cannot find the maillog at /usr/sbin/antirelayd line 26.
[FAILED]
Starting spamd: [ OK ]

View 2 Replies View Related

How To Find The Fiber

May 26, 2007

Assuming that one was to get a local office in a town, how would someone find building or area that had a high availbility of fiber nearby, but was not a datacenter? Are their fiber maps for each big city? Does anyone have fiber maps for Houston, Texas? I would be interested in seeing these maps if possible.

View 5 Replies View Related

Can't Find Wget

Dec 28, 2007

I can't find wget on a hosting. SSH command find / -name wget returns with nothing, however wget works properly on a hosting, what could the problem be?

View 14 Replies View Related

How To Find Blocked IPs

Jun 4, 2007

Some of our servers are complaining that they can't access the website. How can we check the blocked IPs using IP tables rules? Are there any special command to check?

View 3 Replies View Related

Find Shell

Oct 9, 2007

How can i find shell in my server?

is a program that find them?

my server is linux / centos / cpanel control panel

how can i disable shell in my server?

and stop deface

View 5 Replies View Related







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