Which Countries Offer Zone Files

Apr 27, 2008

what CCtlds/GenTLDs do you know of that offer Zonefiles? I know com/net/org/info/biz, and I know that f.ex Germany/UK/Sweden doesnt offer any - but what else? Perhaps there is a list/directory somewhere?

View 1 Replies


ADVERTISEMENT

Microsoft DNS Change Of IPs Of Zone Files

Dec 16, 2007

One of my clients is using Microsoft DNS, he needs to change email server which has a different set of IPs. Is there any command or program that can allow him to change all the zone files at one time? Find and replace the IPs?

View 1 Replies View Related

Configure DNS Zone Files Without Any Control Panel

Aug 19, 2007

i bought a dedicated server without control panel with Fedora Core 6 for install as webserver LightTPD.

Now i must configure the DNS zones files. For do that i added to my named.conf file this:

Code:
zone "mywebsite.net" {
type master;
file "/var/named/mywebsite.net.db";
};


zone "ns1.mywebsite.net" {
type master;
file "/var/named/ns1.mywebsite.net.db";
};

zone "ns2.mywebsite.net" {
type master;
file "/var/named/ns2.mywebsite.net.db";
};
This are my ZONE files:

mywebsite.net.db

Code:
; Zone file for mywebsite.net
$TTL 14400
@ 86400 IN SOA ns1.mywebsite.net. admin.fastwebnet.com. (
2007081900 ; serial, todays date+todays
86400 ; refresh, seconds
7200 ; retry, seconds
3600000 ; expire, seconds
86400 ) ; minimum, seconds

mywebsite.net. 86400 IN NS ns1.mywebsite.net.
mywebsite.net. 86400 IN NS ns2.mywebsite.net.

mywebsite.net. IN A 208.109.108.10

localhost.mywebsite.net. IN A 127.0.0.1

mywebsite.net. IN MX 0 mywebsite.net.

mail IN CNAME mywebsite.net.
www IN CNAME mywebsite.net.
ftp IN A 208.109.168.10
ns1.mywebsite.net.db

Code:
@ IN SOA ns1.mywebsite.net. admin.fastwebnet.com. (
2007081900 ; serial, todays date+todays serial #
28800 ; refresh, seconds
7200 ; retry, seconds
3600000 ; expire, seconds
86400 ) ; minimum, seconds

ns1.mywebsite.net. IN NS ns1.mywebsite.net.
ns1.mywebsite.net. IN NS ns2.mywebsite.net.
ns1.mywebsite.net. IN A 208.109.108.10

localhost.ns1.mywebsite.net. IN A 127.0.0.1

ns1.mywebsite.net. IN MX 0 ns1.mywebsite.net.

mail IN CNAME ns1.mywebsite.net.
www IN CNAME ns1.mywebsite.net.
ftp IN CNAME ns1.mywebsite.net.
ns2.mywebsite.net.db

Code:
@ IN SOA ns1.mywebsite.net. admin.fastwebnet.com. (
2007081900 ; serial, todays date+todays serial #
28800 ; refresh, seconds
7200 ; retry, seconds
3600000 ; expire, seconds
86400 ) ; minimum, seconds

ns2.mywebsite.net. IN NS ns1.mywebsite.net.
ns2.mywebsite.net. IN NS ns2.mywebsite.net.
ns2.mywebsite.net. IN A 208.109.108.10

localhost.ns2.mywebsite.net. IN A 127.0.0.1

ns2.mywebsite.net. IN MX 0 ns2.mywebsite.net.

mail IN CNAME ns2.mywebsite.net.
www IN CNAME ns2.mywebsite.net.
ftp IN CNAME ns2.mywebsite.net.

After i have restartet named :

service named start

This is the output in /val/log/message

