Last active 1737595921

albert's Avatar albert revised this gist 1737595921. Go to revision

1 file changed, 47 insertions

fix.md(file created)

@@ -0,0 +1,47 @@
1 + # Resolving iDRAC8 Access Error 400 — Bad Request
2 +
3 + ## Issue
4 + After installing a new Dell server with iDRAC8 and assigning an IP address using the BIOS/Console interface, attempting to connect to iDRAC via `https://idrac.mydomain.com` results in the following error:
5 +
6 + ```
7 + Access Error: 400 — Bad Request
8 + ```
9 +
10 + However, accessing iDRAC via `https://<iDRAC_IP>` works correctly.
11 +
12 + ## Solution
13 + ### Step 1: Update DNS Settings
14 + 1. Connect to the iDRAC using its IP address.
15 + 2. Navigate to the **iDRAC Settings**:
16 + - On the left side, select **Network** under iDRAC settings.
17 + 3. Update the DNS settings:
18 + - In the **Common Settings** section (on the right side):
19 + - Set the **DNS iDRAC Name** to the desired hostname for the iDRAC. (idrac)
20 + - Set the **Static DNS Domain Name** to the domain name of your network. (mydomain.com)
21 + 4. **Important**: Scroll down and click the **Apply** button to save changes.
22 +
23 + ### Step 2: Install iDRAC Tools or OMSA
24 + The next steps require the Dell iDRAC Tools or OMSA (OpenManage Server Administrator) to be installed. If the operating system is not yet installed on the server, install these tools on another Dell server within the same network.
25 +
26 + #### Option A: iDRAC Tools Installed on the Current Server
27 + Run the following commands:
28 + ```bash
29 + racadm sslresetcfg
30 + racadm sslcertview -t 1 # Verify the FQDN is now in the certificate
31 + racadm racreset # Reboot the iDRAC for the changes to take effect
32 + ```
33 +
34 + #### Option B: iDRAC Tools Installed on Another Server
35 + Run the following commands from the other server:
36 + ```bash
37 + racadm -r <iDRAC_IP> -u root -p <RootPassword> sslresetcfg
38 + racadm -r <iDRAC_IP> -u root -p <RootPassword> sslcertview -t 1 # Verify the FQDN is now in the certificate
39 + racadm -r <iDRAC_IP> -u root -p <RootPassword> racreset # Reboot the iDRAC for the changes to take effect
40 + ```
41 +
42 + ### Notes
43 + - Ensure the iDRAC DNS settings are correctly configured to match your network environment.
44 + - Use a secure password for the `root` user when executing commands.
45 +
46 + By following these steps, the iDRAC web interface should now be accessible using the fully qualified domain name (FQDN), resolving the "Access Error: 400 — Bad Request" issue.
47 +
Newer Older