- Community Home
- >
- Networking
- >
- Switching and Routing
- >
- HPE Aruba Networking & ProVision-based
- >
- 2920 DHCP per Vlan
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2015 05:56 PM
06-27-2015 05:56 PM
2920 DHCP per Vlan
Hi-
I created a vlan with no problem. I also created dhcp pool with no problem. But how do you assign a dhcp per vlan and only for that vlan. I do see the dhcp server option under the vlan context. But you cant assign a pool?
Thanks!
Joe
- Tags:
- DHCP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2015 07:22 AM
06-28-2015 07:22 AM
Re: 2920 DHCP per Vlan
Hello,
I suspect that the binding between a dhcp pool and a VLAN is done by the static IP address of the VLAN. There is a requirement that the switch should have a static IP address in every VLAN in which it will function as a DHCP server (even if the switch is not the default gateway). Then based on the static IP address of the VLAN the switch decides which DHCP pool to use.
Example
dhcp-server pool "VLAN-10"
default-router "10.0.10.1"
dns-server "8.8.8.8"
network 10.0.10.0 255.255.255.0
range 10.0.10.101 10.0.10.199
exit
vlan 10
name "VLAN10"
untagged 1
ip address 10.0.10.2 255.255.255.0
dhcp-server
exit
Since VLAN 10 has a static IP address belonging to the network defined in dhcp pool "VLAN-10" the switch will use this pool for DHCP clients in VLAN 10.
A complete example:
http://h20564.www2.hp.com/hpsc/doc/public/display?docId=mmr_kc-0128094&sp4ts.oid=5354494
The manual is not very clear about it, so I am not 100% sure, but this is one thing that could be tested.
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2015 07:29 AM
06-28-2015 07:29 AM
Re: 2920 DHCP per Vlan
You are right. Thanks!