Java KVM Console with an SSH Tunnel Through a Jumphost












0














I'm trying to use a KVM Console via an SSH tunnel and I'm getting a Connection Refused Java Error. Here is what I'm doing:



On my Macbook I am establishing an SSH tunnel to my remote server via a jumphost with the following command:



ssh -L 1234:TARGET_SERVER:443 jumphost.foo.com


Next I connect to the remote server's GUI via: https://127.0.0.1:1234



Everything works great. I log into the server, click the Java KVM Console button and my browser downloads the viewer.jnlp applet. Inside the jnlp file all the HTTPS references list https://127.0.0.1:443 and when running this jnlp file Java returns an error saying,




Unable To Launch Application




So I go into the file using VI and I change all the port 443 settings to port 1234. Now everything references https://127.0.0.1:1234. I then run the JNLP file again (using javaws) and I'm getting somewhere. I first get the message about this being an Untrusted connection, should I continue? I select Continue. Next it downloads the KVM application and the next message is: Do you want to run this application? So I select Run.



This is when Java fails and effectively says Connection Refused in the Java Console Logs. What I assume is the problem is likely related to the SSH tunnelling, but I cannot figure out what I need to do in order to correct the problem. I need to run a Java JNLP through a Jumphost using a tunnel and knows what the solution; also access a remote server which is offline and only accessible through the IPMI connection.



Java Console Log:



