Jump to content
Калькуляторы

pppoe и bind

После того как на сервере настроил 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 от рута - это не есть хорошо?

Share this post


Link to post
Share on other sites

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.

...

};

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.