- Community Home
- >
- Networking
- >
- Switching and Routing
- >
- HPE Aruba Networking & ProVision-based
- >
- Re: 2930F DHCP with several address pools?
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
04-21-2021 06:28 AM
04-21-2021 06:28 AM
2930F DHCP with several address pools?
We're currently using a linux server to run isc dhcpd but want to migrate to use one of our 2930F switches in order to retire some hardware. The dhcp server should allocate addresses in any of three networks. There is no difference between the networks so any client is happy with any address in one of them. For isc dhcpd, the config file has one "shared-network" section containing three "subnet" declarations.
When trying this on the 2930F, I set up three pools since I could not figure out a way to assign more than one subnet or address range to a single pool. The switch has an address on each of the subnets. However, only one pool is used for addresses, so when deploying this configuration we quickly run out of addresses.
Does anyone understand what's going on? Is this not supported or did I misunderstand someting? The relevant part of the config file at the end of the post.
Thanks,
Staffan
dhcp-server pool "MYNET25"
authoritative
default-router "x.x.25.129"
dns-server "x.x.27.200,x.x.27.201"
domain-name "mynet.org"
lease 00:00:15
network x.x.25.128 255.255.255.128
range x.x.25.132 x.x.25.254
exit
dhcp-server pool "MYNET26"
authoritative
default-router "x.x.26.129"
dns-server "x.x.27.200,x.x.27.201"
domain-name "mynet.org"
lease 00:00:15
network x.x.26.128 255.255.255.128
range x.x.26.132 x.x.26.254
exit
dhcp-server pool "MYNET27"
authoritative
default-router "x.x.27.254"
dns-server "x.x.27.200,x.x.27.201"
domain-name "mynet.org"
lease 00:00:15
network x.x.27.0 255.255.255.0
range x.x.27.1 x.x.27.199
exit
vlan 1
dhcp-server
ip address x.x.27.203 255.255.255.0
ip address x.x.25.131 255.255.255.128
ip address x.x.26.131 255.255.255.128
exit
dhcp-server conflict-logging
dhcp-server enable
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2021 09:08 AM
04-22-2021 09:08 AM
Re: 2930F DHCP with several address pools?
Hello,
Multiple pools is possible but why vlan1 has multiple IP assignments?
A vlan can have only one subnet of IP address.
Thanks!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2021 05:55 AM
04-27-2021 05:55 AM
Re: 2930F DHCP with several address pools?
So exactly what do you mean when you say that a vlan can have only one subnet? In general this is certainly possible, so I assume you mean that the switch is only capable of serving dhcp addresses for one subnet per vlan?
If this is the case a workaround would be to have three different vlans for the dhcp service, and to untag the vlans again by using two switch ports, but that really seems like an ugly workaround...
Staffan