PC Review


Reply
Thread Tools Rate Thread

Question on Transcender Question :-)

 
 
eddiec
Guest
Posts: n/a
 
      16th Apr 2004
I have a Win2K3 AD design transcender question in which you have two LANs
connected by a WAN link. A requirement of the DHCP implementation is to
provide redundancy in case of the failure of one server.

Two possibile answers are:

b) - Install a DHCP server in each office. On each server configure a single
scope and an exclusion range.
d) - Install a DHCP server in each office. On each server configure two
scopes, for each scope configure an exclusion range.

The recommended answer is (d). I do not understand this answer.

Let's say that I have two subnets:

LAN1 - 10.0.15.0/24
LAN2 - 10.0.16.0/24

connected by a WAN link.

The DHCP server on LAN1 is set up to service DHCP requests from LAN2 as well
as LAN1. Fine. But how will it know not to assign LAN2 IP addresses to local
computers. If it does that the local computer will belong to the wrong
subnet and will not be able to access any local resources?

TIA

eddiec :-)


 
Reply With Quote
 
 
 
 
Darth 2000
Guest
Posts: n/a
 
      16th Apr 2004
Any relation to EddiePok/EddieRox?

--
---------------
Darth 2000 - MCNGP # 0001 1100
Says: Be gone you vermin!



"eddiec" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> I have a Win2K3 AD design transcender question in which you have two LANs
> connected by a WAN link. A requirement of the DHCP implementation is to
> provide redundancy in case of the failure of one server.
>
> Two possibile answers are:
>
> b) - Install a DHCP server in each office. On each server configure a

single
> scope and an exclusion range.
> d) - Install a DHCP server in each office. On each server configure two
> scopes, for each scope configure an exclusion range.
>
> The recommended answer is (d). I do not understand this answer.
>
> Let's say that I have two subnets:
>
> LAN1 - 10.0.15.0/24
> LAN2 - 10.0.16.0/24
>
> connected by a WAN link.
>
> The DHCP server on LAN1 is set up to service DHCP requests from LAN2 as

well
> as LAN1. Fine. But how will it know not to assign LAN2 IP addresses to

local
> computers. If it does that the local computer will belong to the wrong
> subnet and will not be able to access any local resources?
>
> TIA
>
> eddiec :-)
>
>



 
Reply With Quote
 
Marlin Munrow
Guest
Posts: n/a
 
      16th Apr 2004
On Fri, 16 Apr 2004 16:30:00 +1000, "eddiec" <(E-Mail Removed)>
wrote:

>I have a Win2K3 AD design transcender question in which you have two LANs
>connected by a WAN link. A requirement of the DHCP implementation is to
>provide redundancy in case of the failure of one server.
>
>Two possibile answers are:
>
>b) - Install a DHCP server in each office. On each server configure a single
>scope and an exclusion range.
>d) - Install a DHCP server in each office. On each server configure two
>scopes, for each scope configure an exclusion range.
>
>The recommended answer is (d). I do not understand this answer.
>
>Let's say that I have two subnets:
>
>LAN1 - 10.0.15.0/24
>LAN2 - 10.0.16.0/24
>
>connected by a WAN link.
>
>The DHCP server on LAN1 is set up to service DHCP requests from LAN2 as well
>as LAN1. Fine. But how will it know not to assign LAN2 IP addresses to local
>computers. If it does that the local computer will belong to the wrong
>subnet and will not be able to access any local resources?
>
>TIA
>
>eddiec :-)
>



This is the age-old eighty-twenty rule in action

two subnets, two dhcp servers.
Server on Subnet A
subnet A 80% of address range
subnet B 20% of address range

Server on Subnet B
subnet B 80% of address range
subnet A 20% of address range

Which means that if one server is down the other can temporarily issue
new leases to give you time to recover - in reality this means a 4
hour window to an 8 hour window to get things fixed with minimised
impact on your environment.

Your question on what addresses get assigned to which subnet is a good
one. If your router is bootp/rfc1542 compliant then the discover
broadcast from the other subnet will arrive at the dhcp server tagged
with that fact in its header and the dhcp server will issue an address
based on the route it took to get to the dhcp server.

This means that server on subnet B *can* issue addresses for subnet A
because the DORA has the correct tag information from the Subnet A
interface of the router. Clever eh!!?


================================
My Hero:
http://www.theregister.co.uk/content/30/index.html
(remove vroomfondle to email me)
================================
 
Reply With Quote
 
Julian
Guest
Posts: n/a
 
      18th Apr 2004
Nice Info

