ASRock D1540D4U-2O8R BMC Solutions

Notice: Page may contain affiliate links for which we may earn a small commission through services like Amazon Affiliates or Skimlinks.

Kev

Active Member
Feb 16, 2015
461
111
43
41
So I bought this board off acmcool and I was having a heck of a time connecting to the BMC even after resetting the board, setting static ip or DHCP on BMC interface. After several days chatting with ASRockRack FAE, he was able to get me an updated BMC firmware 0.13.0 vs the installed 0.11.0 and all is working now. If someone can host this file, I can send it to you and update this post.

The second issue is on a MAC using safari, I was unable to launch the remote viewer (jviewer) java app. Safari would not download the file because the session cookie would expire.

Use Chrome on MAC or use the following script to download the Java launcher:

Code:
#!/bin/bash
if [ $# -ne 3 ]
then
    echo "Usage: $0 <remote host="" ip="">"
    exit 2
fi
HOST=$1
USER=$2
PASS=$3

COOKIE=`curl --data "WEBVAR_USERNAME=$USER&WEBVAR_PASSWORD=$PASS" http://$HOST/rpc/WEBSES/create.asp 2> /dev/null | grep SESSION_COOKIE | cut -d\' -f 4`
curl -v --cookie SessionCookie=$COOKIE "http://$HOST/Java/jviewer.jnlp?EXTRNIP=$HOST&JNLPSTR=JViewer" -o $HOST.jviewer.jnlp
Happy New Years!