- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Configuring DHCP server for a multiple subnet
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-16-2002 12:42 AM
04-16-2002 12:42 AM
Configuring DHCP server for a multiple subnet
One of my colleagues desires a help reg.,Configuaring DHCP Server for Multiple subnets.
So far we implemented DHCP server for Single subnet and its works fine.
Now we need to configure 1 HP9000 Kclass 10.20 as a DHCP server for multiple subnets.
The following are subnet and subnet mask of N/W
specified in Router interface:
Ethernet E0 : 19.195.136.0 255.255.254.0
Ethernet E1 : 19.195.148.0 255.255.254.0
Ethernet E1 : 19.195.152.0 255.255.254.0
DHCP Server is placed in 19.195.136.0 subnetwork.
The requirement is to configure DHCP server in 19.195.136.0 subnet and machine in 19.195.152.0
subnetwork should take 19.195.152.1 to 19.195.152.254 range of ipaddress,machines in 19.195.148.0 subnetwork should take 19.195.148.1 to 19.195.148.254 range of ipaddress,machines in 19.195.136.0 subnetwork should take 19.195.136.1 to 19.195.136.254 range of ipaddress.
First step i created 3 group....and what are the things i have to do in Router..and in Unix server.
Just guide me....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2002 12:44 AM
04-16-2002 12:44 AM
Re: Configuring DHCP server for a multiple subnet
Solution in thread:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x2fa503bbece8d5118ff40090279cd0f9,00.html
C.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2002 12:49 AM
04-16-2002 12:49 AM
Re: Configuring DHCP server for a multiple subnet
Link in above reply might be your solution but keep in mind it is a configuration for 11i and not 10.20.
Regards
Rainer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2002 12:53 AM
04-16-2002 12:53 AM
Re: Configuring DHCP server for a multiple subnet
On the server you simply configure separate pool groups for each subnet in /etc/dhcptab as the link in Clemens post shows. The server will use the 'gw' (gateway tag) in dhcptab as the key - the relay agent fills in gateway information on any packet that it relays to the server, and the server will use this information to decide which pool group to use.
Regards,
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2002 01:23 AM
04-16-2002 01:23 AM
Re: Configuring DHCP server for a multiple subnet
In the server side , better configure DHCP
through SAM.
If your router is a cisco router you can try this ,
#config>interface "dhcp client side ethernet intferce" ( eg. E0 )
on same interface mode give this set of commands.
no ip broadcast address 0.0.0.0
ip broadcast address 255.255.255.255
ip helper-address "your dhcp server's ip"
exit
#config>interface "dhcp server side interface"
(eg . E1 )
no ip broadcast address 0.0.0.0
ip broadcast address 255.255.255.255
exit
#config>ip forward-protocol udp 67
#config>ip forward-protocol udp 68
#config>ip forward-protocol udp 53
#config>exit
#copy run start
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2002 04:24 AM
04-16-2002 04:24 AM
Re: Configuring DHCP server for a multiple subnet
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x2fa503bbece8d5118ff40090279cd0f9,00.html
Mine subnet is 19.195.136.0 and gateway is 19.195.136.1, but the above link i have seen difference i.e.,subnet is 10.134.192.0 but gateway is 10.134.207.253
Its differentiating me,please let me clarify anyof U
Thanks for all ur co-ordination.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2002 04:33 AM
04-16-2002 04:33 AM
Re: Configuring DHCP server for a multiple subnet
Regards,
Steve