ExamNotes.net  -  IT certification portal

ForumsCertResearchTop sitesNewslettersFree email
HomeRegister
Exams Notes
Practice exams
Exam games
Questions by email
Online training
Training videos
College degrees
Boot camps
Book store
Links directory
Tell a friend
For webmasters

CompTIA Exam Vouchers
Save money on CompTIA exams
Question of the day
Sign up to receive
interactive practice questions
for MCSE, CompTIA
Cisco and other exams
TestKing
Get MCSE, MCSD, CCNA, CCNP,A+, N+ and many more

* ExamSheets *
Guide for Success!
Actual Questions & Answers
MCSE, MCSD, A+ ,CCNA, CCNP
Oracle 8i, Oracle 9i

Online practice tests

Certification sites

Online university

Online college

Online education

Distance learning

Software forum

Server administration forum

Programming resources






This is interesting: Free IT Magazines | Databases help forum



Cisco > CCIE > DHCP and VLANS

Show a Printable Version
Email This Page to Someone!
Receive updates to this thread




Click here for list of CCIE study guides and order yours now!



Author DHCP and VLANS
whytokayok
Member




Registered: Sep 2000
Location: Bakersfield, Ca
Country: USA
State:
Certifications: CCNA, VoIP- ATM-Frame
Working on: CCDA, CCNP, MCP

Total Posts: 171
Question DHCP and VLANS

Has any one every tried using a single DHCP server to administer addresses to clients on different vlan subnets.

Ex. Vlan1 192.168.1.0 /24 , Vlan2 192.168.2.0/24, Vlan 3 192.168.3.0 /24, …………

How would the DHCP server know which scope to use? IP helper on the router in someway does it??

__________________
John 3:16 bought me to my knees..

California e-Business Solutions
www.c-ebs.com

Report this post to a moderator

Old Post 04-02-02 10:20 AM
whytokayok is offline Click Here to See the Profile for whytokayok Click here to Send whytokayok a Private Message Visit whytokayok's homepage! Add whytokayok to your buddy list Find more posts by whytokayok Reply w/Quote Edit/Delete Message IP: Logged
MadChef
A Huge Fake




Registered: Sep 2000
Location:
Country: USA
State:
Certifications:
Working on: A Sex Farm

Total Posts: 1426
Re: DHCP and VLANS

quote:
Originally posted by whytokayok
How would the DHCP server know which scope to use? IP helper on the router in someway does it??


When IP helper forwards the packet, it sets the GIADDR field in the request to the address of the interface that received the packet. When the DHCP server receives the packet, it examines that field and chooses the appropriate scope.

MadChef

Report this post to a moderator

Old Post 04-02-02 02:27 PM
MadChef is offline Click Here to See the Profile for MadChef Click here to Send MadChef a Private Message Add MadChef to your buddy list Find more posts by MadChef Reply w/Quote Edit/Delete Message IP: Logged
whytokayok
Member




Registered: Sep 2000
Location: Bakersfield, Ca
Country: USA
State:
Certifications: CCNA, VoIP- ATM-Frame
Working on: CCDA, CCNP, MCP

Total Posts: 171

Just to be sure I got it..... The requesting interface would be in this case lanwould be the routers subinterface for the vlan(s).

Thanks

__________________
John 3:16 bought me to my knees..

California e-Business Solutions
www.c-ebs.com

Report this post to a moderator

Old Post 04-03-02 12:45 AM
whytokayok is offline Click Here to See the Profile for whytokayok Click here to Send whytokayok a Private Message Visit whytokayok's homepage! Add whytokayok to your buddy list Find more posts by whytokayok Reply w/Quote Edit/Delete Message IP: Logged
MadChef
A Huge Fake




Registered: Sep 2000
Location:
Country: USA
State:
Certifications:
Working on: A Sex Farm

Total Posts: 1426

quote:
Originally posted by whytokayok
Just to be sure I got it..... The requesting interface would be in this case lanwould be the routers subinterface for the vlan(s).



Yes.

Report this post to a moderator

