View Full Version : DNS Blocked by server
Hello..!
I've been having a problem with all domains not resolving to my server. I recently checked /var/log/messages and noticed that all incoming and outgoing packages are been dropped.
How do i unblock or stop the kernel of blocking this IP addresses?
Thanks
Dec
ProWebUK
06-05-2004, 12:41 PM
iptables -P INPUT ACCEPT
iptables -P OUTPUT ACCEPT
iptables -F
Chris
Originally posted by ProWebUK
iptables -P INPUT ACCEPT
iptables -P OUTPUT ACCEPT
iptables -F
Chris
Ok i did it and my domains are still not resolving. I can access the accounts usuing ip address like
http://123.123.123.123/~test/
but not like
http://test.com
Thanks
ProWebUK
06-05-2004, 01:01 PM
named running and ok and reading the zone files correctly?
Chris
Originally posted by ProWebUK
named running and ok and reading the zone files correctly?
Chris
hmmm
I ran named -g and got this error:
Jun 05 16:18:56.260 starting BIND 9.2.2-P3 -g
Jun 05 16:18:56.261 using 1 CPU
Jun 05 16:18:56.264 loading configuration from '/etc/named.conf'
Jun 05 16:18:56.264 /etc/named.conf:4: change directory to '/var/named' failed: permission denied
Jun 05 16:18:56.264 /etc/named.conf:4: parsing failed
Jun 05 16:18:56.264 loading configuration: permission denied
Jun 05 16:18:56.264 exiting (due to fatal error)
Dec
DirectAdmin Support
06-05-2004, 02:00 PM
Try:
chmod 644 /etc/named.conf
chown root:root /etc/named.confWhat are the startup options in your /etc/init.d/named file?
You can always get a new named boot script:wget -O /etc/init.d/named http://www.directadmin.com/named
chmod 755 /etc/init.d/named
chkconfig named resetJohn
Originally posted by DirectAdmin Support
What are the startup options in your /etc/init.d/named file?
John
#!/bin/bash
#
# named This shell script takes care of starting and stopping
# named (BIND DNS server).
#
# chkconfig: - 55 45
# description: named (BIND) is a Domain Name Server (DNS) \
# that is used to resolve host names to IP addresses.
# probe: true
# Source function library.
. /etc/rc.d/init.d/functions
# Source networking configuration.
[ -r /etc/sysconfig/network ] && . /etc/sysconfig/network
RETVAL=0
prog="named"
# Check that networking is up.
[ "${NETWORKING}" = "no" ] && exit 0
[ -r /etc/sysconfig/named ] && . /etc/sysconfig/named
[ -x /usr/sbin/named ] || exit 0
[ -r ${ROOTDIR}/etc/named.conf ] || exit 0
start() {
# Start daemons.
if [ -n "`/sbin/pidof named`" ]; then
echo -n $"$prog: already running"
return 1
fi
echo -n $"Starting $prog: "
if [ -n "${ROOTDIR}" -a "x${ROOTDIR}" != "x/" ]; then
OPTIONS="${OPTIONS} -t ${ROOTDIR}"
fi
daemon /usr/sbin/named -u named ${OPTIONS}
RETVAL=$?
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/named
echo
return $RETVAL
}
stop() {
# Stop daemons.
echo -n $"Stopping $prog: "
/usr/sbin/rndc stop
RETVAL=$?
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/named || {
killproc named
RETVAL=$?
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/named
echo
return $RETVAL
}
success
echo
return $RETVAL
}
rhstatus() {
/usr/sbin/rndc status
return $?
}
restart() {
stop
# wait a couple of seconds for the named to finish closing down
sleep 2
start
}
reload() {
echo -n $"Reloading $prog: "
/usr/sbin/rndc reload >/dev/null 2>&1 || /usr/bin/killall -HUP `/sbin/pidof -o %PPID named`
[ "$?" -eq 0 ] && success $"$prog reload" || failure $"$prog reload"
echo
return $?
}
probe() {
# named knows how to reload intelligently; we don't want linuxconf
# to offer to restart every time
/usr/sbin/rndc reload >/dev/null 2>&1 || echo start
return $?
}
# See how we were called.
case "$1" in
start)
start
;;
stop)
stop
;;
status)
rhstatus
;;
restart)
restart
;;
condrestart)
[ -e /var/lock/subsys/named ] && restart
;;
reload)
reload
;;
probe)
probe
;;
*)
echo $"Usage: $0 {start|stop|status|restart|condrestart|reload|probe}"
exit 1
esac
exit $?
I sent all the information you requested in the email!
vBulletin® v3.7.0, Copyright ©2000-2008, Jelsoft Enterprises Ltd.