
September 23rd, 2004, 12:46 AM
|
|
Contributing User
|
|
Join Date: Aug 2004
Posts: 44
Time spent in forums: < 1 sec
Reputation Power: 5
|
|
|
FreeBSD 4.10 and BIND 9 not running in chroot
I think there's a problem, I followed this tutorial on setting up BIND 9 located in the 'bet you wanna setup dns servers' (except used freebsd 4.10) and it doesnt look like the DNS server is up  after running it and doing ps -aux, i see no mention of NAMED
Code:
server# ps -aux
USER PID %CPU %MEM VSZ RSS TT STAT STARTED TIME COMMAND
root 0 0.0 0.0 0 0 ?? DLs 12:39AM 0:00.00 (swapper)
root 149 0.0 0.1 1272 924 p0 S 12:40AM 0:00.02 -su (csh)
root 144 0.0 0.2 5296 2144 ?? I 12:40AM 0:00.02 sshd: rob [priv] (sshd)
root 136 0.0 0.1 956 668 v0 Is+ 12:40AM 0:00.00 /usr/libexec/getty Pc ttyv0
root 101 0.0 0.2 2584 1872 ?? Is 12:40AM 0:00.00 /usr/sbin/sshd
root 99 0.0 0.1 1012 784 ?? Is 12:40AM 0:00.00 /usr/sbin/cron
root 97 0.0 0.1 1044 692 ?? Is 12:40AM 0:00.00 /usr/sbin/inetd -wW
root 88 0.0 0.1 980 708 ?? Ss 12:40AM 0:00.02 /usr/sbin/syslogd -s -l /var/chroot/named/dev/log
root 12 0.0 0.0 0 0 ?? DL 12:39AM 0:00.00 (syncer)
root 11 0.0 0.0 0 0 ?? DL 12:39AM 0:00.00 (vnlru)
root 10 0.0 0.0 0 0 ?? DL 12:39AM 0:00.00 (bufdaemon)
root 9 0.0 0.0 0 0 ?? DL 12:39AM 0:00.00 (vmdaemon)
root 8 0.0 0.0 0 0 ?? DL 12:39AM 0:00.00 (pagedaemon)
root 7 0.0 0.0 0 0 ?? DL 12:39AM 0:00.00 (usb3)
root 6 0.0 0.0 0 0 ?? DL 12:39AM 0:00.00 (usb2)
root 5 0.0 0.0 0 0 ?? DL 12:39AM 0:00.00 (usb1)
root 4 0.0 0.0 0 0 ?? DL 12:39AM 0:00.00 (usbtask)
root 3 0.0 0.0 0 0 ?? DL 12:39AM 0:00.00 (usb0)
root 2 0.0 0.0 0 0 ?? DL 12:39AM 0:00.00 (taskqueue)
root 1 0.0 0.0 544 320 ?? SLs 12:39AM 0:00.00 /sbin/init --
root 167 0.0 0.0 424 248 p0 R+ 12:44AM 0:00.00 ps -aux
server#
netstat -an brings up
Code:
server# netstat -an
Active Internet connections (including servers)
Proto Recv-Q Send-Q Local Address Foreign Address (state)
tcp4 0 52 209.123.8.144.22 69.37.128.214.3381 ESTABLISHED
tcp4 0 0 209.123.8.144.22 *.* LISTEN
udp4 0 0 *.514 *.*
udp6 0 0 *.514 *.*
Active UNIX domain sockets
Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr
e7deee60 stream 0 0 0 e7deedc0 0 0
e7deedc0 stream 0 0 0 e7deee60 0 0
e7deef00 dgram 0 0 e7df71c0 0 0 0 /var/chroot/named/dev/log
e7dedf00 dgram 0 0 e7df74c0 0 0 0 /var/run/log
server#
|