DHCP Server Deployment 50

Newbie613501 Lv1Posted 07 Sep 2023 11:13

Hi i want to ask if i have create DHCP Server on ETH2 with IP Range 192.168.1.1-192.168.1.100 Netmask 255.255.255.0 and Gateway 192.168.1.254.

the ETH2 connected to a switch, on the switch also have an AP. If i want to create DHCP Server on that AP with IP Range 192.168.1.100-192.168.1.254 . is it possible?

CLELUQMAN has solved this question and earned 10 coins.

Posting a reply earns you 2 coins. An accepted reply earns you 20 coins, 50 coins of bounty and another 10 coins for replying within 10 minutes. (Expired) What is Coin?

Enter your mobile phone number and company name for better service. Go

Having two DHCP servers in the same subnet can cause conflicts.
Recommend you to create a separate VLAN for the AP.
May I know why u want to do 2 DHCP server in a same subnet?
Is this answer helpful?
MTR Lv2Posted 17 Sep 2023 04:17
  
it is possible to have two DHCP servers on the same physical network, each serving different IP ranges, as long as they are on separate subnets.

In your scenario:

DHCP Server 1 (ETH2):

IP Range: 192.168.1.1 - 192.168.1.100
Netmask: 255.255.255.0
Gateway: 192.168.1.254
DHCP Server 2 (AP):

IP Range: 192.168.1.101 - 192.168.1.254
This setup can work, but there are some considerations:

Avoid IP Range Overlap: Make sure that the two DHCP servers don't allocate the same IP address to different devices. In your case, the first DHCP server allocates IPs from 192.168.1.1 to 192.168.1.100, so DHCP Server 2 should start assigning IPs from 192.168.1.101 and above to avoid conflicts.

Configure the AP:

Ensure that the Access Point (AP) is configured to use DHCP for IP address assignment. You'll want to set it to get its IP address dynamically from the first DHCP server on ETH2.
Avoid DHCP Relay Conflicts: If your network has multiple routers or Layer 3 devices, make sure that DHCP Relay or Helper addresses are properly configured. This ensures that DHCP requests from one subnet can reach the DHCP server on another subnet.

Verify Routing: Confirm that the routing on your network is set up correctly so that devices connected to the AP can communicate with the DHCP server on ETH2.

Consider VLANs: If you're using VLANs, ensure that the ports connecting the AP and ETH2 are configured to carry the appropriate VLANs.

DHCP Lease Times: Consider setting appropriate lease times for the DHCP assignments to ensure that IP addresses are released back to the pool after a reasonable amount of time.
RegiBoy Lv5Posted 15 Sep 2023 11:10
  
No its not possible if the interfaces are routed but it is possible if the interfaces are Layer 2 only.
Zonger Lv4Posted 15 Sep 2023 08:07
  
No, it's not advisable to create a DHCP server on the AP (Access Point) with the same IP range (192.168.1.100-192.168.1.254) as the DHCP server on ETH2 (192.168.1.1-192.168.1.100). This can lead to IP address conflicts and network issues.

Instead, you should configure the AP to operate in a way that it extends the DHCP pool managed by the DHCP server on ETH2. For example, you can set the AP to relay DHCP requests to the DHCP server on ETH2, allowing it to assign IP addresses from the same range (192.168.1.1-192.168.1.100) as the main DHCP server.

This way, you ensure that IP addresses are managed centrally by the primary DHCP server on ETH2, avoiding conflicts and simplifying network management.
Faixan Lv1Posted 12 Sep 2023 12:22
  
DHCP server deployment is the process of installing and configuring a DHCP server on a network. The DHCP server is responsible for assigning IP addresses to devices on the network.

The steps involved in DHCP server deployment vary depending on the operating system and the DHCP server software. However, the general steps are as follows:

Install the DHCP server software on a server.
Configure the DHCP server to assign IP addresses to devices on the network.
Create DHCP scopes, which define the range of IP addresses that the DHCP server can assign.
Configure DHCP options, which are additional settings that can be assigned to DHCP clients.
Authorize the DHCP server in Active Directory, if applicable.
Start the DHCP service.
Once the DHCP server is deployed, it will automatically assign IP addresses to devices on the network.

Here are some additional considerations for DHCP server deployment:

The DHCP server should be located in a central location on the network.
The DHCP server should have a high-speed connection to the network.
The DHCP server should be configured with a backup power supply.
The DHCP server should be monitored regularly to ensure that it is functioning properly.
Here are some of the benefits of DHCP server deployment:

Simplified IP address management: DHCP automates the process of assigning IP addresses to devices on the network, which can save time and effort.
Improved network security: DHCP can be used to assign IP addresses to devices on the network based on their security needs.
Reduced network traffic: DHCP can reduce network traffic by eliminating the need for devices to manually configure their IP addresses.
Improved network troubleshooting: DHCP can make it easier to troubleshoot network problems by providing information about the IP addresses that have been assigned to devices.
mdamores Lv3Posted 11 Sep 2023 14:06
  
While is it doable, it is not the best practice to deploy two or more DHCP broadcast in the same subnet. it is very hard for you in terms of troubleshooting and isolation. It is recommended to assign separate VLAN for the AP
Farina Ahmed Posted 11 Sep 2023 13:57
  
No, it's not recommended to create two DHCP servers on the same network segment with overlapping IP address ranges. Doing so can lead to conflicts and unpredictable behavior for devices trying to obtain IP addresses.

In your scenario, if you have a DHCP server on ETH2 with a range of 192.168.1.1-192.168.1.100, and you want to set up another DHCP server on an AP connected to the same network segment with a range of 192.168.1.100-192.168.1.254, it could result in IP address conflicts.

Instead, you should configure only one DHCP server on your network segment. You can either extend the IP address range of the existing DHCP server (e.g., 192.168.1.1-192.168.1.254) or, if you have specific requirements for different IP ranges, you can create DHCP reservations or static IP assignments for certain devices on the network. This way, you can ensure that all IP addresses are managed by a single DHCP server, preventing conflicts and simplifying network management.
Ann Max Lv2Posted 11 Sep 2023 13:45
  
In your scenario, you have already assigned an IP range of 192.168.1.1-192.168.1.100 to the DHCP server on ETH2, with a netmask of 255.255.255.0 and a gateway of 192.168.1.254. To avoid any conflicts, you should configure the DHCP server on the AP with a different IP range that does not overlap with the existing DHCP server's range.
Newbie517762 Lv5Posted 11 Sep 2023 09:45
  
While there is no conflict, it would be better to separate the DHCP segments for the AP and network clients if possible.
AriAri Lv2Posted 10 Sep 2023 14:36
  
You should have configured a separate DHCP pool for AP and Clients. Once is a security reason.
CLELUQMAN Lv3Posted 09 Sep 2023 12:02
  
It is possible , but it is not recommended.

I Can Help:

Change

Moderator on This Board

0
2
4

Started Topics

Followers

Follow

67
14
3

Started Topics

Followers

Follow

3
0
2

Started Topics

Followers

Follow

1
131
3

Started Topics

Followers

Follow

Board Leaders