Code:
Aug 19 07:54:33 ip-208-109-108-10 named[12209]: starting BIND 9.3.4-P1 -u named -c /etc/named.caching-nameserver.conf -t /var/named/chroot
Aug 19 07:54:33 ip-208-109-108-10 named[12209]: found 2 CPUs, using 2 worker threads
Aug 19 07:54:33 ip-208-109-108-10 named[12209]: loading configuration from '/etc/named.caching-nameserver.conf'
Aug 19 07:54:33 ip-208-109-108-10 named[12209]: listening on IPv6 interface lo, ::1#53
Aug 19 07:54:33 ip-208-109-108-10 named[12209]: listening on IPv4 interface lo, 127.0.0.1#53
Aug 19 07:54:33 ip-208-109-108-10 named[12209]: command channel listening on 127.0.0.1#953
Aug 19 07:54:33 ip-208-109-108-10 named[12209]: command channel listening on ::1#953
Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone 0.in-addr.arpa/IN/localhost_resolver: loaded serial 42
Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone 0.0.127.in-addr.arpa/IN/localhost_resolver: loaded serial 1997022700
Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone 255.in-addr.arpa/IN/localhost_resolver: loaded serial 42
Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa/IN/localhost_resolver: loaded serial 1997022700
Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone localdomain/IN/localhost_resolver: loaded serial 42
Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone localhost/IN/localhost_resolver: loaded serial 42
Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone mywebsite.net/IN/localhost_resolver: loaded serial 2007081900
Aug 19 07:54:33 ip-208-109-108-10 named[12209]: /var/named/ns1.mywebsite.net.db:1: no TTL specified; using SOA MINTTL instead
Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone ns1.mywebsite.net/IN/localhost_resolver: loaded serial 2007081900
Aug 19 07:54:33 ip-208-109-108-10 named[12209]: /var/named/ns2.mywebsite.net.db:1: no TTL specified; using SOA MINTTL instead
Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone ns2.mywebsite.net/IN/localhost_resolver: loaded serial 2007081900
Aug 19 07:54:33 ip-208-109-108-10 named[12209]: running
Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone mywebsite.net/IN/localhost_resolver: sending notifies (serial 2007081900)
Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone ns1.mywebsite.net/IN/localhost_resolver: sending notifies (serial 2007081900)
Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone ns2.mywebsite.net/IN/localhost_resolver: sending notifies (serial 2007081900)

I have changed at my registrar the DNS adresses to NS1.mywebsite.net and NS2.mywebsite.net, the result is that work only NS1.mywebsite.net:

Code:
[url] --> don't work
[url] --> work
[url] --> don't work

View 0 Replies View Related

Different Countries

Sep 22, 2008

I keep on hearing people say that they won't use hosting from a particular country.

View 14 Replies View Related

How To Block Countries Via Firewall?

Jun 1, 2007

I was wondering we use ConfigServer Security & Firewall for our firewall and was wondering how we can go about blocking certain countries from being able to access our servers, mainly Korea, China and Russia?

I found this site: ....

View 2 Replies View Related

Blocking Entire Countries In IIS

Jul 23, 2009

I have come across an issue where traffic from India is hurting my business. What I have is a number of job boards. Realistically, the only issue I am having is with IT and Engineering positions being applied for heavily by people in India. Since my customer base is all in the USA, I would like to just block India.

While I know this is easy with Apache using a .htaccess file, I am using IIS on server 2007. Does anyone have any idea on how to do this easily with the large number of IPs that India uses?

View 6 Replies View Related

Countries Hosts Will Block

Feb 1, 2009

Recently I have been putting thought into creating an online storefront for my web hosting business. I stopped advertising online and even having a website for a good 8 months and built my business on local companies in my area.

I just read a thread regarding an Indonesian who says he can't get hosting because his country is black listed. I need information on other countries that web hosts block and don't allow orders from. I want to provide to the middle east, I am writing a great T.O.S. and A.U.P. but I am also looking for some advice on how to prevent fraud from happening to me.

My ideas are a phone call to the potential customer, and a faxed copy of there photo ID.
So could you please list some countries I should be weary about dealing with and some ways to prevent fraud.

View 4 Replies View Related

CreativeVPS - Blocked Countries

Jul 1, 2008

my vps blocked countries I don't know why?

I have 2 vps on same server and I don't have Firewall on my vps?

When I checked the status for my vps:

[url]

216.245.213.133

and 216.245.213.151

you will find alot of country not working my vps:

Montreal, QC, Canada

Zagreb, Croatia

London, UK

Canyon Country, CA, US

Pomona, CA, US

Frankfurt, Germany

Houston, TX, US

Kiev, Ukraine

Http error:Http_client.Bad_message("Unknown reason (e.g. unexpected eof, timeout)")

not working from some countries?

When I talked to the Support for my vps the said:

Abdulla,

