On a Cisco ASA, in the "Clientless SSL VPN" or "WebVPN", a TightVNC plug-in can be used.
http://www.cisco.com/en/US/docs/securit ... #wp1292902
This TightVNC Java plug-in does not support the UltraVNC "MS-Logon II" or the "New MS-Logon".
I installed UltraVNC 1.0.9.6.1 on a pc "MyVNCServer" and I downloaded the Java VncViewer via http://MyVNCServer:5800/VncViewer.jar/.
Can VncViewer.jar be used on a Cisco ASA as replacement fot the TightVNC java plug-in on a Cisco ASA?
Celebrating the 22th anniversary of the UltraVNC: https://forum.uvnc.com/viewtopic.php?t=38031
Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: https://forum.uvnc.com/viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864
Join us on social networks and share our announcements:
- Website: https://uvnc.com/
- GitHub: https://github.com/ultravnc
- Mastodon: https://mastodon.social/@ultravnc
- Bluesky/AT Protocol: https://bsky.app/profile/ultravnc.bsky.social
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://x.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc
Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: https://forum.uvnc.com/viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864
Join us on social networks and share our announcements:
- Website: https://uvnc.com/
- GitHub: https://github.com/ultravnc
- Mastodon: https://mastodon.social/@ultravnc
- Bluesky/AT Protocol: https://bsky.app/profile/ultravnc.bsky.social
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://x.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc
Can VncViewer.jar be used on Cisco ASA
Re: Can VncViewer.jar be used on Cisco ASA
What a great question -- I didn't even know the ASA's "SSL VPN" support included 3rd party stuff.
However, as I said in your other thread,
https://forum.ultravnc.net/viewtopic.php?f=34&t=29064
as far as I know the Java viewer doesn't (yet) support MSLogon or DSM plugins. I hope I'm wrong.
However, as I said in your other thread,
https://forum.ultravnc.net/viewtopic.php?f=34&t=29064
as far as I know the Java viewer doesn't (yet) support MSLogon or DSM plugins. I hope I'm wrong.
Re: Can VncViewer.jar be used on Cisco ASA
Dear B,
If Ibrowse to http://MyVNCServer:5800/, I do get a VNC Authentication Window asking for both Username and Password.
I think you're wrong. Like I said, I configured "MS-Logon II" or "New MS-Logon" on my server.B wrote:the Java viewer doesn't (yet) support MSLogon... I hope I'm wrong.
If Ibrowse to http://MyVNCServer:5800/, I do get a VNC Authentication Window asking for both Username and Password.
Re: Can VncViewer.jar be used on Cisco ASA
And it works, you authenticate, and get remote control? That's great. The last I remembered the javaviewer development was a bit stalled.
http://forum.ultravnc.info/viewtopic.php?t=27736
Ah, here we go, from a changelog for 1.0.9.6.1 at FileHippo:
It certainly appears that the javaviewer in your command line test is simply defaulting to standard userid-less VNC behavior. You might want to PM Rudi to ask. Maybe there are some command line arguments for the javaviewer... have you checked the code?
http://forum.ultravnc.info/viewtopic.php?t=27736
Ah, here we go, from a changelog for 1.0.9.6.1 at FileHippo:
So yup, I was wrong, thank you. Of course this doesn't help answer your question at all.# javaviewer
* mslogon fixed
It certainly appears that the javaviewer in your command line test is simply defaulting to standard userid-less VNC behavior. You might want to PM Rudi to ask. Maybe there are some command line arguments for the javaviewer... have you checked the code?
Re: Can VncViewer.jar be used on Cisco ASA
From this code snippet, it seems it detects by itself based on the authentication protocol returned by the server...
Code: Select all
// mslogon support
//
// Detect Auth Protocol (Ultr@VNC or the standard One)
// To know if we must show the username box
//
......
// mslogon support
//
// Detect Server rfb Protocol to know the auth Method
// Perform a connexion to detect the Serverminor
//
void prologueDetectAuthProtocol() throws Exception {
rfb = new RfbProto(host, port, this, null, 0); // Modif: troessner - sf@2007: not yet used
rfb.readVersionMsg();
System.out.println("RFB server supports protocol version " +
rfb.serverMajor + "." + rfb.serverMinor);
// Mslogon support
if (rfb.serverMinor == 4) {
mslogon = true;
System.out.println("Ultr@VNC mslogon detected");
}
rfb.writeVersionMsg();
}
// mslogon support end