View Full Version : Problem with mydnsconfig
pmsfo
7th February 2006, 22:39
after i login in msconfig, i came up with this error, it looks like directory error, but in the config.inc.php i put the correct directory
Config.inc.php
$conf["app_title"] = "MyDNSConfig";
$conf["app_version"] = "1.0.0";
$conf["rootpath"] = "/srv/www/htdocs";
$conf["fs_div"] = "/"; // File system divider, \\ on windows an
$conf["classpath"] = $conf["rootpath"].$conf["fs_div"]."lib".$c
$conf["temppath"] = $conf["rootpath"].$conf["fs_div"]."temp";
Can you help me Please
Warning: loadlistdef(list/soa.list.php): failed to open stream: No such file or directory in /srv/www/htdocs/lib/classes/listform.inc.php on line 53
Warning: loadlistdef(): Failed opening 'list/soa.list.php' for inclusion (include_path='/usr/share/php') in /srv/www/htdocs/lib/classes/listform.inc.php on line 53
Warning: Invalid argument supplied for foreach() in /srv/www/htdocs/lib/classes/listform.inc.php on line 67
Warning: Invalid argument supplied for foreach() in /srv/www/htdocs/lib/classes/listform.inc.php on line 93
Warning: Division by zero in /srv/www/htdocs/lib/classes/listform.inc.php on line 128
Warning: onshow(lib/lang/en__list.lng): failed to open stream: No such file or directory in /srv/www/htdocs/lib/classes/listform_actions.inc.php on line 137
Warning: onshow(): Failed opening 'lib/lang/en__list.lng' for inclusion (include_path='/usr/share/php') in /srv/www/htdocs/lib/classes/listform_actions.inc.php on line 137
till
8th February 2006, 00:32
Are you sure that you did not install MyDNSConfig in a subdirectory like /srv/www/htdocs/mydnsconfig?
please check the include setting in your php.ini, that the includ path includes also the current directory "." (dot).
pmsfo
8th February 2006, 21:02
Are you sure that you did not install MyDNSConfig in a subdirectory like /srv/www/htdocs/mydnsconfig?
please check the include setting in your php.ini, that the includ path includes also the current directory "." (dot).
I Intalled on /srv/www/htdocs :
i tried to find the place to put the "." in the php.ini i din't find, where i put "." ?
till
8th February 2006, 22:20
The dot must be in the include path. Example:
include_path = ".:/php/includes"
smelkomar
11th February 2006, 23:14
OK, we have BIND DNS Server at work... I'm thinking about to install MyDNS and his panel http://www.mydnsconfig.org/. Is this be a wrong action to install MyDNS... I'm now trying to install MyDNS+panel on my testmachine but I already made the step with BIND9. When I reach this point:
"mysqladmin -h host -u username -p create mydns" from Installation Manual,
I found this error when used for host trafmeter and root for username
mysqladmin: connect to server at 'trafmeter' failed
error: 'Host 'localhost.localdomain' is not allowed to connect to this MySQL server'
Some advises?
till
11th February 2006, 23:57
mysqladmin: connect to server at 'trafmeter' failed
error: 'Host 'localhost.localdomain' is not allowed to connect to this MySQL server'
Check the permissions in your mysql user table, that the mysql user you used for the connection, i guess root, is allowed to connect from "localhost.localdomain". As default the user can only connect from localhost.
falko
12th February 2006, 11:14
Please use localhost as host.
smelkomar
13th February 2006, 17:53
Check the permissions in your mysql user table, that the mysql user you used for the connection, i guess root, is allowed to connect from "localhost.localdomain". As default the user can only connect from localhost.
How to check permissions? I'm not good with MySQL :D In fact I'm not good at all :D :p
falko
13th February 2006, 18:24
You can have a look at the users table in the mysql database with phpMyAdmin. But I recommend that you try localhost first, as posted before.
smelkomar
15th March 2006, 08:37
OK, yesterday I reinstalled Ubuntu 5.10 only for MyDNS... Everything works, but there are several strange problems:
1. When I type http:://mydns.new.bg in browser the panel won't opens... only 'index of /' ???
2. When installed dnscache and compiles it with 'make' command I got this error:
tcpserver.o: In function `doit':
tcpserver.c:(.text+0x7a7): undefined reference to `errno'
remoteinfo.o: In function `mywrite':
remoteinfo.c:(.text+0x68): undefined reference to `errno'
remoteinfo.o: In function `myread':
remoteinfo.c:(.text+0x108): undefined reference to `errno'
timeoutconn.o: In function `timeoutconn':
timeoutconn.c:(.text+0x51): undefined reference to `errno'
timeoutconn.c:(.text+0xd4): undefined reference to `errno'
cdb.a(cdb.o):cdb.c:(.text+0xd8): more undefined references to `errno' follow
collect2: ld returned 1 exit status
make: *** [tcpserver] Error 1
3. When I used this command '/etc/init.d/mydns restart':
Restarting DNS server: mydns.
Stopping DNS server: mydns.
Starting DNS server: mydnsmydns[5788]: error loading gid for group `nobody'
mydns[5788]: using gid 65534 from user `nobody'
.
falko
15th March 2006, 13:46
3. When I used this command '/etc/init.d/mydns restart':
Restarting DNS server: mydns.
Stopping DNS server: mydns.
Starting DNS server: mydnsmydns[5788]: error loading gid for group `nobody'
mydns[5788]: using gid 65534 from user `nobody'
.
This problem is addressed here: http://www.howtoforge.com/mydns_name_server
You must edit /etc/mydns.conf and put
group = nogroup
into it.
smelkomar
15th March 2006, 18:31
Thank's a lot... But the first 2 problems are staying alive :(
And one question - "Now dnscache is listening on 1.2.3.5. Now we have to tell MyDNS that it should listen on 1.2.3.4 only"
Can I make dnscache and MyDNS listen to one IP - 1.2.3.4 ?
Edit: I forgot to say which version I installed - MyDNS 1.1.0... latest
falko
15th March 2006, 23:40
Can I make dnscache and MyDNS listen to one IP - 1.2.3.4 ?
No, you need two different IP addresses.
smelkomar
16th March 2006, 09:10
No, you need two different IP addresses.
In this case two real static IPs... ok, ok... Which IP must be used from clients? dnscache's or MyDNS' IP?
falko
16th March 2006, 12:20
The dnscache IP address. Otherwise your clients can only access domains the MyDNS has in its database (MyDNS is no resolving nameserver).
smelkomar
20th March 2006, 19:04
wget http://www.servershak.com/dns/dnsctl
returns this
--19:05:06-- http://www.servershak.com/dns/dnsctl
=> `dnsctl.1'
Resolving www.servershak.com... 72.29.98.3
Connecting to www.servershak.com|72.29.98.3|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://www.netfiredesign.com/dns/dnsctl [following]
--19:05:06-- https://www.netfiredesign.com/dns/dnsctl
=> `dnsctl.1'
Resolving www.netfiredesign.com... 72.29.98.4
Connecting to www.netfiredesign.com|72.29.98.4|:443... connected.
ERROR: Certificate verification error for www.netfiredesign.com: unable to get local issuer certificate
To connect to www.netfiredesign.com insecurely, use `--no-check-certificate'.
Unable to establish SSL connection.
I dl the file with '--no-check-certificate' option but maybe this is the reason of the problem from my post:
tcpserver.o: In function `doit':
tcpserver.c:(.text+0x7a7): undefined reference to `errno'
remoteinfo.o: In function `mywrite':
remoteinfo.c:(.text+0x68): undefined reference to `errno'
remoteinfo.o: In function `myread':
remoteinfo.c:(.text+0x108): undefined reference to `errno'
timeoutconn.o: In function `timeoutconn':
timeoutconn.c:(.text+0x51): undefined reference to `errno'
timeoutconn.c:(.text+0xd4): undefined reference to `errno'
cdb.a(cdb.o):cdb.c:(.text+0xd8): more undefined references to `errno' follow
collect2: ld returned 1 exit status
make: *** [tcpserver] Error 1
:mad: :mad: :mad:
falko
21st March 2006, 00:10
I dl the file with '--no-check-certificate' option but maybe this is the reason of the problem from my post:
No, that's not the problem.
Which distribution do you use? Debian?
smelkomar
21st March 2006, 09:27
No, that's not the problem.
Which distribution do you use? Debian?
Ubuntu 5.10
falko
21st March 2006, 18:37
That might be the problem because the tutorial was written for Debian Sarge...
smelkomar
3rd April 2006, 09:14
That might be the problem because the tutorial was written for Debian Sarge...
On Sarge... that's the result when I type mydns.new.bg :mad:
http://mydns.new.bg/apache2-default/
falko
3rd April 2006, 12:54
You must append the MyDNSConfig directory to the URL, e.g. http://mydns.new.bg/mydnsconfig.
smelkomar
5th April 2006, 10:13
You must append the MyDNSConfig directory to the URL, e.g. http://mydns.new.bg/mydnsconfig.
Object not found! :confused:
falko
6th April 2006, 00:49
Please post the output of ls -la /var/www
smelkomar
6th April 2006, 19:56
I specially removed apache 1.3.33 and installed apache2...
total 188
drwxr-xr-x 10 root root 4096 2006-04-01 14:42 .
drwxr-xr-x 14 root root 4096 2006-04-01 14:12 ..
-rw-r--r-- 1 root root 133806 2006-04-01 14:27 admin.php
drwxr-xr-x 2 root root 4096 2006-04-01 14:12 apache2-default
drwxr-xr-x 2 root root 4096 2006-04-01 14:42 cache
-rw-r--r-- 1 root root 280 2006-04-01 14:42 index.htm
-rw-r--r-- 1 root root 5639 2006-04-01 14:42 INSTALL
drwxr-xr-x 4 root root 4096 2006-04-01 14:55 lib
lrwxrwxrwx 1 root root 21 2006-04-01 14:15 phpmyadmin -> /usr/share/phpmyadmin
drwxr-xr-x 2 root root 4096 2006-04-01 14:42 sql
drwxr-xr-x 2 root root 4096 2006-04-01 14:42 temp
drwxr-xr-x 2 root root 4096 2006-04-01 14:42 tools
drwxr-xr-x 7 root root 4096 2006-04-01 14:42 web
drwxr-xr-x 2 root root 4096 2006-04-01 14:40 webalizer
falko
6th April 2006, 23:58
I tried http://mydns.new.bg/index.htm, and then the browser wants me to download index.php. You must enable PHP in your Apache.
smelkomar
7th April 2006, 11:02
I tried http://mydns.new.bg/index.htm, and then the browser wants me to download index.php. You must enable PHP in your Apache.
from /etc/apache2/mods-enabled/php4.conf:
<IfModule mod_php4.c>
AddType application/x-httpd-php .php .phtml .php3
AddType application/x-httpd-php-source .phps
</IfModule>
from /etc/apache2/apache2.conf:
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
falko
7th April 2006, 12:48
What's the output of ls -la /etc/apache2/mods-enabled?
Is PHP also enabled for the vhost where MyDNSConfig is installed?
smelkomar
7th April 2006, 13:31
What's the output of ls -la /etc/apache2/mods-enabled?
Is PHP also enabled for the vhost where MyDNSConfig is installed?
total 12
drwxr-xr-x 2 root root 4096 2006-04-01 14:39 .
drwxr-xr-x 8 root root 4096 2006-04-01 14:12 ..
lrwxrwxrwx 1 root root 40 2006-04-01 14:16 actions.load -> /etc/apache2/mods-available/actions.load
lrwxrwxrwx 1 root root 36 2006-04-01 14:16 cgi.load -> /etc/apache2/mods-available/cgi.load
lrwxrwxrwx 1 root root 40 2006-04-01 14:39 include.load -> /etc/apache2/mods-available/include.load
-rw-r--r-- 1 root root 129 2006-04-01 14:38 php4.conf
lrwxrwxrwx 1 root root 40 2006-04-01 14:39 rewrite.load -> /etc/apache2/mods-available/rewrite.load
lrwxrwxrwx 1 root root 36 2006-04-01 14:38 ssl.conf -> /etc/apache2/mods-available/ssl.conf
lrwxrwxrwx 1 root root 36 2006-04-01 14:38 ssl.load -> /etc/apache2/mods-available/ssl.load
lrwxrwxrwx 1 root root 39 2006-04-01 14:39 suexec.load -> /etc/apache2/mods-available/suexec.load
lrwxrwxrwx 1 root root 40 2006-04-01 14:12 userdir.conf -> /etc/apache2/mods-available/userdir.conf
lrwxrwxrwx 1 root root 40 2006-04-01 14:12 userdir.load -> /etc/apache2/mods-available/userdir.load
Hmmm, see this from /etc/apache2/sites-enabled/000-default:
NameVirtualHost *
<VirtualHost *>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
# This directive allows us to have apache2's default start page
# in /apache2-default/, but still have / go to the right place
RedirectMatch ^/$ /apache2-default/
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access.log combined
ServerSignature On
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>
Other strange problem is when I'm loggin into server there is an error with hostname. I use "hostname -v mydns" to fix it...after 1-2 days this error appears.
And this is the content of /var/www/web/dns:
form list rr_edit.php soa_del.php soa_list.php
lib rr_del.php rr_list.php soa_edit.php templates ... maybe MyDNS is installed
falko
7th April 2006, 20:34
Ok, what's the output of ls -la /etc/apache2/mods-available?
smelkomar
8th April 2006, 17:50
Ok, what's the output of ls -la /etc/apache2/mods-available?
total 176
drwxr-xr-x 2 root root 4096 2006-04-01 14:12 .
drwxr-xr-x 8 root root 4096 2006-04-01 14:12 ..
-rw-r--r-- 1 root root 66 2005-09-05 14:16 actions.load
-rw-r--r-- 1 root root 60 2005-09-05 14:16 asis.load
-rw-r--r-- 1 root root 70 2005-09-05 14:16 auth_anon.load
-rw-r--r-- 1 root root 68 2005-09-05 14:16 auth_dbm.load
-rw-r--r-- 1 root root 74 2005-09-05 14:16 auth_digest.load
-rw-r--r-- 1 root root 130 2005-09-05 14:16 auth_ldap.load
-rw-r--r-- 1 root root 62 2005-09-05 14:16 cache.load
-rw-r--r-- 1 root root 70 2005-09-05 14:16 cern_meta.load
-rw-r--r-- 1 root root 61 2005-09-05 14:16 cgid.conf
-rw-r--r-- 1 root root 60 2005-09-05 14:16 cgid.load
-rw-r--r-- 1 root root 58 2005-09-05 14:16 cgi.load
-rw-r--r-- 1 root root 37 2005-09-05 14:16 dav_fs.conf
-rw-r--r-- 1 root root 64 2005-09-05 14:16 dav_fs.load
-rw-r--r-- 1 root root 58 2005-09-05 14:16 dav.load
-rw-r--r-- 1 root root 66 2005-09-05 14:16 deflate.load
-rw-r--r-- 1 root root 72 2005-09-05 14:16 disk_cache.load
-rw-r--r-- 1 root root 66 2005-09-05 14:16 expires.load
-rw-r--r-- 1 root root 72 2005-09-05 14:16 ext_filter.load
-rw-r--r-- 1 root root 72 2005-09-05 14:16 file_cache.load
-rw-r--r-- 1 root root 66 2005-09-05 14:16 headers.load
-rw-r--r-- 1 root root 60 2005-09-05 14:16 imap.load
-rw-r--r-- 1 root root 66 2005-09-05 14:16 include.load
-rw-r--r-- 1 root root 60 2005-09-05 14:16 info.load
-rw-r--r-- 1 root root 60 2005-09-05 14:16 ldap.load
-rw-r--r-- 1 root root 70 2005-09-05 14:16 mem_cache.load
-rw-r--r-- 1 root root 90 2005-09-05 14:16 mime_magic.conf
-rw-r--r-- 1 root root 72 2005-09-05 14:16 mime_magic.load
-rw-r--r-- 1 root root 840 2005-09-05 14:16 proxy.conf
-rw-r--r-- 1 root root 78 2005-09-05 14:16 proxy_connect.load
-rw-r--r-- 1 root root 70 2005-09-05 14:16 proxy_ftp.load
-rw-r--r-- 1 root root 72 2005-09-05 14:16 proxy_http.load
-rw-r--r-- 1 root root 316 2005-09-05 14:16 proxy.load
-rw-r--r-- 1 root root 66 2005-09-05 14:16 rewrite.load
-rw-r--r-- 1 root root 66 2005-09-05 14:16 speling.load
-rw-r--r-- 1 root root 3545 2005-09-05 14:16 ssl.conf
-rw-r--r-- 1 root root 58 2005-09-05 14:16 ssl.load
-rw-r--r-- 1 root root 64 2005-09-05 14:16 suexec.load
-rw-r--r-- 1 root root 70 2005-09-05 14:16 unique_id.load
-rw-r--r-- 1 root root 244 2005-09-05 14:16 userdir.conf
-rw-r--r-- 1 root root 66 2005-09-05 14:16 userdir.load
-rw-r--r-- 1 root root 70 2005-09-05 14:16 usertrack.load
-rw-r--r-- 1 root root 74 2005-09-05 14:16 vhost_alias.load
falko
8th April 2006, 18:39
The fact that php4.conf is a real file instead of a link in /etc/apache2/mods-enabled and that neither php4.conf nor php4.load are available in /etc/apache2/mods-available makes me think that you somehow deleted them or misconfigured PHP.
Normally you have php4.conf and php4.load in /etc/apache2/mods-available, and to enable PHP4 in Apache, you just run a2enmod php4 which creates symlinks tp php4.conf and php4.load in /etc/apache2/mods-enabled.
Please try this:
Create /etc/apache2/mods-available/php4.conf with this content:
<IfModule mod_php4.c>
AddType application/x-httpd-php .php .phtml .php3
AddType application/x-httpd-php-source .phps
</IfModule> and /etc/apache2/mods-available/php4.load with this content:
LoadModule php4_module /usr/lib/apache2/modules/libphp4.so
Then do this:
rm -f /etc/apache2/mods-enabled/php4.conf
a2enmod php4
/etc/init.d/apache2 restart
smelkomar
8th April 2006, 18:53
a2enmod php4
Module php4 installed; run /etc/init.d/apache2 force-reload to enable.
/etc/init.d/apache2 restart
Forcing reload of web server: Apache2Syntax error on line 1 of /etc/apache2/mods-enabled/php4.load:
Cannot load /usr/lib/apache2/modules/libphp4.so into server: /usr/lib/apache2/modules/libphp4.so: cannot open shared object file: No such file or directory
Content of /etc/apache2/mods-enabled/php4.load:
LoadModule php4_module /usr/lib/apache2/modules/libphp4.so
falko
8th April 2006, 19:12
Please install mod_php4:
apt-get install libapache2-mod-php4
and try again.
smelkomar
8th April 2006, 19:25
Please install mod_php4:
apt-get install libapache2-mod-php4
and try again.
Reading Package Lists... Done
Building Dependency Tree... Done
Suggested packages:
php4-pear
The following NEW packages will be installed:
libapache2-mod-php4
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 1612kB of archives.
After unpacking 3219kB of additional disk space will be used.
Get:1 http://ftp.bg.debian.org stable/main libapache2-mod-php4 4:4.3.10-16 [1612kB]
Fetched 1612kB in 17s (93.7kB/s)
Selecting previously deselected package libapache2-mod-php4.
(Reading database ... 24782 files and directories currently installed.)
Unpacking libapache2-mod-php4 (from .../libapache2-mod-php4_4%3a4.3.10-16_i386.deb) ...
Setting up libapache2-mod-php4 (4.3.10-16) ...
Forcing reload of web server: Apache2 ... no pidfile found! not running?.
After I type "/etc/init.d/apache2 restart" I have working mydns interface on http://mydns.new.bg/web/index.php...
:D 10x
smelkomar
8th April 2006, 19:55
Another problem :confused: :D When I type username >>admin and password >>admin this error appears in MyDNSConfig Panel
Fatal error: Call to undefined function: mysql_connect() in /var/www/lib/classes/db_mysql.inc.php on line 75
till
8th April 2006, 20:16
This error means that your PHP installations does not have mysql enabled.
Install the mysql extension for PHP and restart your webserver.
smelkomar
8th April 2006, 21:19
This error means that your PHP installations does not have mysql enabled.
Install the mysql extension for PHP and restart your webserver.
From the official PHP site:
Installation on Linux Systems
PHP 4
The option --with-mysql is enabled by default. This default behavior may be disabled with the --without-mysql configure option. If MySQL is enabled without specifying the path to the MySQL install DIR, PHP will use the bundled MySQL client libraries.
But... how to install it. I supose after new install of PHP4, there are new errors in configuration :mad: In /etc/php4/apache2/php.ini I found these lines:
; Example lines:
;extension=mysql.so
;extension=gd.so
; means these lines are commented... should I remove comments?
till
8th April 2006, 21:22
PHP 4
The option --with-mysql is enabled by default. This default behavior may be disabled with the --without-mysql configure option. If MySQL is enabled without specifying the path to the MySQL install DIR, PHP will use the bundled MySQL client libraries.
This is correct if you compile PHP, but it is not correct for any current linux distributions as they have modularized PHP pacages.
But... how to install it. I supose after new install of PHP4, there are new errors in configuration :mad:
run:
apt-get install php4-mysql
smelkomar
9th April 2006, 13:39
apt-get install php4-mysql
...
php4-mysql is already the newest version
...
Line 75
$this->linkId = mysql_connect($this->dbHost, $this->dbUser, $this->dbPass);
till
9th April 2006, 13:44
apt-get install php4-mysql
...
php4-mysql is already the newest version
...
Line 75
$this->linkId = mysql_connect($this->dbHost, $this->dbUser, $this->dbPass);
Ok, then it is installed but not enabled. Please check your php.ini (there might be more then one php.ini file!) if the line extension=mysql.so line is not commented out.
smelkomar
9th April 2006, 14:04
OMG, DNS server isn't working... I use IP 213.145.104.20 for Primary DNS under WinXP SP2 and there's "dns lookup error". What this mean... I speacially try this to check all is ok:
dig @213.145.104.20 www.google.com
This is the output:
; <<>> DiG 9.2.4 <<>> @213.145.104.20 www.google.com
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 3484
;; flags: qr rd ra; QUERY: 1, ANSWER: 5, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;www.google.com. IN A
;; ANSWER SECTION:
www.google.com. 439902 IN CNAME www.l.google.com.
www.l.google.com. 300 IN A 216.239.59.104
www.l.google.com. 300 IN A 216.239.59.99
www.l.google.com. 300 IN A 216.239.59.147
www.l.google.com. 300 IN A 216.239.59.103
;; Query time: 352 msec
;; SERVER: 213.145.104.20#53(213.145.104.20)
;; WHEN: Mon Apr 10 14:31:59 2006
;; MSG SIZE rcvd: 116
This is the output from "mtr www.google.com":
My traceroute [v0.67]
mydns (0.0.0.0)(tos=0x0 psize=64 bitpattern=0x00) Mon Apr 10 14:35:28 2006
Resolver error: No error returned but no answers given. of fields quit
Packets Pings
Host Loss% Snt Last Avg Best Wrst StDev
1. 213.145.104.7 0.0% 11 0.4 0.6 0.4 1.4 0.4
2. 212.116.143.65 0.0% 11 1.5 2.3 1.2 5.3 1.3
3. 213.145.99.42 0.0% 11 1.5 1.7 1.1 2.3 0.4
4. ge1-3-0-255.sof1core1.pantel.net 0.0% 11 2.8 2.5 1.9 3.4 0.4
5. ge-1-1-0.bud4core1.pantel.net 0.0% 11 27.6 33.0 27.3 82.8 16.5
6. bpt-b2-geth2-2.telia.net 0.0% 11 28.2 28.1 27.1 29.0 0.7
7. hbg-bb2-pos7-3-2.telia.net 0.0% 11 49.5 48.5 48.0 49.5 0.5
8. hbg-b2-link.telia.net 0.0% 11 48.4 48.6 47.9 49.8 0.6
9. google-110073-hbg-b2.c.telia.net 0.0% 11 51.2 54.0 50.7 75.1 7.1
10. 66.249.95.135 9.1% 11 52.0 51.5 50.5 52.4 0.5
11. 72.14.232.140 9.1% 11 50.9 51.4 50.6 53.0 0.8
12. 216.239.43.90 0.0% 11 58.4 61.5 58.1 75.9 5.3
216.239.48.146
13. 66.249.95.164 0.0% 11 85.4 73.4 71.3 85.4 4.1
216.239.49.254
14. 64.233.174.43 0.0% 11 68.8 74.7 68.5 132.0 19.0
216.239.48.158
15. 64.233.174.186 0.0% 11 69.0 70.6 68.5 74.4 2.4
64.233.174.18
16. 64.233.174.14 20.0% 10 71.1 70.4 69.1 71.2 0.8
66.102.9.99
17. 66.102.9.99 0.0% 10 69.3 69.8 68.9 72.0 1.0
What's goin' on?! :confused:
smelkomar
12th April 2006, 18:11
Any ideas? :(
falko
13th April 2006, 00:19
Try to use other nameservers, e.g. 145.253.2.75 and 193.174.32.18.
smelkomar
13th April 2006, 18:59
Try to use other nameservers, e.g. 145.253.2.75 and 193.174.32.18.
Different IPs for DNS like 212. and 213. or ...? For MyDNS 212.xxx.x... and for djdns 213.xxx.x... ?
falko
13th April 2006, 23:44
No, your Windows client PCs should use other name servers, e.g. 145.253.2.75 and 193.174.32.18.
smelkomar
14th April 2006, 10:42
No, your Windows client PCs should use other name servers, e.g. 145.253.2.75 and 193.174.32.18.
Hmmm, I understood from the "howto" that this DNS server works and as usual DNS resolving machine? For my needs - for LAN with approx. 200 hosts
falko
14th April 2006, 15:18
and as usual DNS resolving machine?
Yes, if you configure it right. Make sure you tell your Windows client PCs to use the correct IP address (the one dnscache runs on, not MyDNS).
smelkomar
14th April 2006, 19:47
Yes, if you configure it right. Make sure you tell your Windows client PCs to use the correct IP address (the one dnscache runs on, not MyDNS).
Somehow we're talking in diff. languages :D I use the correct IP address - 213.145.104.20, which is the dnscache's IP :eek: Look my post with "dig @213.145.104.20" and "mtr www.google.com" commands - with MTR there isn't answer but Resolver works :eek:
falko
15th April 2006, 16:08
I don't know why mtr isn't working, but if the resolver is working, then everything's fine.
smelkomar
16th April 2006, 18:30
I don't know why mtr isn't working, but if the resolver is working, then everything's fine.
Resolver error: No error returned but no answers given
Yes, reslover works... I don't know there is no answers, under the server and XP test machine :mad: Perhaps that I used v1.1.0 instead of 1.0.0 from "howto" :confused:
falko
17th April 2006, 19:21
Resolver error: No error returned but no answers givenIs maybe your firewall preventing your resolver from doing his work?
smelkomar
18th April 2006, 11:50
Is maybe your firewall preventing your resolver from doing his work?
apt-get remove --purge iptables ???
falko
18th April 2006, 12:09
Maybe your router's firewall?
smelkomar
19th April 2006, 10:25
OK, this morning I found something unusuall... When I use DNS 213.145.104.20 on machine with IP 10.10.1.3 from our internal network I can surf... but when I use it on machine with real static IP I can't :confused:
falko
19th April 2006, 15:53
This really looks like some kind of firewall problem...
vBulletin® v3.8.4, Copyright ©2000-2009, Jelsoft Enterprises Ltd.