someday Posted June 21, 2010 · Report post После того как на сервере настроил PPPoE в логах стал замечать следующее: named[32031]: creating IPv4 interface ppp0 failed; interface ignored named[32031]: listening on IPv4 interface ppp0, 111.222.333.444#53 named[32031]: could not listen on UDP socket: permission denied named[32031]: creating IPv4 interface ppp0 failed; interface ignored Но хосты при этом нормально резолвятся. Можно в принципе забить на это дело, ведь все нормально работает, но люблю когда в логах все аккуратно :) Ось gentoo. Вот конфиг без зон: options { directory "/var/bind"; //listen-on { 10.10.1.3;localhost; }; listen-on { any; }; version "no version info"; allow-query { 10.10.1.0/16; 127.0.0.1; }; interface-interval 1; pid-file "/var/run/named/named.pid"; }; Вот кусок скрипта запуска: start() { ebegin "Starting ${CHROOT:+chrooted }named" checkconfig || return 1 start-stop-daemon --start --quiet --pidfile ${PIDFILE} \ --nicelevel ${NAMED_NICELEVEL:-0} \ --exec /usr/sbin/named \ -- -u named -n ${CPU} ${OPTIONS} ${CHROOT:+-t} ${CHROOT} eend $? } Если ставлю вместо -u named - -u root, то все в порядке, а так в логе все засыпает что не может прослушать интерфейс. И если поставлю запуск named от рута - это не есть хорошо? Вставить ник Quote Ответить с цитированием Share this post Link to post Share on other sites More sharing options...
alexmern Posted June 21, 2010 (edited) · Report post listen-on { 10.10.1.3;localhost; }; //listen-on { any; }; Edited June 21, 2010 by alexmern Вставить ник Quote Ответить с цитированием Share this post Link to post Share on other sites More sharing options...
someday Posted June 21, 2010 · Report post Пробывал и listen-on { 10.10.1.3;localhost; }; - результат тот-же Вставить ник Quote Ответить с цитированием Share this post Link to post Share on other sites More sharing options...
st_re Posted June 22, 2010 · Report post options { ... interface-interval 0; //interface-interval //The server will scan the network interface list every interface-interval minutes. //The default is 60 minutes. If set to 0, interface scanning will only occur when the //configuration file is loaded. After the scan, listeners will be started on any new //interfaces (provided they are allowed by the listen-on configuration). Listeners // on interfaces that have gone away will be cleaned up. ... }; Вставить ник Quote Ответить с цитированием Share this post Link to post Share on other sites More sharing options...