Get rid of the /16 bit mask. You don't need 16,777,214 hosts in each subnet
Use a /24 bit mask,...limit your subnets to 254 host each. Ethernet
effieciency degrades after about 300 Hosts on a segment. The degredation is
less noticable on a Gigabit speed system, but the degredation is still
there.
The following example provides 4 subnets of 254 Hosts giving a total of 1016
Hosts
It requires a LAN Router to route between the subnets and requires that the
Router have the ability to forward DHCP Queries to the DHCP Servers. The
DHCP Servers have only one Nic and "live" on only one subnet (doesn't matter
which subnet). Also,....No Superscopes!
Server 1
-----------------
#1 Scope 10.200.0.0/24 (254 Hosts)
Address Pool - 10.200.0.1-10.200.0.254
Exclusion Range - 10.200.0.1-10.200.0.25 (normal expected Exclusion)
Exclusion Range - 10.200.0.115-10.200.0.254 (to create the 50/50)
Static Reservations - There is no range. The Exclusions are for covering
static ranges. Reservations are generally random and you should never have
more than a handful of them
#2 Scope 10.200.1.0/24 (254 Hosts)
Address Pool - 10.200.1.1-10.200.1.254
Exclusion Range - 10.200.1.1-10.200.1.25 (normal expected Exclusion)
Exclusion Range - 10.200.1.115-10.200.1.254 (to create the 50/50)
Static Reservations - There is no range. The Exclusions are for covering
static ranges. Reservations are generally random and you should never have
more than a handful of them
#3 Scope 10.200.2.0/24 (254 Hosts)
Address Pool - 10.200.2.1-10.200.2.254
Exclusion Range - 10.200.2.1-10.200.2.25 (normal expected Exclusion)
Exclusion Range - 10.200.2.115-10.200.2.254 (to create the 50/50)
Static Reservations - There is no range. The Exclusions are for covering
static ranges. Reservations are generally random and you should never have
more than a handful of them
#4 Scope 10.200.3.0/24 (254 Hosts)
Address Pool - 10.200.3.1-10.200.3.254
Exclusion Range - 10.200.3.1-10.200.3.25 (normal expected Exclusion)
Exclusion Range - 10.200.3.115-10.200.3.254 (to create the 50/50)
Static Reservations - There is no range. The Exclusions are for covering
static ranges. Reservations are generally random and you should never have
more than a handful of them
Server 2
-------------------
#1 Scope 10.200.0.0/24 (254 Hosts)
Address Pool - 10.200.0.1-10.200.0.254
Exclusion Range - 10.200.0.1-10.200.0.25 (normal expected Exclusion)
Exclusion Range - 10.200.0.26-10.200.0.114 (to create the 50/50)
Static Reservations - There is no range. The Exclusions are for covering
static ranges. Reservations are generally random and you should never have
more than a handful of them
#2 Scope 10.200.1.0/24 (254 Hosts)
Address Pool - 10.200.1.1-10.200.1.254
Exclusion Range - 10.200.1.1-10.200.1.25 (normal expected Exclusion)
Exclusion Range - 10.200.1.26-10.200.1.114 (to create the 50/50)
Static Reservations - There is no range. The Exclusions are for covering
static ranges. Reservations are generally random and you should never have
more than a handful of them
#3 Scope 10.200.2.0/24 (254 Hosts)
Address Pool - 10.200.2.1-10.200.2.254
Exclusion Range - 10.200.2.1-10.200.2.25 (normal expected Exclusion)
Exclusion Range - 10.200.2.26-10.200.2.114 (to create the 50/50)
Static Reservations - There is no range. The Exclusions are for covering
static ranges. Reservations are generally random and you should never have
more than a handful of them
#4 Scope 10.200.3.0/24 (254 Hosts)
Address Pool - 10.200.3.1-10.200.3.254
Exclusion Range - 10.200.3.1-10.200.3.25 (normal expected Exclusion)
Exclusion Range - 10.200.3.26-10.200.3.114 (to create the 50/50)
Static Reservations - There is no range. The Exclusions are for covering
static ranges. Reservations are generally random and you should never have
more than a handful of them
--
Phillip Windell
www.wandtv.com
The views expressed, are my own and not those of my employer, or Microsoft,
or anyone else associated with me, including my cats.
-----------------------------------------------------
"UselessUser" <(E-Mail Removed)> wrote in message
news

DCECD3F-7C7C-4B8A-8B94-(E-Mail Removed)...
> OK, I think I know what I need to do, but let me expand on what I have
> already inherited from a previous IT guy...
>
> 2 DHCP servers, 1 LAN
>
> Our network is on a 10.200.0.0/16
>
> Each server has a scope (Not a superscope or anything) which is
> 10.200.0.0/16
>
> However each server has different address pools..
>
> Server 1 - Scope 10.200.0.0/16
> Address Pool - 10.200.1.1-10.200.2.254
>
> Server 2- Scope 10.200.0.0/16
> Address Pool - 10.200.6.1-10.200.9.254
>
> And thats it! No exclusion ranges (I believe this is why we are getting
> NACKS as clients are attempting to get addresses from the other server
> rather
> than the one they got their original address from).
>
> What I am looking to do is sort this out properly so from what people have
> said I need to do this:
>
> Server 1 - Scope 10.200.0.0/16
> Address Pool - 10.200.2.1-10.200.2.254
> Exclusion Range - 10.200.6.1-10.200.9.254
> Static Reservations - 10.200.1.1-10.200.1.254
>
> Server 2- Scope 10.200.0.0/16
> Address Pool - 10.200.6.1-10.200.9.254
> Exclusion Range - 10.200.2.1-10.200.2.254
> Static Reservations - 10.200.1.1-10.200.1.254
>
> How does that look, will this avoid the NACK's and allow my static
> reservations to work?