11-25-2010 12:26 AM
Hi!
Sorry for my english.
Now I have a DHCP-server (FreeBSD) and simple config:
1. On router (Zyxel): vlan5 - ip interface 10.249.5.254/24
2. On DHCP-server: vlan5 (ip interfaces 10.249.5.253/24, 10.1.5.254/24)
DHCP-pool:
shared-network vlan5 {
subnet 10.249.5.0 netmask 255.255.255.0 {
deny unknown-clients;
option routers 10.249.5.254;
}
subnet 10.1.5.0 netmask 255.255.255.0 {
allow unknown-clients;
range 10.1.5.1 10.1.5.200;
option routers 10.1.5.254;
}
} # vlan5
So, DHCP-clients with MAC-adresses, included in this file, get ip 10.249.5...., another clients get ip 10.1.5....
Now I try to configure EX-3200 to get same configuration.
But I can't create more than one DHCP-pools for vlan5.
Please, help.
I need to split clients to authorized and not authorized (on FreeBSD - "allow unknown-clients" and "deny unknown-clients".
Thanks.