@tj @DianeBruce @tykling We need someone to #Depenguinate #ONIE switches, or at least get #FreeBSD installing on them. Achieving #Broadcom #OpenBCM support is another task. x86 would be easier. I have two #x86 ONIE switches in .UK bootmarked but the #HPE #Alto product line and #Supermicro #whitebox switches are where to look.

It is really petty and ridiculous that on H12 platforms #SuperMicro no longer allows virtual media from the console.

To install a system you need a license¹ unless you go and stick a USB stick in it.

I find it ridiculous that you pay for a stupid PC *server*² and then need to stick a USB in it to be able to install… where do they think you install servers? They know full well that you will need to get either remote hands or pay for a license. What else could you possibly want IPMI for?

__
¹ on H12 you cannot use the various tools to generate a license as the license file JSON is now digitally signed by SuperMicro…
² stupid because PC servers are not really servers, just headless PCs with all that goes with it. I hate PC design, crap from a IBM cheap thing still with us.

> BIOS can't pass the secure validation.

#SuperMicro great, they of course had to implement a bios validation to prevent me from just patching in the ReBAR support...

So where is my in-circuit flasher? And where is the bios chip on the H11DSi?

#BIOS #UEFI

#Homelab update. #StarTech 25U rack, from the top:
- #MikroTik RB5009UPr+S+IN
- CAT7 patch panel
- MikroTik CRS310-8G 2S IN
- stuff (external backup, AP, hue hub, RPI for UPS management)
- #Supermicro X11DPL-i, 2 x Xeon Gold 6230, 256GB DDR4 ECC, 4U case, Proxmox (for services, labs, etc)
- #Lenovo P520, Xeon W-2135, 128GB DDDR4 ECC, RTX 4000 ADA, Proxmox (for LLMs)
- #ASUS PRIME H310M-A R2.0, i7 8700k, 32GB DDR4, #SilverStone RM21-308 Case (storage)
- ISP router and UPS
In our Supermicro SYS-112D-40C-FN8P review, we see how this system leverages the Intel Xeon 6 SoC (Granite Rapids-D) to provide 8x 25GbE#25GbE #Intel #Supermicro #Xeon6 #Xeon6SoC
Supermicro SYS-112D-40C-FN8P Review A 40 Core Intel Xeon 6 SoC Server with 8x 25GbE
Supermicro SYS-112D-40C-FN8P Review A 40 Core Intel Xeon 6 SoC Server with 8x 25GbE

In our Supermicro SYS-112D-40C-FN8P review, we see how this system leverages the Intel Xeon 6 SoC (Granite Rapids-D) to provide 8x 25GbE

ServeTheHome

Another rumor from #CharlieDemerjian.

https://www.semiaccurate.com/2026/04/13/nvidia-is-negotiating-to-buy-a-large-pc-oriented-company/

I don't believe they will, but they could if they want to enter the laptop scene, because on servers they're thriving. In that case, we're talking about #Dell, #Framework, #HP, #SuperMicro, #Intel?

#Technology #Futurism #NVIDIA #Computer #Computers #Laptop #Laptops

Nvidia Is Negotiating To Buy A Large PC Oriented Company

Nvidia has been in negotiations for over a year to buy a large company and it will reshape the PC landscape.

Semiaccurate

I wanted to add a button to Home Assistant that would turn on my remote server via IPMI. I also did not want to add the ipmitool dependencies to my #HASS container. Since IPMI supports redfish, a simple rest command in home assistant is enough. Add this to your `configuration.yaml`:

```yaml
rest_command:
# Command to turn the server ON
server_power_on:
url: "https://192.168.100.111/redfish/v1/Systems/1/Actions/ComputerSystem.Reset"
method: post
username: "hass"
password: "eX4mP13p455w0Rd"
verify_ssl: false
headers:
Content-Type: "application/json"
payload: '{"ResetType": "On"}'

# Command to gracefully shut down the OS via IPMI (ACPI signal)
server_power_off:
url: "https://192.168.100.111/redfish/v1/Systems/1/Actions/ComputerSystem.Reset"
method: post
username: "hass"
password: "eX4mP13p455w0Rd"
verify_ssl: false
headers:
Content-Type: "application/json"
payload: '{"ResetType": "GracefulShutdown"}'

sensor:
- platform: rest
name: "Server Power State"
resource: "https://192.168.100.111/redfish/v1/Systems/1"
method: GET
username: "hass"
password: "eX4mP13p455w0Rd"
verify_ssl: false
scan_interval: 10 # Checks every 10 seconds
value_template: "{{ value_json.PowerState }}"

template:
- switch:
- name: "Server"
state: "{{ is_state('sensor.server_power_state', 'On') }}"
icon: >-
{% if is_state('sensor.server_power_state', 'On') %}
mdi:server-network
{% else %}
mdi:server-network-off
{% endif %}
turn_on:
action: rest_command.server_power_on
turn_off:
action: rest_command.server_power_off

```

Make sure to create a separate IPMI user with "Operator" privileges (allowed to start/shutdown, but not to modify settings). If you have e.g. #Proxmox on the server, it will receive the IPMI Graceful Shutdown command and cleanly stop all VMs before exiting.

Works great!

#hass #homeassistant #redfish #api #ipmi #supermicro #homelab

My main homelab workhorse is finally ready:
Supermicro X11DPL-i
2 × Xeon Gold 6230
256 GB DDR4
Cooled quietly by Noctua

#homelab #selfhosted #noctua #intel #supermicro

Oh great, I cannot execute their "saa" support tool because of #NixOS "things"...

Could not start dynamically linked executable: ./saa
NixOS cannot run dynamically linked executables intended for generic
linux environments out of the box. For more information, see:
https://nix.dev/permalink/stub-ld

#Linux #SuperMicro

Frequently Asked Questions — nix.dev documentation