When working with iDRAC 7 Express on Dell PowerEdge R720xd servers without an Enterprise license, you'll encounter four network interface options labeled LOM1 through LOM4 in the configuration menu. These correspond directly to the server's four physical Broadcom NIC ports (NIC1-NIC4), where:
- LOM1 = NIC1 (first physical port)
- LOM2 = NIC2 (second physical port)
- LOM3 = NIC3 (third physical port)
- LOM4 = NIC4 (fourth physical port)
The static MAC address you observe in iDRAC settings is indeed the controller's dedicated address, while each physical NIC port maintains its own unique MAC. This design means:
Physical NIC MAC: Dynamic (assigned to port)
iDRAC MAC: Static (assigned to controller)
The selected LOM port acts as a passthrough for iDRAC traffic while simultaneously handling regular network traffic if configured to do so.
For optimal network separation and performance:
- Avoid sharing ports between iDRAC and production traffic when possible
- Preferred setup: Dedicate LOM4 (NIC4) to iDRAC if other ports handle production traffic
- Alternative setup: If sharing is necessary, ensure proper VLAN tagging
For scripted configurations, use Dell's RACADM utility:
# Set iDRAC to use LOM2 (NIC2)
racadm set iDRAC.NIC.Selection 2
# Verify current setting
racadm get iDRAC.NIC.Selection
# Set static IP configuration
racadm set iDRAC.IPv4.Address 192.168.1.100
racadm set iDRAC.IPv4.Netmask 255.255.255.0
racadm set iDRAC.IPv4.Gateway 192.168.1.1
If experiencing connection issues:
- Verify NIC port link status (LED indicators)
- Check switch port configuration (VLANs, spanning-tree, etc.)
- Confirm no IP conflicts exist
- Test with direct crossover cable if switch is suspect
When configuring iDRAC 7 Express on Dell PowerEdge R720xd servers, you'll encounter four LOM (LAN on Motherboard) port options in the iDRAC network interface selection menu. These directly correspond to the physical NIC ports:
LOM1 = NIC1 (first physical port)
LOM2 = NIC2 (second physical port)
LOM3 = NIC3 (third physical port)
LOM4 = NIC4 (fourth physical port)
What confuses many administrators is that while each physical NIC port has its own unique MAC address, the iDRAC MAC address remains static regardless of which LOM port you select. This occurs because:
- The physical NIC ports simply act as passthrough channels
- The actual iDRAC controller maintains its own dedicated MAC address
- Network traffic is redirected internally to the baseboard management controller
For optimal configuration when using iDRAC Express (without dedicated port):
1. Identify your primary network traffic NIC (e.g., NIC1 for OS traffic)
2. Select a different LOM port for iDRAC (e.g., LOM2)
3. Assign separate VLAN if possible for management traffic
4. Configure appropriate IP addressing scheme
For administrators managing multiple servers, here's a PowerShell snippet to configure iDRAC networking:
# Set iDRAC to use LOM2 with static IP
racadm -r 192.168.0.120 -u root -p calvin setniccfg -s 192.168.0.121 255.255.255.0 192.168.0.1
racadm -r 192.168.0.120 -u root -p calvin set iDRAC.NIC.Selection LOM2
racadm -r 192.168.0.120 -u root -p calvin set iDRAC.IPv4.DHCPEnable Disabled
If experiencing connectivity issues:
- Verify physical link status on the selected LOM port
- Check for IP conflicts with the iDRAC static address
- Confirm switch port configuration matches iDRAC network settings
- Test with direct cable connection to eliminate network issues