Люди, помогите! Как сделать лучше - в офисе есть сеть 50 компов через один свич подключена к серверу, который должен раздавать динамически айпи и коекому статически, так вот дело в том, что нужно поделить сеть на три подсети что они друг-друга не видели и как правильно сделать с dns?
Тоесть каким образом мне привязать определеные компы к определенным подсетям...
FreeBSD 6.2
# dhcpd.conf
#
# Sample configuration file for ISC dhcpd
## option definitions common to all supported networks...
option domain-name "hanif.com.ua";
option domain-name-servers ns.ontime.com.ua;
default-lease-time 600;
max-lease-time 7200;
use-host-decl-names on;
option routers 10.7.0.1;
next-server 10.7.0.1;
# If this DHCP server is the official DHCP server for the local
# network, the authoritative directive should be uncommented.
authoritative;
# ad-hoc DNS update scheme - set to "none" to disable dynamic DNS updates.
ddns-update-style ad-hoc;
ddns-update-style none;
# Use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
log-facility local7;
# Hanif
subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.2 192.168.0.100;
range 192.168.0.120 192.168.0.254;
host Vasilii {
hardware ethernet 00:0e:a6:ba:d6:68;
}
host Katia {
hardware ethernet 00:0c:6e:b2:aa:b5;
}
}
zone ontime. {
primary ;
key ;
}
# ONTIME
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.2 192.168.0.254;
}
# ONESOURCE
subnet 192.168.2.0 netmask 255.255.255.0 {
range 192.168.2.2 192.168.2.254;
}