We cannot really control if some countries can load the VPS or not, it is indeed up. We can try a reboot though, give me just a moment.

View 14 Replies View Related

Selectively Allow Countries In Iptables, Ban Everyone Else

Aug 7, 2008

This is sort of the opposite of "how can I ban _____ country".

I think it would be easier to ALLOW countries selectively, and deny any contact from anywhere else.

Is something like this feasible without using an offsite script?

I realize this would not have any effect on those using proxies or offshore ISPs.

View 3 Replies View Related

Page Cannot Be Viewed In Some Countries

May 23, 2007

I have a webpage and currently hosted in the Philippines

It can be accessed by countries such as Malaysia, Thailand and the Philippines

However Singapore is having a problem accessing it. We tried different accounts, different ISPs, even on Cafes, Laptops, wi-fi but cannot access it

It says:

Standard message:
The page cannot be displayed
The page you are looking for is currently unavailable. The Web site might be experiencing technical difficulties, or you may need to adjust your browser settings

Should this be a webhosting problem?

View 9 Replies View Related

Webhost Bandwidth In Other Countries Cheaper

Sep 17, 2008

Is web hosting in other countries a good choice if you need more bandwidth?

My german is not very good but for 23 euros a YEAR you get 12 GB space and unlimited traffic. Is that what it really says? Good deal?

www(dot)all-inclusive-webspace(dot)de

Would hosting in japan or korea or some really well connected country make your web hosting dollars go further if you need bandwidth?

View 4 Replies View Related

Some Countries Or Areas Can Not Access My Site

Oct 13, 2007

I am using vps

I am receving calls from some countries or areas when they say they can not access my site ( site can not be found)

I called my provider and they say every thing is alright from their site
and from my side too but some areas in other countries like right now I received a call from canada they can not access my site my provider wants me to send Tracert

I can ask my friends to send that but not every user why this happanes and what tools are available to check and see if my site is alright from all areas or counties?

View 11 Replies View Related

Blocking IP Addresses In .htaccess For Whole Countries

Jul 5, 2007

I'm tired of india people hitting our website (because it is a top hit on google and the others) then calling the next day to bug me to use them for outsourcing.

I am going to block some IP blocks in my .htaccess file to prevent this.