"Marlin Munrow" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> On Fri, 16 Apr 2004 16:30:00 +1000, "eddiec" <(E-Mail Removed)>
> wrote:
>
> >I have a Win2K3 AD design transcender question in which you have two LANs
> >connected by a WAN link. A requirement of the DHCP implementation is to
> >provide redundancy in case of the failure of one server.
> >
> >Two possibile answers are:
> >
> >b) - Install a DHCP server in each office. On each server configure a

single
> >scope and an exclusion range.
> >d) - Install a DHCP server in each office. On each server configure two
> >scopes, for each scope configure an exclusion range.
> >
> >The recommended answer is (d). I do not understand this answer.
> >
> >Let's say that I have two subnets:
> >
> >LAN1 - 10.0.15.0/24
> >LAN2 - 10.0.16.0/24
> >
> >connected by a WAN link.
> >
> >The DHCP server on LAN1 is set up to service DHCP requests from LAN2 as

well
> >as LAN1. Fine. But how will it know not to assign LAN2 IP addresses to

local
> >computers. If it does that the local computer will belong to the wrong
> >subnet and will not be able to access any local resources?
> >
> >TIA
> >
> >eddiec :-)
> >

>
>
> This is the age-old eighty-twenty rule in action
>
> two subnets, two dhcp servers.
> Server on Subnet A
> subnet A 80% of address range
> subnet B 20% of address range
>
> Server on Subnet B
> subnet B 80% of address range
> subnet A 20% of address range
>
> Which means that if one server is down the other can temporarily issue
> new leases to give you time to recover - in reality this means a 4
> hour window to an 8 hour window to get things fixed with minimised
> impact on your environment.
>
> Your question on what addresses get assigned to which subnet is a good
> one. If your router is bootp/rfc1542 compliant then the discover
> broadcast from the other subnet will arrive at the dhcp server tagged
> with that fact in its header and the dhcp server will issue an address
> based on the route it took to get to the dhcp server.
>
> This means that server on subnet B *can* issue addresses for subnet A
> because the DORA has the correct tag information from the Subnet A
> interface of the router. Clever eh!!?
>
>
> ================================
> My Hero:
> http://www.theregister.co.uk/content/30/index.html
> (remove vroomfondle to email me)
> ================================



 
Reply With Quote
 
zenner
Guest
Posts: n/a
 
      18th Apr 2004
Look at it from the other direction...why would you want local clients to
get IP assignments over the links, from a distant source?

It is much more logical to have local assignment of IP addresses. Cuts down
on delay, overhead, frees up bandwidth...

I can't believe that Transcender did not give a very lucid explanation to
the question. Are you real sure you read it and looked up the references?
You can't just use the simulation as a sole training aid. If you are really
confused, Transcender does offer a help line/email contact.

PS. Cross posting is usually discouraged. Instead of generating one thread,
you are generating x times the number of post, plus those replies. It
appears that Usenet bandwidth (traffic conservation) is a thing of the past,
as are many other courtesies

"Julian" <(E-Mail Removed)> wrote in message
news:Wwvgc.717$(E-Mail Removed)...
> Nice Info
>
> "Marlin Munrow" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > On Fri, 16 Apr 2004 16:30:00 +1000, "eddiec" <(E-Mail Removed)>
> > wrote:
> >
> > >I have a Win2K3 AD design transcender question in which you have two

LANs
> > >connected by a WAN link. A requirement of the DHCP implementation is to
> > >provide redundancy in case of the failure of one server.
> > >
> > >Two possibile answers are:
> > >
> > >b) - Install a DHCP server in each office. On each server configure a

> single
> > >scope and an exclusion range.
> > >d) - Install a DHCP server in each office. On each server configure two
> > >scopes, for each scope configure an exclusion range.
> > >
> > >The recommended answer is (d). I do not understand this answer.
> > >
> > >Let's say that I have two subnets:
> > >
> > >LAN1 - 10.0.15.0/24
> > >LAN2 - 10.0.16.0/24
> > >
> > >connected by a WAN link.
> > >
> > >The DHCP server on LAN1 is set up to service DHCP requests from LAN2 as

> well
> > >as LAN1. Fine. But how will it know not to assign LAN2 IP addresses to

> local
> > >computers. If it does that the local computer will belong to the wrong
> > >subnet and will not be able to access any local resources?
> > >
> > >TIA
> > >
> > >eddiec :-)
> > >

