NTP Server on FreeBSD

Hello, I'm trying to create a NTP server on a FreeBSD machine inside my local network, so all the clients of that network can actually query for that machine.
Should be of no problem right?
Here's the configuration of the /etc/ntp.conf on the FreeBSD machine:

server br.pool.ntp.org burst

driftfile /var/db/ntp.drift

logfile /vat/log/ntp.log

restrict default ignore
restrict 10.100.0.1 mask 255.255.255.0 nomodify notrap

It should get the time from br.pool.ntp.org, and restrict everything besides the local network right?
Here's the output of a linux machine when I try to execute

ntpdate -d -t 60 10.100.0.1
transmit(10.100.0.1)
receive(10.100.0.1)
transmit(10.100.0.1)
receive(10.100.0.1)
transmit(10.100.0.1)
receive(10.100.0.1)
transmit(10.100.0.1)
receive(10.100.0.1)
transmit(10.100.0.1)
10.100.0.1: Server dropped: strata too high
server 10.100.0.1, port 123
stratum 16, precision -19, leap 11, trust 000
refid [10.100.0.1], delay 0.02589, dispersion 0.00000
transmitted 4, in filter 4
reference time:    00000000.00000000  Thu, Feb  7 2036  4:28:16.000
originate timestamp: cbfa9813.907afd6e  Wed, Jun 11 2008 15:29:39.564
transmit timestamp:  cbfa9a32.19d11be6  Wed, Jun 11 2008 15:38:42.100
filter delay:  0.02591  0.02589  0.02589  0.02589 
         0.00000  0.00000  0.00000  0.00000 
filter offset: -542.536 -542.536 -542.536 -542.536
         0.000000 0.000000 0.000000 0.000000
delay 0.02589, dispersion 0.00000
offset -542.536628

11 Jun 15:38:42 ntpdate[7791]: no server suitable for synchronization found

Can anyone please help me out?

Thanks a lot.

Zarnick.

NTP needs some time so sync with other servers (even when using burst option). If your stratum is too low (16 = not synchronized) clients will refuse to take time from the server. How long have you waited? What does

ntpq -c rl

output look like?