Current time: 05-17-2024, 11:14 AM Hello There, Guest! (LoginRegister)


Post Reply 
[ispCP1.1.0] Alternative URL to reach your website not work
Author Message
007007 Offline
Newbie
*

Posts: 8
Joined: Jun 2011
Reputation: 0
Post: #1
[ispCP1.1.0] Alternative URL to reach your website not work
Hi,

I just installed ispCP 1.1.0 on debian6 (OVH server).

I have a problem with "Alternative URL to reach your website" they don't work, I created many clients and it does not work.

test : http://vu2003.damdouma.com

DNS or server problem? I also noticed that ispCP is installed on mysite.com and not admin.mysite.com, when i go to admin.mysite.com it does not work.


my etc/bind/named.conf.options

Code:
options {
    directory "/var/cache/bind";

    // If there is a firewall between you and nameservers you want
    // to talk to, you may need to fix the firewall to allow multiple
    // ports to talk.  See http://www.kb.cert.org/vuls/id/800113

    // If your ISP provided one or more IP addresses for stable
    // nameservers, you probably want to use them as forwarders.  
    // Uncomment the following block, and insert the addresses replacing
    // the all-0's placeholder.

    // forwarders {
    //     0.0.0.0;
    // };

    auth-nxdomain no;    # conform to RFC1035
    listen-on-v6 { ::1; };
    //listen-on { 127.0.0.1; };
    listen-on port 53 { any; };
    allow-recursion { 127.0.0.1; };
};

any idea please?

thank you
06-12-2011 12:26 AM
Find all posts by this user Quote this message in a reply
kilburn Offline
Development Team
*****
Dev Team

Posts: 2,182
Joined: Feb 2007
Reputation: 34
Post: #2
RE: [ispCP1.1.0] Alternative URL to reach your website not work
Your master domain (damdouma.com) zone is *not* handled by your server, but by ovh:
Code:
MiniBender:~ kilburn$ host -tNS damdouma.com
damdouma.com name server dns12.ovh.net.
damdouma.com name server ns12.ovh.net.

Therefore, the panel can not create the required dns records for vuxxxx.damdouma.com to work. Set your server as the main DNS server of your domain and everything should work.
06-12-2011 02:24 AM
Visit this user's website Find all posts by this user Quote this message in a reply
007007 Offline
Newbie
*

Posts: 8
Joined: Jun 2011
Reputation: 0
Post: #3
RE: [ispCP1.1.0] Alternative URL to reach your website not work
(06-12-2011 02:24 AM)kilburn Wrote:  Your master domain (damdouma.com) zone is *not* handled by your server, but by ovh:
Code:
MiniBender:~ kilburn$ host -tNS damdouma.com
damdouma.com name server dns12.ovh.net.
damdouma.com name server ns12.ovh.net.

Therefore, the panel can not create the required dns records for vuxxxx.damdouma.com to work. Set your server as the main DNS server of your domain and everything should work.

thank you for your help

where i can do this please? ispcp or registrar(OVH)?
06-12-2011 02:37 AM
Find all posts by this user Quote this message in a reply
kilburn Offline
Development Team
*****
Dev Team

Posts: 2,182
Joined: Feb 2007
Reputation: 34
Post: #4
RE: [ispCP1.1.0] Alternative URL to reach your website not work
Setting the domain nameservers must be done using the registar's control panel...
06-12-2011 03:26 AM
Visit this user's website Find all posts by this user Quote this message in a reply
007007 Offline
Newbie
*

Posts: 8
Joined: Jun 2011
Reputation: 0
Post: #5
RE: [ispCP1.1.0] Alternative URL to reach your website not work
OK i do that, i changed default DNS by:

Primary DNS: ks3095412.kimsufi.com
Secondary DNS: ns.kimsufi.com

but this seems not to work!

http://vu2003.damdouma.com

something wrong?
06-12-2011 03:31 AM
Find all posts by this user Quote this message in a reply
kilburn Offline
Development Team
*****
Dev Team