I can see from my statcounter logs that the hits from india so far have come from 59.* 102.* and 203.* (as in 59.###.###.###).

Is there a place I can lookup to find out if I block those, will I will also be blocking some north america IPs (since I'm using such a broad wildcard)?

All our paying business comes from north america.

my htaccess file will look like this:

Code:
# prevents a directory listing when typing in the directory path in the browser
Options -Indexes
#
# My effort to keep india sites from seeing our website
order allow,deny
deny from 203.
deny from 59.
allow from all

View 7 Replies View Related

Internet Traffic To Our Site Hampered For Certain Countries Only

Jun 4, 2009

This is not strictly a technical issue with our server as such, but this subforum still seemed most relevant. If not, please move the thread to a better suited one.

Bizarre problem: in the last 2-3 days, visitors from certain countries (France, Holland, Serbia, Slovenia, Macedonia, Montenegro) are having difficulties in reaching our website hosted on cari.net. However, other countries (USA, UK, Germany, Russia) don't seem to have this problem at all. The server itself is a-OK.

The website hosts an IPB forum. The problem is that every so often (very often), upon clicking on a link, the browser hangs on "connecting", and often times out and returns a Bad Request message. Sometimes, when a clicked link that's waiting is refreshed, it immediately loads the page up quickly, as if nothing is wrong.

We cannot call our hosting company, as it's really nothing to do with them, the server works perfectly, it's just that traffic from certain countries has difficulties to get through a certain level3.net node in the USA (that is where tracert usually breaks down, or gets through after several attemtps).

View 2 Replies View Related

Singapore Or Hongkong Colo - For Asean Countries

Nov 18, 2007

Which one do you prefer? For Asean countries only

View 14 Replies View Related

Should I Offer ROR

Jan 31, 2007

Offering Ruby on Rails on a regular shared environment server. I can easily install this but the question is, should I install it?

Is it going to use up a lot of server resources?

Should I dedicated one server alone for a Ruby on Rails installation?

Is it worth installing? If you have used ROR in the past, what is your experience

regarding it...does it raise conversion rates?

View 5 Replies View Related

Do You Use VMware To Offer Vps ?

Jan 17, 2009

my friend install VMware on his server to run vps, it looks likely interesting, do you use VMware to offer vps?

View 10 Replies View Related

How To Offer Windows VPS

Apr 15, 2009

how hosters manage to offer Windows VPSs. Obviously, they pay for the host OS, if using virtuozzo, but then how does the guest OS/VPS license work?

View 10 Replies View Related

VPS To Offer Free Hosting

Mar 25, 2009

I need a VPS with Cpanel/WHM/WHMCS or iHost.

Looking to spend around 25 - 40 month.

The must allow free hosting with legal adult content.

Right now i am with a reseller and the are abusing their downtime.

View 6 Replies View Related

Looking For Provider That Can Offer A /24 (256) IP Addresses

Oct 2, 2008

Hi everyone - I'm looking for a dedicated service provider (US based) that can provide at least 256 IP addresses on a per server basis

I would also like the provider to offer 100mbit and preferably 1Gbit connections. If possible I would like to keep my costs under $200 a month, not sure if that's realistic but ya never know.

Total storage and data transfer limits aren't really an issue.

I found a company server . lu that provides a /64 IPv6 allocation, which is mindblowing - but they're europe based so that won't work.

View 12 Replies View Related

What Is The Max Bandwidth A 100/10 Port Can Offer

Sep 2, 2009

i know 100/10 port can offer 100M max,

but i see a article say the performance of 100/10 port usually can not reach 100M,

if it can reach 50%,it is already very good.

because a user want to rent 50M bandwidth from me,

i worry if my switch may really reach 50M on the 100/10 port for him,

my firend ask me had better use a 1000/100/10 port for the case.

my switch is d-link des-3526.

View 8 Replies View Related

How To Offer 100% Uptime With Cpanel

Apr 18, 2009

thinking about it's to find some solution for offer 100% uptime for my customers.

Actually I have 4 servers running cpanel, my idea it's to setup another server where I put 4 VPS with a copy of the servers, and in case them fails, I up the VPS.

Real dedicated server will be ns1.

And the VPS will be ns2.

What I don't know how to manage it's the cpanel license, because if I want to have a copy of the servers in VPS I have to pay that licenses sure?

Also, today I see the DNS ONLY cpanel, could be better option? I'm also testing some cloud systems like mosso cloud servers and gogrid, but this don't allow me to be 100% and free of hardware failures.

And yes, not 100% because it's impossible, but 99,9999999%

View 4 Replies View Related

Do You Know Any Host That Offer RTO Servers

Mar 29, 2009

I saw on Pacific Rack they have a section where they offer Rent To Own (RTO) servers. This is what I've been looking for and would like to know if any other host have this kind of offering?

From what I read from the site, RTO servers feature server financing over a set period of months, allowing a capital strapped customer from the initial large expense of purchasing a server. RTO server's are subscribed to as dedicated servers with part of your monthly payment going torwards the cost of the server. Once the set period of months has been reached, the server ownership is transferred to you. You then convert to a colocation plan, benefiting from asset ownership. Once you own the server, you can do what you wish with it, including having it shipped to you. (taken from PR website)

View 7 Replies View Related

Who Offer Unmetered Hosting?

Nov 3, 2008

I'm currently doing close to a 25,000 daily unique average on my site and coming close to 12TB or monthly bandwidth transfer. With most DS Hosting services, I would usually be offered virtual rack solutions with multiple machines that would help raise my monthly limit but it would be greatly cost effective if I just stuck with one powerful server that offers unmetered bandwidth at a great price.

View 13 Replies View Related

Who Offer Servers With ATT, NTI Such NAPs

Oct 18, 2008

basically the have the best global speed. my friend tell me i should find server with this NAPs, but how?

att
nti
asn
savvis
gblx

View 1 Replies View Related

Any DCs Offer Class C IP Ranges

Nov 2, 2008

Most dcs offer 1-25 ip addresses... looking for some that offer 100-300 IPs.

Let me know any you have used, or any recommendations, or any places you know of that offer several IPs..

My justifiaction would be for SEO and SSL (As each SSL cert needs its own IP) -- a lot of datacenters don't like to give out more IPs, so I need some more lenient ones.

View 11 Replies View Related







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