Block Access To My Servers From A Domain

Oct 16, 2009

Exist a domain (domain.fm), this domain receives constant DDoS attacks and the webmaster of domain.fm has pointed the domain to my server and the DDOS attack has been redirected to me.

Is it possible to block this domain?

I noticed that the webmaster of domain.fm only points the domain to
my server when attacked.

Yesterday my apache has been down for several hours.

I would like to block access to my servers from the domain domain.fm

View 6 Replies


ADVERTISEMENT

IPTables - Block Internet Access To SSH (22) Except Verified IP's

Jul 1, 2007

I recently looked at my secure and mesaages log and have been getting a lot of failed SSH root login attempts. So I thought I better do something about it.

Ideally I want to allow SSH login from just 3 remote public IP's, and block all others from even trying

How would you go about implementing this?

I have tried using IPTables, but I think im getting the rule wrong somewhere.

Here is what I have:

Code:
## Access to SSH from Pre-approved IP Addresses ONLY ##

iptables -I INPUT 1 -p tcp --dport 22 -s 123.123.123.123 -j ACCEPT
iptables -I INPUT 2 -p tcp --dport 22 -s 123.123.123.124 -j ACCEPT
iptables -I INPUT 3 -p tcp --dport 22 -s 123.123.123.125 -j ACCEPT
iptables -I INPUT 4 -p tcp --dport 22 -s 0.0.0.0 -j DROP

However this still lets me login from IPs not in the list above?

View 8 Replies View Related

Apache :: Allow Access From Webserver - Block From HTTP

Mar 13, 2015

I want to run an HTML webpage that accesses an MP3 resource that's also on my website. However, I only want the webpage to have access to the file and block access from those attempting to access the file directly. That leaves me with two options:

1. Block access through the Apache configuration so that only my Webserver can access the resource, or

2. Hide the URL in the code.

How I can go about doing this?

View 1 Replies View Related

Block External Access To Cpanel Through Port 2082?

Jun 2, 2008

if it is possible to block external access to Cpanel through port 2082?

View 7 Replies View Related

Plesk 12.x / Linux :: How To Block Access To Default Website

Oct 21, 2014

I've seen a number of exploit attemps on the default website which I believe has come via direct access via ip address i.e http://xxx.xxx.xxx.xxx.I have tried to block with .htacess but it seems to be being ignore (possibly by parallels or nginx configuration).how I can block access to the default site to all but 127.0.0.1, server external ip and my ip?

View 19 Replies View Related

How To Limit/block Outgoing Spam - CPanel Servers + EXIM

Mar 12, 2008

My server is sending all emails via exim smarthost to other specialised exim server (both cPanel). How may I limit customers from sending out SPAM ? Mean to scan outgoing emails and delete/store in some folder which ones identified as SPAM. Preferrably the scan part to be on exim email proxy cause it is much idle.

View 0 Replies View Related

Can Rbl Antispam Filters Block Emails Sent Through Clean Email Servers

Jun 24, 2007

I have noticed that a customer's emails are banned by certain RBL/antispam filters even though they are sent using SMTP-Authentication through a non-banned SMTP server.

It seems that its ISP IP is blacklisted..... Is this normal?

View 1 Replies View Related

Plesk 12.x / Linux :: Block A Domain As Email Destination?

Mar 19, 2015

I'd like to know if it's possible with Plesk 12 to block a given domain as destination of emails.

For example: imagine I want some customers not to be able to send emails to addresses in the domain "@parallels.com".

I use Postfix for outgoing mails.

View 7 Replies View Related

How Do You Access Your Servers Remotely

May 21, 2008

Just wondering if anyone can share how they access there colo servers remotely? We have a couple of servers in one datacentre and have just setup a new small co-lo solution.

At present we just use RDP to access our windows servers on the standard ports (pretty bad i know). The RDP ports are open as there may be occasions when we need to access the servers from anywhere. Our new soloution is presently setup like this but i am interested in locking it down.

How do other people access their servers? We have DRAC/ILO cards in the servers but we only tend to use these in emergencies as the remote console is pretty slow.

how to improve security are greatfully received!

View 14 Replies View Related

Is It Possible To Access A Servers Hard Drive....

Feb 4, 2008

is it possible for me to access my servers hard drive in the same way I would with any other drive on my computer? Kind of like with ssh but in a file directory instead of a command line.

View 2 Replies View Related

How To Allow Others To Access Via Their Own Domain

Feb 18, 2009

The best example I have is google apps for domain, but I know a lot of other services do it..

Apart from THEM adding the right DNS record, how do I actually handle it on my end?

So that rather than
[url]

it can be
[url]

or (if even possible?)
[url]

Is it purely just looking if the hostname given is not one of our own, parse out the hostname and use that? or what...?

View 3 Replies View Related

Exchange Access Via Domain

May 22, 2009

I have an exchange 2003 server. You can access OWA via the browser by using the IP address of the line the server sits on.

How do I go about converting this IP address into a domain so exchange server 2003 is accessible via [url]or [url]

View 3 Replies View Related

How Can I Http Access A Server Without A Domain

Mar 10, 2008

I've setup a dedicated server that is currently running with a domain bound to it. However this time I want to setup a centos 5.1 + latest apache 2 + bind 9 server that can only be connected to by IP address and doesn't have a domain name. So what do I need to modify in the below files to do so:

First of all will I even need bind at all? I already have it setup and (mis-)configured but I guess if I don't need it I can just take if off of autostart and stop the process "named".