Posts: 2,182
Joined: Feb 2007
Reputation: 34
Post: #6
RE: [ispCP1.1.0] Alternative URL to reach your website not work
Yep, some things are wrong.

1. You installed using "admin.damdouma.com" as the panel's domain. Somehow, you later changed it to "damdouma.com" (without the admin part), probably in /etc/ispcp/ispcp.conf. However, this is not enough, because you also have to regenerate the dns zones if you change the master domain. As a result, your user's access url is actually vu2003.admin.damdouma.com.
Code:
MiniBender:~ kilburn$ host vu2003.admin.damdouma.com ks3095412.kimsufi.com
Using domain server:
Name: ks3095412.kimsufi.com
Address: 91.121.198.187#53
Aliases:

vu2003.admin.damdouma.com has address 91.121.198.187

2. You have setup "ns.kimsufi.com" as your secondary nameserver, but it is does not know anything about your domain.
Code:
MiniBender:~ kilburn$ host vu2003.admin.damdouma.com ns.kimsufi.com
Using domain server:
Name: ns.kimsufi.com
Address: 213.186.33.199#53
Aliases:

Host vu2003.admin.damdouma.com not found: 2(SERVFAIL)
06-12-2011 08:58 AM
Visit this user's website Find all posts by this user Quote this message in a reply
007007 Offline
Newbie
*

Posts: 8
Joined: Jun 2011
Reputation: 0
Post: #7
RE: [ispCP1.1.0] Alternative URL to reach your website not work
Thank you for these details.

now admin.damdouma.com work, but no damdouma.com :

Code:
Nameservers for damdouma.com:

    ks3095412.kimsufi.com returned (NORECORDS)
    ns.kimsufi.com returned (NORECORDS)

I'd like if possible to install my hosting site (wordpress) on damdouma.com...

I searched the problem, I found this topic:

http://forum.kimsufi.co.uk/showthread.php?t=200

the problem is (i think) :

Quote:OK, I have a friend helping me out with this, and he's finding that port 53 is blocked on the machine, leading to timeouts on DNS requests. There's no firewall installed on the box yet; is this maybe a firewall on the Kimsufi network that's blocking it from the outside?

the port was really blocked by the server, I unlocked it manually by changing the configuration of bind

etc/bind/named.conf.options

//listen-on { 127.0.0.1; };
listen-on port 53 { any; };

Code:
options {
    directory "/var/cache/bind";

    // If there is a firewall between you and nameservers you want
    // to talk to, you may need to fix the firewall to allow multiple
    // ports to talk.  See http://www.kb.cert.org/vuls/id/800113

    // If your ISP provided one or more IP addresses for stable
    // nameservers, you probably want to use them as forwarders.  
    // Uncomment the following block, and insert the addresses replacing
    // the all-0's placeholder.

    // forwarders {
    //     0.0.0.0;
    // };

    auth-nxdomain no;    # conform to RFC1035
    listen-on-v6 { ::1; };
    //listen-on { 127.0.0.1; };
    listen-on port 53 { any; };
    allow-recursion { 127.0.0.1; };
};

strange ...why this problem?

Thank you for your help
(This post was last modified: 06-12-2011 08:16 PM by 007007.)
06-12-2011 05:51 PM
Find all posts by this user Quote this message in a reply
JCircle Offline
Junior Member
*

Posts: 32
Joined: May 2011
Reputation: 0
Post: #8
RE: [ispCP1.1.0] Alternative URL to reach your website not work
normal set up in simple terms to keep dns working.
1 hostname something like web1.domain.com (this is the SERVER NAME not your website)
2 admin name somethine like admin.web1.domain.com or admin.domain.com (this is where ispCP lives)
3 add a user domain.com for your website and email. (this is where domain.com and http://www.domain.com live for your your site)

this should fix your issue



now for your DNS server issue..
I can telnet to your dns server on 53
your name server is NOT answering anything.
I would
1 stop bind
2 start bind
3 tail -f /var/log/messages to see if you see anything that says bind can not open port 53
my guess is something else is running on the port for some reason.
06-18-2011 09:06 AM
Find all posts by this user Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)