> >
> >
> > This is the age-old eighty-twenty rule in action
> >
> > two subnets, two dhcp servers.
> > Server on Subnet A
> > subnet A 80% of address range
> > subnet B 20% of address range
> >
> > Server on Subnet B
> > subnet B 80% of address range
> > subnet A 20% of address range
> >
> > Which means that if one server is down the other can temporarily issue
> > new leases to give you time to recover - in reality this means a 4
> > hour window to an 8 hour window to get things fixed with minimised
> > impact on your environment.
> >
> > Your question on what addresses get assigned to which subnet is a good
> > one. If your router is bootp/rfc1542 compliant then the discover
> > broadcast from the other subnet will arrive at the dhcp server tagged
> > with that fact in its header and the dhcp server will issue an address
> > based on the route it took to get to the dhcp server.
> >
> > This means that server on subnet B *can* issue addresses for subnet A
> > because the DORA has the correct tag information from the Subnet A
> > interface of the router. Clever eh!!?
> >
> >
> > ================================
> > My Hero:
> > http://www.theregister.co.uk/content/30/index.html
> > (remove vroomfondle to email me)
> > ================================

>
>



---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.659 / Virus Database: 423 - Release Date: 4/15/2004


 
Reply With Quote
 
Pieter
Guest
Posts: n/a
 
      24th Apr 2004
> Look at it from the other direction...why would you want local clients to
> get IP assignments over the links, from a distant source?
>
> It is much more logical to have local assignment of IP addresses. Cuts

down
> on delay, overhead, frees up bandwidth...
>
>
> PS. Cross posting is usually discouraged. Instead of generating one

thread,
> you are generating x times the number of post, plus those replies. It
> appears that Usenet bandwidth (traffic conservation) is a thing of the

past,
> as are many other courtesies
>
> "Julian" <(E-Mail Removed)> wrote in message
> news:Wwvgc.717$(E-Mail Removed)...
> > Nice Info
> >



> > > >I have a Win2K3 AD design transcender question in which you have two

> LANs
> > > >connected by a WAN link. A requirement of the DHCP implementation is

to
> > > >provide redundancy in case of the failure of one server.
> > > >


In general, you're right: IP addresses should be obtained locally as much as
possible. The answer however lays in the question: you have to provide
redundancy. In other words: you will set up the DHCP servers as described in
answer D. As a result, computers will get their IP addresses locally, until
that server fails or runs out of addresses.

Best regards,
Pieter

P.s.: one of the courtesies you are talking about is not replying at the top
of a posting, but at the bottom. Another one is quoting: deleting the parts
of the message you are responding to that are not relevant.


 
Reply With Quote
 
Zenner
Guest
Posts: n/a
 
      20th May 2004
I had to think about that. Since a large number of people do "top post" as
you call it...

I don't think you are right. If you read the original post (and subsequent
replies) top posting allows you to read the reply without going through the
entire history in each and every message. What you may be thinking about is
"snipping" ... truncating the original message and/or previous replies.

I hope you are not advocating cross posting?

"Pieter" <(E-Mail Removed)> wrote in message
news:408a54ae$0$10312$(E-Mail Removed)...
> > Look at it from the other direction...why would you want local clients

to
> > get IP assignments over the links, from a distant source?
> >
> > It is much more logical to have local assignment of IP addresses. Cuts

> down
> > on delay, overhead, frees up bandwidth...
> >
> >
> > PS. Cross posting is usually discouraged. Instead of generating one

> thread,
> > you are generating x times the number of post, plus those replies. It
> > appears that Usenet bandwidth (traffic conservation) is a thing of the

> past,
> > as are many other courtesies
> >
> > "Julian" <(E-Mail Removed)> wrote in message
> > news:Wwvgc.717$(E-Mail Removed)...
> > > Nice Info
> > >

>
>
> > > > >I have a Win2K3 AD design transcender question in which you have

two
> > LANs
> > > > >connected by a WAN link. A requirement of the DHCP implementation

is
> to
> > > > >provide redundancy in case of the failure of one server.
> > > > >

>
> In general, you're right: IP addresses should be obtained locally as much

as
> possible. The answer however lays in the question: you have to provide
> redundancy. In other words: you will set up the DHCP servers as described

in
> answer D. As a result, computers will get their IP addresses locally,

until
> that server fails or runs out of addresses.
>
> Best regards,
> Pieter
>
> P.s.: one of the courtesies you are talking about is not replying at the

top
> of a posting, but at the bottom. Another one is quoting: deleting the

parts
> of the message you are responding to that are not relevant.
>
>
>



---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.688 / Virus Database: 449 - Release Date: 5/19/2004


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Perhaps and off topic question....but could use some help with video question.....I don't need codec help, just a general question. Bret Miller DIY PC 0 13th Oct 2006 01:23 AM
MCP Tests at Transcender? RJ Windows XP General 2 12th May 2005 10:41 AM
Transcender DNS Question eddiec Microsoft Windows 2000 DNS 3 23rd Mar 2004 01:52 AM
Transcender DNS Question eddiec Microsoft Windows 2000 Networking 3 23rd Mar 2004 01:52 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:08 PM.