Named.conf

options {
pid-file "/var/named/chroot/var/run/named/named.pid";
directory "/var/named/chroot/var/named";
query-source address * port 53;
allow-query { any; };
allow-transfer { };
recursion no;
notify no;
version "unknown";
};

logging {
category default { null; };
};

zone "server.domain.com" { type master; file "server.domain.com.db"; };
I don't even want the zone have domain.com in its name but that's just there so I could show you how I'd include server.domain.com.db.

server.domain.com.db

$TTL 14400
@ IN SOA ns1.domain.com. root.server.domain.com. (
2007052503
14400
3600
1209600
86400 )

server.domain.com. 14400 IN NS ns1.domain.com.
server.domain.com. 14400 IN NS ns2.domain.com.

localhost 14400 IN A 127.0.0.1
www 14400 IN A 78.129.174.164
I'm not sure what to do about those references to domain.com here, they shouldn't be needed but without them I don't know what to put here. ^^
Obviously I can't use those nameservers...

resolv.conf

nameserver 127.0.0.1
nameserver 78.129.143.155
nameserver 87.117.198.200
nameserver 87.117.196.200
The only thing missing from this file is "search domain.com" at the top, is that needed even though I won't really have any domains used by this server?

/etc/hosts:

# Do not remove the following line, or various programs
# that require network functionality will fail ....

View 7 Replies View Related

Access An Account On Shared Ip Without Domain Name

Apr 9, 2008

I have an account on an older server. Its plesk.

But now that I pointed the domain I can no longer access the old server from the web.

So this is my shared ip:
66.235.201.136

Now there are about 10 domains on the IP.

what would my URL look like to access one of those accounts in plesk in the browser?

66.235.201.136/~rgratitu

I've tried the above and it doesn't work.

View 1 Replies View Related

Enable Anonymous Ftp Access For One Of My Domain

Apr 10, 2008

I am using Cpanel

And I want to enable anonymous ftp access for one of my domain

View 2 Replies View Related

Access DirectAdmin Site Without Domain - Possible With CPanel

Mar 7, 2009

I'm new to using directadmin and I've got a problem; I've not yet switched the DNS over to the directadmin server 'cause I want to make sure the sites work first, however I can't find how to view the sites. With cpanel you can go to http://192.168.1.1/~username (where 192.168.1.1 = IP of server and username is username of account).
is this possible with directadmin? I can't find anything about it, anywhere.

View 6 Replies View Related

Can Other Hosted Sites Be Access Through Your Domain/subdomain

Sep 10, 2007

I'm using a shared host that provides good service and support, but there's one major issue I discovered recently:

Other sites hosted on their server are accessible through my domains and subdomain. For example:

Account2 on their server can be accessed through:

[url]
[url]

Host says:

"Because everything is Name-based, apache decides what directory is going to be used based upon the name that is provided. However, because the username is valid, it treats it as a vaild URL and redirects it to your site. There is no security issue, as this is just the way apache’s configuration works."

Is it really normal? Does the same happen on all apache servers? I think SE's would treat the other pages as mine, no?

View 3 Replies View Related

Plesk 11.x / Windows :: Unable To Access Domain

Feb 11, 2014

I had used Panel version 11.5.30. I unable to access Hosting Services / Domains !

You can see this picture show about this case !

I don't know why this Panel error ???

View 2 Replies View Related

How Can I Give A Customer Access To His Specific Domain On Godaddy

Apr 14, 2008

I have an account on godaddy, with more than 20 domains registered and well, so far i have been in charge of the updates of these domains and the websites they represent. But now I have this customer who is asking me to have access to his specific domain so he can upload files by him self, the thing is that i dont have a clue of how to do it. I tried to create a new account in godaddy for this customer and tried to transfer this domain into his account and I was not allowed to. I cannot give him my username and psw cause he wont only have access to his website but all those i have registered under my account. I will really appreciate some advises to help me work this out.

View 4 Replies View Related

Domain Name Servers

Oct 30, 2009

How would I go about setting up Bind on one of my Dedicated Servers? I noticed that you use three dns servers through pipedns and I thought you might be able to help me answer this question.

How would I be able to have my friends and I point our domains to my server(s) and have bind make it work? I want to have one dns server and then I have my friends each on there own DEDI using my bind dns servers but I'm not sure how to do this.

How would we add domains and the bind server know which server they are hosted on? Do you have to add the domains through bind? If so, how would I do that automatically and how would it work through cPanel when someone parks a domain?

View 6 Replies View Related

1 Domain Using 2 Servers

Oct 8, 2008

My situation is my website DOMAIN.com is getting very busy and it's currently hosted with fdcservers

I want to order a second server wth fdc but I don't know where to start after that???

How can I split my half traffic going to my new server??

my website lets user to UPLOAD FILES

My Domain is registered with godaddy Do I need to do something on that side?
Or is it all on WHM side?

Someone told me before to create a subdomain then point that to the new server

CAN SOMEONE TELL ME EXACTLY HOW TO DO THAT? STEP BY STEP

I know how to create a subdomain like (subdomain.domain.com) but whats next after that?

View 8 Replies View Related

Same Domain Different Servers

Jun 25, 2008

I have a dedicated server and now I am thinking of getting my second one. I would like to ask if it is possible with cpanel to have

server1.domainA.com
server2.domainA.com ?

Do I just add a A entry for my host on the first server?

Which one the 2 will be doing the DNS? Could I have both of them?

View 2 Replies View Related







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