Old Post 04-03-02 10:05 AM
MadChef is offline Click Here to See the Profile for MadChef Click here to Send MadChef a Private Message Add MadChef to your buddy list Find more posts by MadChef Reply w/Quote Edit/Delete Message IP: Logged
darthfeces
Senior Member




Registered: Mar 2001
Location: somewhere, NJ
Country: United States
State:
Certifications: A+, N+, I-net+, CCNP, CCDP, CCSP, CISSP
Working on: CCIE R&S Lab CCIE-S, PMP, CISM

Total Posts: 1786

Forwarding of Broadcast Packets and Protocols

There are circumstances in which you want to control which broadcast packets and which protocols are forwarded. You do this with helper addresses and the
forward-protocol commands.

The ip helper-address interface subcommand tells the router to forward UDP broadcasts, including BootP, received on this interface. (UDP is the connectionless
alternative to TCP at the Transport Layer.) Use the ip helper-address interface subcommand to specify the destination address for forwarding broadcast packets. Full
command syntax follows.

ip helper-address address
no ip helper-address address

The address argument specifies a destination broadcast or host address to be used when forwarding such datagrams. You can have more than one helper address per
interface. You remove the list with no ip helper-address.

If you do not specify a helper address command, the router will not forward UDP
broadcasts.

Example:

This example defines an address that act as a helper address.

ip helper-address 121.24.43.2

The ip forward-protocol global configuration command allows you to specify which protocols and ports the router will forward. Its full syntax is listed next.

ip forward-protocol {udp|nd|spanning-tree} [port]
no ip forward-protocol {udp|nd|spanning-tree} [port]

The keyword nd is the ND protocol used by older diskless SUN workstations. The keyword udp is the UDP protocol. A UDP destination port can be specified to
control which UDP services are forwarded. By default both UDP and ND forwarding are enabled if a helper address has been defined for an interface. If no ports are
specified, these datagrams are forwarded, by default:

Trivial File Transfer (TFTP)

Domain Name System

IEN-116 Name Server

Time service

NetBios Name Server

NetBios Datagram Server

Boot Protocol (BootP) client and server datagrams

TACACS service

Use the no ip forward-protocol command with the appropriate keyword and argument to remove the protocol.

Example:

The example below first defines a helper address, then uses the ip forward-protocol command to specify forwarding of UDP only.

interface ethernet 1
ip helper-address 131.120.1.0
ip forward-protocol udp

__________________
http://www.cisco.com/univercd/

Report this post to a moderator

Old Post 04-07-02 05:24 AM
darthfeces is offline Click Here to See the Profile for darthfeces Click here to Send darthfeces a Private Message Add darthfeces to your buddy list Find more posts by darthfeces Reply w/Quote Edit/Delete Message IP: Logged
whytokayok
Member




Registered: Sep 2000
Location: Bakersfield, Ca
Country: USA
State:
Certifications: CCNA, VoIP- ATM-Frame
Working on: CCDA, CCNP, MCP

Total Posts: 171

Thanks..... I ran across a situation that will require several VLANS using DCHP to distribute the addresses for each subnet. This implementation of VLANS is not discussed in the switching (BCMSN) or routing (BSCN) courses offered by Cisco. As matter of fact the Switching course did not cover IP helper at all.

__________________
John 3:16 bought me to my knees..

California e-Business Solutions
www.c-ebs.com

Report this post to a moderator

Old Post 04-08-02 07:20 AM
whytokayok is offline Click Here to See the Profile for whytokayok Click here to Send whytokayok a Private Message Visit whytokayok's homepage! Add whytokayok to your buddy list Find more posts by whytokayok Reply w/Quote Edit/Delete Message IP: Logged
All times are GMT.
Post new thread   Post reply

Cisco exam notes



Forum Jump:
Rate This Thread:
Forum Rules:
Who Can Read The Forum? Any registered user or guest.
Who Can Post New Topics? Any registered user.
Who Can Post Replies? Any registered user.
Changes: Messages can be edited by their author.
Posts: HTML code is OFF. Smilies are ON. vB code is ON. [IMG] code is ON.
 

ExamNotes forum archive


Powered by: vBulletin 2.2.8
Copyright ©2000, Jelsoft Enterprises Limited.

  Free Braindumps | mcse braindumps