安装完Bind后,执行rndc-confgen没反应,经过Google搜索是由于
rndc-confgen 调用 /dev/random ,而 /dev/random 又通过 /proc/interrupts 产生随机数不足,导致
rndc-confgen 一直等待
rndc-confgen –help 可以指定 randomfile
1.
手动生成一个 randomfile 文件
# echo “selbooselbooselbooselbooselbooselbooselbooselbooselbooselbooselbooselbooselbooselbooselbooselbooselbooselbooselbooselbooselbooselbooselboo” > test
# rndc-confgen -r test
2.
rndc-confgen -r /dev/urandom
/dev/random 和 /dev/urandom 详解
Tags – linux , dns , bind
转载请注明:爱开源 » rndc-confgen 没有反应