cancel
Showing results for 
Search instead for 
Did you mean: 

Add VNC like we can with RDP

cordas_
Occasional Contributor

Add VNC like we can with RDP

Hi all,

Can I add a VNC session same way I do with RDP?

Regards,

Rui Cordeiro

10 REPLIES 10
Mrkool_
Super Contributor

Re: Add VNC like we can with RDP

i don't think so. You will probably have to setup WSAM or JSAM access for vnc to work.
cordas_
Occasional Contributor

Re: Add VNC like we can with RDP

Do you know, and can give me some directions, on how to do that?

Regards

Mrkool_
Super Contributor

Re: Add VNC like we can with RDP

here is some info i found for WSAM and JSAM. VNC uses a user defined port so you will have to define the port below

http://www.juniper.net/techpubs/software/ive/guides/howtos/How_To_JSAM.pdf

Message Edited by Mrkool on 07-21-2009 12:53 PM
wotsit_
Occasional Contributor

Re: Add VNC like we can with RDP

There is no specific way to add a VNC session inline like you can with RDP. You will have to set up a WSAM connection and configure the various VNC servers/hosts as allowed connections on TCP 5900 I believe
mehdi_
Contributor

Re: Add VNC like we can with RDP

hi

are you need to install VNC like RDP java applet ? i think you can do that you can install VNC viewer java applet on SA

regard

Tirzo_
Not applicable

Re: Add VNC like we can with RDP

I got it working. here is what I did.

* Created a new terminal Service profile

- Host: 10.0.0.15

- Port: 5900

- Chk "Create an access control policy...."

- Load the thightvnc java applet

- Download the java applet in tar+gzip format from http://www.tightvnc.com/download.php

- Unpackage and renamed the applet to tightvnc.jar

- Click on "Edit List" next to the "Applet to use" dropdown box

- Click on "New Applet" button

Name: JavaVNC

FileName: Browse to the downloaded file, and check the "Uncompress..." check mark

Click OK

- Select the "Applet to Use: JavaVNC

- Change the HTML code to;

<html>

<head>

<title>JavaVNC Applet</title>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

</head>

<!--

Notes:

1) << CODEBASE >> is a system value that will get replaced at the time the applet is launched. Please do not modify this value.

2) Please modify the remaining values as needed.

3) Please make sure all attribute names/values are enclosed in double quotes.

-->

<body>

<applet code="VncViewer.class"

codebase="<< CODEBASE >>"

archive="classes/VncViewer.jar"

width="800" height="600"

name="JavaVNC" align="top">

<param name="code" value="VncViewer.class">

<param name="codebase" value="<< CODEBASE >>">

<param name="archive" value="classes/VncViewer.jar">

<param name="cabbase" value="">

<param name="name" value="JavaVNC">

<param name="width" value="800">

<param name="height" value="600">

<param name="align" value="top">

<!--

Please specify additional params here after the comment.

<param name="paramname" value="paramvalue">

-->

<param name="PORT" value="5900" />

<param name="HOST" value="10.0.0.15" />

<param name="Open New Window" value="no" />

<param name="Cursor shape updates" value="Disable" />

</applet>

</body>

</html>

That's all. You can probably replace the parameters of the host and port to use the page setting.

Hope this works for you.

I'm running;

SA2500 - 6.5R4 (build 15551)

ThightVNC 1.3.10 Client Java applet

Conecting to ADDER IP KVM CATxIP 1000 (which uses VNC)

Regards,

Tirzo

<html>
<head>
<title>JavaVNC Applet</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<!--
Notes:
1) << CODEBASE >> is a system value that will get replaced at the time the applet is launched. Please do not modify this value.
2) Please modify the remaining values as needed.
3) Please make sure all attribute names/values are enclosed in double quotes.
-->
<body>
<applet code="VncViewer.class"
codebase="<< CODEBASE >>"
archive="classes/VncViewer.jar"
width="800" height="600"
name="JavaVNC" align="top">
<param name="code" value="VncViewer.class">
<param name="codebase" value="<< CODEBASE >>">
<param name="archive" value="classes/VncViewer.jar">
<param name="cabbase" value="">
<param name="name" value="JavaVNC">
<param name="width" value="800">
<param name="height" value="600">
<param name="align" value="top">
<!--
Please specify additional params here after the comment.
<param name="paramname" value="paramvalue">
-->
<param name="PORT" value="5900" />
<param name="HOST" value="10.0.0.15" />
<param name="Open New Window" value="no" />
<param name="Cursor shape updates" value="Disable" />
</applet>
</body>
</html>
v_juniper_
Not applicable

Re: Add VNC like we can with RDP

Has anyone been able to get this to work with v7.0R2? Just did the jump from 6.5R6 and never had a chance to set this up. Trying to add the web app errors out.

zanyterp_
Respected Contributor

Re: Add VNC like we can with RDP

What web app is erroring out? What is the error?

ravinald_
Not applicable

Re: Add VNC like we can with RDP

The following steps were unclear specifically the "Unpackage and renamed" part.

- Load the thightvnc java applet

- Download the java applet in tar+gzip format from http://www.tightvnc.com/download.php

- Unpackage and renamed the applet to tightvnc.jar

I believe the applet is the file tightvnc-1.3.10_javabin.tar.gz from http://www.tightvnc.com/download-old.php

The gunzipped and untared file contains a dir 'classes' with .jar and .class files. I'm unclear which needs to be uploaded and in what method (e.g. tar up the classes dir or just the ocntents or something else).

Any clarification would be greatly appreciated.