我尝试连接IPMI远程连接(KVM)而不使用webbrowser或IPMIview工具.但到目前为止还没有运气.
我首先想到的是用javaws启动"jviewer.jnlp".如果按"远程连接"按钮,IPMI网站将创建此文件.此解决方案有效,直到Web会话关闭.我尝试用用户名和密码替换加密的参数.但不知何故,嵌入了会话ID.
jviewer.jnpl文件:
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="https://192.168.99.201/Java">
<information>
<title>JViewer</title>
<vendor>American Megatrends, Inc.</vendor>
<description kind="one-line">JViewer Console Redirection Application</description>
<description kind="tooltip">JViewer Console Redirection Application</description>
<description kind="short">
JViewer enables a user to view the video display of managed server via KVM.
It also enables the user to redirect his local keyboard, mouse for managing the server remotely.
</description>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.5+"/>
<jar href="release/JViewer.jar"/>
</resources>
<resources os="Windows" arch="x86">
<j2se version="1.5+"/>
<nativelib href="release/Win32.jar"/>
</resources>
<resources os="Windows" arch="amd64">
<j2se version="1.5+"/> …Run Code Online (Sandbox Code Playgroud)