--Java Web Start 11.191.2.12 x86_64
Using JRE version 1.8.0_191-b12 Java HotSpot(TM) 64-Bit Server VM
User home directory = /my/homedir
----------------------------------------------------
c: clear console window
f: finalize objects on finalization queue
g: garbage collect
h: display this help message
m: print memory usage
o: trigger logging
p: reload proxy configuration
q: hide console
r: reload policy configuration
s: dump system and deployment properties
t: dump thread list
v: dump thread stack
0-5: set trace level to <n>
----------------------------------------------------
Missing Application-Name manifest attribute for: https://127.0.0.1:1234/software/avctNuova.jar.pack.gz
MAC OS X
KVM/VM Client Version: 5.04.02 (Build 192)
replace numpad
replace numpad
** Max Size: W = 1920 H = 976
** Window Pref Size: W = 1024 H = 812
** Max Size: W = 1920 H = 976
** Window Pref Size: W = 1024 H = 812
JNLPClassLoader: Finding library libVMAPI_DLL.dylib
JNLPClassLoader: Finding library libjawt.dylib
JNLPClassLoader: Finding library libavctKVMIO.dylib
Try again with the reduced mode protocol list
Already tried the reduced mode protocol list, quitting
java.net.ConnectException: Connection refused (Connection refused)
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
at java.net.Socket.connect(Socket.java:538)
at java.net.Socket.<init>(Socket.java:434)
at java.net.Socket.<init>(Socket.java:211)
at com.avocent.protocol.apcp.ProtocolAPCP.createBasicSocket(Unknown Source)
at com.avocent.protocol.apcp.ProtocolAPCP.getAvspSocket(Unknown Source)
at com.avocent.protocol.apcp.ProtocolAPCP.getAvspPrimarySocket(Unknown Source)
at com.avocent.protocol.avsp.AvspKvmSession.connectToPort(Unknown Source)
at com.avocent.protocol.avsp.AvspKvmSession.connectToPort(Unknown Source)
at com.avocent.api.viewer.RPAPIClientViewer.sendConnectRequestToServer(Unknown Source)
at com.avocent.api.viewer.RPAPIClientViewer.openViewerClient(Unknown Source)
at com.avocent.app.kvm.DefaultViewerMainController.startSession(Unknown Source)
at com.avocent.app.kvm.DefaultViewerMainController.startApp(Unknown Source)
at com.avocent.nuova.kvm.CiscoViewerMainController.startApp(Unknown Source)
at com.avocent.nuova.kvm.Main.runApp(Unknown Source)
at com.avocent.nuova.kvm.Main.main(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.sun.javaws.Launcher.executeApplication(Unknown Source)
at com.sun.javaws.Launcher.executeMainClass(Unknown Source)
at com.sun.javaws.Launcher.doLaunchApp(Unknown Source)
at com.sun.javaws.Launcher.run(Unknown Source)
at java.lang.Thread.run(Thread.java:748)
CoreSessionListener : connection failed
in CoreSessionListner : fireOnSessionStateChanged
KVM session state SESSION_FAILED









share|improve this question
























  • Hmm... What is the Java KVM Console? You tagged your question with KVM, but that's for the Linux Kernel Virtual Machine, which doesn't have anything to do with Java. Is it this? manualslib.com/manual/13632/Avocent-Ps-2-Kvm.html?page=2#manual
    – Emmanuel Rosa
    21 hours ago












  • Sorry. This is a Cisco UCS KVM Console. The virtual console into a Cisco server and it only runs on Java. Hopefully one day they give you a choice between Java or HTML5. I've gone ahead and removed the KVM tag since it references something different.
    – Alby
    20 hours ago












  • Does this java app support the https.proxy... properties? If so, you could use a dynamic portforward, as described on eg. unix.stackexchange.com/questions/175114/…
    – JigglyNaga
    18 hours ago










  • Mmm I'm not sure about the https.proxy support. If it does, it's hidden from my view.
    – Alby
    10 hours ago
















0














I'm trying to use a KVM Console via an SSH tunnel and I'm getting a Connection Refused Java Error. Here is what I'm doing:



On my Macbook I am establishing an SSH tunnel to my remote server via a jumphost with the following command:



ssh -L 1234:TARGET_SERVER:443 jumphost.foo.com


Next I connect to the remote server's GUI via: https://127.0.0.1:1234



Everything works great. I log into the server, click the Java KVM Console button and my browser downloads the viewer.jnlp applet. Inside the jnlp file all the HTTPS references list https://127.0.0.1:443 and when running this jnlp file Java returns an error saying,




Unable To Launch Application




So I go into the file using VI and I change all the port 443 settings to port 1234. Now everything references https://127.0.0.1:1234. I then run the JNLP file again (using javaws) and I'm getting somewhere. I first get the message about this being an Untrusted connection, should I continue? I select Continue. Next it downloads the KVM application and the next message is: Do you want to run this application? So I select Run.



This is when Java fails and effectively says Connection Refused in the Java Console Logs. What I assume is the problem is likely related to the SSH tunnelling, but I cannot figure out what I need to do in order to correct the problem. I need to run a Java JNLP through a Jumphost using a tunnel and knows what the solution; also access a remote server which is offline and only accessible through the IPMI connection.



Java Console Log:



--Java Web Start 11.191.2.12 x86_64
Using JRE version 1.8.0_191-b12 Java HotSpot(TM) 64-Bit Server VM
User home directory = /my/homedir
----------------------------------------------------
c: clear console window
f: finalize objects on finalization queue
g: garbage collect
h: display this help message
m: print memory usage
o: trigger logging
p: reload proxy configuration
q: hide console
r: reload policy configuration
s: dump system and deployment properties
t: dump thread list
v: dump thread stack
0-5: set trace level to <n>
----------------------------------------------------
Missing Application-Name manifest attribute for: https://127.0.0.1:1234/software/avctNuova.jar.pack.gz
MAC OS X
KVM/VM Client Version: 5.04.02 (Build 192)
replace numpad
replace numpad
** Max Size: W = 1920 H = 976
** Window Pref Size: W = 1024 H = 812
** Max Size: W = 1920 H = 976
** Window Pref Size: W = 1024 H = 812
JNLPClassLoader: Finding library libVMAPI_DLL.dylib
JNLPClassLoader: Finding library libjawt.dylib
JNLPClassLoader: Finding library libavctKVMIO.dylib
Try again with the reduced mode protocol list
Already tried the reduced mode protocol list, quitting
java.net.ConnectException: Connection refused (Connection refused)
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
at java.net.Socket.connect(Socket.java:538)
at java.net.Socket.<init>(Socket.java:434)
at java.net.Socket.<init>(Socket.java:211)
at com.avocent.protocol.apcp.ProtocolAPCP.createBasicSocket(Unknown Source)
at com.avocent.protocol.apcp.ProtocolAPCP.getAvspSocket(Unknown Source)
at com.avocent.protocol.apcp.ProtocolAPCP.getAvspPrimarySocket(Unknown Source)
at com.avocent.protocol.avsp.AvspKvmSession.connectToPort(Unknown Source)
at com.avocent.protocol.avsp.AvspKvmSession.connectToPort(Unknown Source)
at com.avocent.api.viewer.RPAPIClientViewer.sendConnectRequestToServer(Unknown Source)
at com.avocent.api.viewer.RPAPIClientViewer.openViewerClient(Unknown Source)
at com.avocent.app.kvm.DefaultViewerMainController.startSession(Unknown Source)
at com.avocent.app.kvm.DefaultViewerMainController.startApp(Unknown Source)
at com.avocent.nuova.kvm.CiscoViewerMainController.startApp(Unknown Source)
at com.avocent.nuova.kvm.Main.runApp(Unknown Source)
at com.avocent.nuova.kvm.Main.main(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.sun.javaws.Launcher.executeApplication(Unknown Source)
at com.sun.javaws.Launcher.executeMainClass(Unknown Source)
at com.sun.javaws.Launcher.doLaunchApp(Unknown Source)
at com.sun.javaws.Launcher.run(Unknown Source)
at java.lang.Thread.run(Thread.java:748)
CoreSessionListener : connection failed
in CoreSessionListner : fireOnSessionStateChanged
KVM session state SESSION_FAILED









share|improve this question
























  • Hmm... What is the Java KVM Console? You tagged your question with KVM, but that's for the Linux Kernel Virtual Machine, which doesn't have anything to do with Java. Is it this? manualslib.com/manual/13632/Avocent-Ps-2-Kvm.html?page=2#manual
    – Emmanuel Rosa
    21 hours ago












  • Sorry. This is a Cisco UCS KVM Console. The virtual console into a Cisco server and it only runs on Java. Hopefully one day they give you a choice between Java or HTML5. I've gone ahead and removed the KVM tag since it references something different.
    – Alby
    20 hours ago












  • Does this java app support the https.proxy... properties? If so, you could use a dynamic portforward, as described on eg. unix.stackexchange.com/questions/175114/…
    – JigglyNaga
    18 hours ago










  • Mmm I'm not sure about the https.proxy support. If it does, it's hidden from my view.
    – Alby
    10 hours ago














0












0








0







I'm trying to use a KVM Console via an SSH tunnel and I'm getting a Connection Refused Java Error. Here is what I'm doing:



On my Macbook I am establishing an SSH tunnel to my remote server via a jumphost with the following command:



ssh -L 1234:TARGET_SERVER:443 jumphost.foo.com


Next I connect to the remote server's GUI via: https://127.0.0.1:1234



Everything works great. I log into the server, click the Java KVM Console button and my browser downloads the viewer.jnlp applet. Inside the jnlp file all the HTTPS references list https://127.0.0.1:443 and when running this jnlp file Java returns an error saying,




Unable To Launch Application




So I go into the file using VI and I change all the port 443 settings to port 1234. Now everything references https://127.0.0.1:1234. I then run the JNLP file again (using javaws) and I'm getting somewhere. I first get the message about this being an Untrusted connection, should I continue? I select Continue. Next it downloads the KVM application and the next message is: Do you want to run this application? So I select Run.



This is when Java fails and effectively says Connection Refused in the Java Console Logs. What I assume is the problem is likely related to the SSH tunnelling, but I cannot figure out what I need to do in order to correct the problem. I need to run a Java JNLP through a Jumphost using a tunnel and knows what the solution; also access a remote server which is offline and only accessible through the IPMI connection.



Java Console Log:



--Java Web Start 11.191.2.12 x86_64
Using JRE version 1.8.0_191-b12 Java HotSpot(TM) 64-Bit Server VM
User home directory = /my/homedir
----------------------------------------------------
c: clear console window
f: finalize objects on finalization queue
g: garbage collect
h: display this help message
m: print memory usage
o: trigger logging
p: reload proxy configuration
q: hide console
r: reload policy configuration
s: dump system and deployment properties
t: dump thread list
v: dump thread stack
0-5: set trace level to <n>
----------------------------------------------------
Missing Application-Name manifest attribute for: https://127.0.0.1:1234/software/avctNuova.jar.pack.gz
MAC OS X
KVM/VM Client Version: 5.04.02 (Build 192)
replace numpad
replace numpad
** Max Size: W = 1920 H = 976
** Window Pref Size: W = 1024 H = 812
** Max Size: W = 1920 H = 976
** Window Pref Size: W = 1024 H = 812
JNLPClassLoader: Finding library libVMAPI_DLL.dylib
JNLPClassLoader: Finding library libjawt.dylib
JNLPClassLoader: Finding library libavctKVMIO.dylib
Try again with the reduced mode protocol list
Already tried the reduced mode protocol list, quitting
java.net.ConnectException: Connection refused (Connection refused)
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
at java.net.Socket.connect(Socket.java:538)
at java.net.Socket.<init>(Socket.java:434)
at java.net.Socket.<init>(Socket.java:211)
at com.avocent.protocol.apcp.ProtocolAPCP.createBasicSocket(Unknown Source)
at com.avocent.protocol.apcp.ProtocolAPCP.getAvspSocket(Unknown Source)
at com.avocent.protocol.apcp.ProtocolAPCP.getAvspPrimarySocket(Unknown Source)
at com.avocent.protocol.avsp.AvspKvmSession.connectToPort(Unknown Source)
at com.avocent.protocol.avsp.AvspKvmSession.connectToPort(Unknown Source)
at com.avocent.api.viewer.RPAPIClientViewer.sendConnectRequestToServer(Unknown Source)
at com.avocent.api.viewer.RPAPIClientViewer.openViewerClient(Unknown Source)
at com.avocent.app.kvm.DefaultViewerMainController.startSession(Unknown Source)
at com.avocent.app.kvm.DefaultViewerMainController.startApp(Unknown Source)
at com.avocent.nuova.kvm.CiscoViewerMainController.startApp(Unknown Source)
at com.avocent.nuova.kvm.Main.runApp(Unknown Source)
at com.avocent.nuova.kvm.Main.main(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.sun.javaws.Launcher.executeApplication(Unknown Source)
at com.sun.javaws.Launcher.executeMainClass(Unknown Source)
at com.sun.javaws.Launcher.doLaunchApp(Unknown Source)
at com.sun.javaws.Launcher.run(Unknown Source)
at java.lang.Thread.run(Thread.java:748)
CoreSessionListener : connection failed
in CoreSessionListner : fireOnSessionStateChanged
KVM session state SESSION_FAILED









share|improve this question















I'm trying to use a KVM Console via an SSH tunnel and I'm getting a Connection Refused Java Error. Here is what I'm doing:



On my Macbook I am establishing an SSH tunnel to my remote server via a jumphost with the following command:



ssh -L 1234:TARGET_SERVER:443 jumphost.foo.com


Next I connect to the remote server's GUI via: https://127.0.0.1:1234



Everything works great. I log into the server, click the Java KVM Console button and my browser downloads the viewer.jnlp applet. Inside the jnlp file all the HTTPS references list https://127.0.0.1:443 and when running this jnlp file Java returns an error saying,




Unable To Launch Application




So I go into the file using VI and I change all the port 443 settings to port 1234. Now everything references https://127.0.0.1:1234. I then run the JNLP file again (using javaws) and I'm getting somewhere. I first get the message about this being an Untrusted connection, should I continue? I select Continue. Next it downloads the KVM application and the next message is: Do you want to run this application? So I select Run.



This is when Java fails and effectively says Connection Refused in the Java Console Logs. What I assume is the problem is likely related to the SSH tunnelling, but I cannot figure out what I need to do in order to correct the problem. I need to run a Java JNLP through a Jumphost using a tunnel and knows what the solution; also access a remote server which is offline and only accessible through the IPMI connection.



Java Console Log:



--Java Web Start 11.191.2.12 x86_64
Using JRE version 1.8.0_191-b12 Java HotSpot(TM) 64-Bit Server VM
User home directory = /my/homedir
----------------------------------------------------
c: clear console window
f: finalize objects on finalization queue
g: garbage collect
h: display this help message
m: print memory usage
o: trigger logging
p: reload proxy configuration
q: hide console
r: reload policy configuration
s: dump system and deployment properties
t: dump thread list
v: dump thread stack
0-5: set trace level to <n>
----------------------------------------------------
Missing Application-Name manifest attribute for: https://127.0.0.1:1234/software/avctNuova.jar.pack.gz
MAC OS X
KVM/VM Client Version: 5.04.02 (Build 192)
replace numpad
replace numpad
** Max Size: W = 1920 H = 976
** Window Pref Size: W = 1024 H = 812
** Max Size: W = 1920 H = 976
** Window Pref Size: W = 1024 H = 812
JNLPClassLoader: Finding library libVMAPI_DLL.dylib
JNLPClassLoader: Finding library libjawt.dylib
JNLPClassLoader: Finding library libavctKVMIO.dylib
Try again with the reduced mode protocol list
Already tried the reduced mode protocol list, quitting
java.net.ConnectException: Connection refused (Connection refused)
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
at java.net.Socket.connect(Socket.java:538)
at java.net.Socket.<init>(Socket.java:434)
at java.net.Socket.<init>(Socket.java:211)
at com.avocent.protocol.apcp.ProtocolAPCP.createBasicSocket(Unknown Source)
at com.avocent.protocol.apcp.ProtocolAPCP.getAvspSocket(Unknown Source)
at com.avocent.protocol.apcp.ProtocolAPCP.getAvspPrimarySocket(Unknown Source)
at com.avocent.protocol.avsp.AvspKvmSession.connectToPort(Unknown Source)
at com.avocent.protocol.avsp.AvspKvmSession.connectToPort(Unknown Source)
at com.avocent.api.viewer.RPAPIClientViewer.sendConnectRequestToServer(Unknown Source)
at com.avocent.api.viewer.RPAPIClientViewer.openViewerClient(Unknown Source)
at com.avocent.app.kvm.DefaultViewerMainController.startSession(Unknown Source)
at com.avocent.app.kvm.DefaultViewerMainController.startApp(Unknown Source)
at com.avocent.nuova.kvm.CiscoViewerMainController.startApp(Unknown Source)
at com.avocent.nuova.kvm.Main.runApp(Unknown Source)
at com.avocent.nuova.kvm.Main.main(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.sun.javaws.Launcher.executeApplication(Unknown Source)
at com.sun.javaws.Launcher.executeMainClass(Unknown Source)
at com.sun.javaws.Launcher.doLaunchApp(Unknown Source)
at com.sun.javaws.Launcher.run(Unknown Source)
at java.lang.Thread.run(Thread.java:748)
CoreSessionListener : connection failed
in CoreSessionListner : fireOnSessionStateChanged
KVM session state SESSION_FAILED






java ssh-tunneling tunneling






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 18 hours ago









Rui F Ribeiro

38.8k1479128




38.8k1479128










asked yesterday









Alby

81




81












  • Hmm... What is the Java KVM Console? You tagged your question with KVM, but that's for the Linux Kernel Virtual Machine, which doesn't have anything to do with Java. Is it this? manualslib.com/manual/13632/Avocent-Ps-2-Kvm.html?page=2#manual
    – Emmanuel Rosa
    21 hours ago












  • Sorry. This is a Cisco UCS KVM Console. The virtual console into a Cisco server and it only runs on Java. Hopefully one day they give you a choice between Java or HTML5. I've gone ahead and removed the KVM tag since it references something different.
    – Alby
    20 hours ago












  • Does this java app support the https.proxy... properties? If so, you could use a dynamic portforward, as described on eg. unix.stackexchange.com/questions/175114/…
    – JigglyNaga
    18 hours ago










  • Mmm I'm not sure about the https.proxy support. If it does, it's hidden from my view.
    – Alby
    10 hours ago


















  • Hmm... What is the Java KVM Console? You tagged your question with KVM, but that's for the Linux Kernel Virtual Machine, which doesn't have anything to do with Java. Is it this? manualslib.com/manual/13632/Avocent-Ps-2-Kvm.html?page=2#manual
    – Emmanuel Rosa
    21 hours ago












  • Sorry. This is a Cisco UCS KVM Console. The virtual console into a Cisco server and it only runs on Java. Hopefully one day they give you a choice between Java or HTML5. I've gone ahead and removed the KVM tag since it references something different.
    – Alby
    20 hours ago












  • Does this java app support the https.proxy... properties? If so, you could use a dynamic portforward, as described on eg. unix.stackexchange.com/questions/175114/…
    – JigglyNaga
    18 hours ago










  • Mmm I'm not sure about the https.proxy support. If it does, it's hidden from my view.
    – Alby
    10 hours ago
















Hmm... What is the Java KVM Console? You tagged your question with KVM, but that's for the Linux Kernel Virtual Machine, which doesn't have anything to do with Java. Is it this? manualslib.com/manual/13632/Avocent-Ps-2-Kvm.html?page=2#manual
– Emmanuel Rosa
21 hours ago






Hmm... What is the Java KVM Console? You tagged your question with KVM, but that's for the Linux Kernel Virtual Machine, which doesn't have anything to do with Java. Is it this? manualslib.com/manual/13632/Avocent-Ps-2-Kvm.html?page=2#manual
– Emmanuel Rosa
21 hours ago














Sorry. This is a Cisco UCS KVM Console. The virtual console into a Cisco server and it only runs on Java. Hopefully one day they give you a choice between Java or HTML5. I've gone ahead and removed the KVM tag since it references something different.
– Alby
20 hours ago






Sorry. This is a Cisco UCS KVM Console. The virtual console into a Cisco server and it only runs on Java. Hopefully one day they give you a choice between Java or HTML5. I've gone ahead and removed the KVM tag since it references something different.
– Alby
20 hours ago














Does this java app support the https.proxy... properties? If so, you could use a dynamic portforward, as described on eg. unix.stackexchange.com/questions/175114/…
– JigglyNaga
18 hours ago




Does this java app support the https.proxy... properties? If so, you could use a dynamic portforward, as described on eg. unix.stackexchange.com/questions/175114/…
– JigglyNaga
18 hours ago












Mmm I'm not sure about the https.proxy support. If it does, it's hidden from my view.
– Alby
10 hours ago




Mmm I'm not sure about the https.proxy support. If it does, it's hidden from my view.
– Alby
10 hours ago















active

oldest

votes











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f490263%2fjava-kvm-console-with-an-ssh-tunnel-through-a-jumphost%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Unix & Linux Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f490263%2fjava-kvm-console-with-an-ssh-tunnel-through-a-jumphost%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

サソリ

広島県道265号伴広島線

Accessing regular linux commands in Huawei's Dopra Linux