Created
February 6, 2015 20:44
-
-
Save gene1wood/6efbb910c26e4dcf5b11 to your computer and use it in GitHub Desktop.
How to modify the SuperMicro IPMI Remote Console java applet to use a port other than 443
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<jnlp spec="1.0+" codebase="https://localhost:8443/"> | |
<information> | |
<title>ATEN Java iKVM Viewer</title> | |
<vendor>ATEN</vendor> | |
<description>Java Web Start Application</description> | |
</information> | |
<security> | |
<all-permissions/> | |
</security> | |
<resources> | |
<property name="jnlp.packEnabled" value="true"/> | |
<property name="jnlp.versionEnabled" value="true"/> | |
<j2se version="1.6.0+" initial-heap-size="32M" max-heap-size="128M"/> | |
<jar href="iKVM.jar" download="eager" main="true" version="1.69.14.0x0"/> | |
</resources> | |
<resources os="Windows" arch="x86"> | |
<nativelib href="libwin_x86.jar" download="eager" version="1.0.3"/> | |
</resources> | |
<resources os="Windows" arch="x86_64"> | |
<nativelib href="libwin_x86_64.jar" download="eager" version="1.0.3"/> | |
</resources> | |
<resources os="Windows" arch="amd64"> | |
<nativelib href="libwin_x86_64.jar" download="eager" version="1.0.3"/> | |
</resources> | |
<resources os="Linux" arch="i386"> | |
<nativelib href="liblinux_x86.jar" download="eager" version="1.0.3"/> | |
</resources> | |
<resources os="Linux" arch="x86"> | |
<nativelib href="liblinux_x86.jar" download="eager" version="1.0.3"/> | |
</resources> | |
<resources os="Linux" arch="x86_64"> | |
<nativelib href="liblinux_x86_64.jar" download="eager" version="1.0.3"/> | |
</resources> | |
<resources os="Linux" arch="amd64"> | |
<nativelib href="liblinux_x86_64.jar" download="eager" version="1.0.3"/> | |
</resources> | |
<resources os="Mac OS X" arch="x86_64"> | |
<nativelib href="libmac_x86_64.jar" download="eager" version="1.0.3"/> | |
</resources> | |
<application-desc main-class="tw.com.aten.ikvm.KVMMain"> | |
<argument>localhost</argument> | |
<argument>umekujyulllmufuk</argument> | |
<argument>umekujyulllmufuk</argument> | |
<argument>null</argument> | |
<argument>5900</argument> | |
<argument>623</argument> | |
<argument>2</argument> | |
<argument>0</argument> | |
</application-desc> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment