- Community Home
- >
- Networking
- >
- Switching and Routing
- >
- LAN Routing
- >
- DHCP relay with Multinetted 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
05-17-2012 07:30 AM
05-17-2012 07:30 AM
DHCP relay with Multinetted VLAN
I've inherited a 10.1.0.0/16 network which only has ~400 hosts.
What I'm trying to do is to break things down into subnets by swapping all hosts to DHCP but configuring a secondary address for static hosts to remain attached to the network.
Here's an example of the config:
vlan 3
name "Wing-1"
untagged D20
ip helper-address 10.1.1.8
ip address 192.168.3.1 255.255.255.0
ip address 10.2.100.42 255.255.0.0
tagged B24
ip igmp
exit
The problem is I want any DHCP requests coming from there to be sent at 192.168.3.0/14 requests, but they default to the 10.2 network.
Is there a way to specify the DHCP range I want to relay into?
Something along the lines of ip address 192.168.3.1 255.255.255.0 primary?
- Tags:
- DHCP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2012 02:40 PM
05-17-2012 02:40 PM
Re: DHCP relay with Multinetted VLAN
What is your "dhcp-relay option 82" setting? I haven't done this with multiple gateway addresses on the switch before, but it should work the same.
The trick is that the DHCP server selects the address based on the ip address of the relay agent, so as long as the option 82 is set right, it should use the IP address on which it received the request.
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2012 11:51 AM
06-05-2012 11:51 AM
Re: DHCP relay with Multinetted VLAN
Sorry I never responded, been busy and haven't checked the forums
The solution I found was to do
ip bootp-gateway 192.168.3.0
Much easier than messing with option 82.