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
- 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

TS SC

Single Click discussions / bugs
Post Reply
Helyr
8
8
Posts: 11
Joined: 2008-04-29 03:31

TS SC

Post by Helyr »

Hey Guys,

I've just gone through the - How do I use SingleClick --> HowTo for first time users - very helpful, have ony question though.

What is the best way to setup SC in TS Environment for multiple techs?
X3
100
100
Posts: 280
Joined: 2007-12-11 08:50
Location: 51.30 N 0.10 W
Contact:

Re: TS SC

Post by X3 »

Im no expert here but each Tech can either have theire own SC set up with theire dyndns or no-ip port combo or you can have a SC with al theire IP's/ports combo.

1)Helpdesk.txt

[HOST]
Tech name 1
-connect tech.dyndns.org:5500 -noregistry

--------------------------------------------------

2)Helpdesk.txt

[HOST]
Tech name 1
-connect tech.dyndns.org:5500 -noregistry

[HOST]
Tech name 2
-connect tech.dyndns.org:5501 -noregistry

[HOST]
Tech name 3
-connect tech.dyndns.org:5502 -noregistry

and of course the ports must be forwarded or rescpective ACL on routers to allow traffic to the right tech.

Also you can use the encrypted connection as well in the same way I preferr that instead of non encrypted.

In the encrypted case you have to have a same rc4.key and same version MSRC4Plugin-122.dsm on both SC/viewer.

In the case of using the current MSRC4Plugin-122.dsm this should be renamed to MSRC4Plugin.dsm on both SC and viewer.
Last edited by X3 on 2008-04-29 07:50, edited 1 time in total.
Regards

Image
Helyr
8
8
Posts: 11
Joined: 2008-04-29 03:31

Re: TS SC

Post by Helyr »

hmm,

What we need is the vnc server to run multiple times on a server.

At the moment we have our techs dial into the server to do all their work, from there they run SupportAnyPC channel and get the client on the other side to connect to the channel they selected ie 5500, 5501 etc. So we would need multiple occurrences of uvnc sc on the server.

How would we best achieve that with uvnc sc?
X3
100
100
Posts: 280
Joined: 2007-12-11 08:50
Location: 51.30 N 0.10 W
Contact:

Re: TS SC

Post by X3 »

besides starting multiple instances of SC the only other option that springs to mind is share server option, but I suppose thats not what u looking for.

I recon this is a question for Redge... or maybe a dev Rudi or Ultrasam.

:(
Regards

Image
Helyr
8
8
Posts: 11
Joined: 2008-04-29 03:31

Re: TS SC

Post by Helyr »

(edit)
Last edited by Helyr on 2008-05-15 00:51, edited 1 time in total.
X3
100
100
Posts: 280
Joined: 2007-12-11 08:50
Location: 51.30 N 0.10 W
Contact:

Re: TS SC

Post by X3 »

you can all ways report post and ask for Redge to reply.

Or PM devs are too busy and I wont recommned it

I recon one of the senior guys like Bevtech know how to if it is possible.

I recon your going about it the wrong way. 1 Server can take multiple connections. but hey...
Regards

Image
Helyr
8
8
Posts: 11
Joined: 2008-04-29 03:31

Re: TS SC

Post by Helyr »

Hopefully one of them will see this.


And I am probably going about it the wrong way, Thus my need to be set on the right track.

Any help would be appreciated.
Last edited by Helyr on 2008-05-02 04:44, edited 1 time in total.
Helyr
8
8
Posts: 11
Joined: 2008-04-29 03:31

Re: TS SC

Post by Helyr »

Haven't heard anything back from the big guys.

Any chance anyone could lend a hand?
Last edited by Helyr on 2008-05-15 00:51, edited 1 time in total.
User avatar
JDaus
Friend of UVNC
Friend of UVNC
Posts: 537
Joined: 2007-03-17 11:00
Location: Sydney, Australia
Contact:

Re: TS SC

Post by JDaus »

you could create a package similar to SC that uses the UVNC 1.04 exe, but this would involve some knowledge of:
  • batch scripting (or autoit) as a bare minimum
    7zip self extracting, self executing archives (or iexpress)
the above shouldn't be too difficult for most, but if you run into trouble, you could always pay me the $150 per seat you pay for supportanypc :D :D :D
and i will gladly help you out.

SC does not support multiple instances of the APP ... so without major code changes, the only suggestion i have is outlined above ... hope this helps
ask a silly question and remain a fool for 5 minutes...
don't ask, and remain a fool for life - JDaus 2003

without imperfections, neither you nor i would exist - Steven Hawkins
__
JD
SCPrompt - OpenSource Free Remote Screen\Desktop Sharing Solution
SecureTech.com.au
X3
100
100
Posts: 280
Joined: 2007-12-11 08:50
Location: 51.30 N 0.10 W
Contact:

Re: TS SC

Post by X3 »

$150 lol, funny guy.
Regards

Image
FrankOVD
Posts: 2
Joined: 2008-05-15 15:55
Location: Québec, Canada
Contact:

Re: TS SC

Post by FrankOVD »

Dont know if it has already been said that way but I'll tell you how it works for me.

Every Tech has a SC listening on a different port (5500, 5501, etc...) and when someone calls one tech or another, the redirection is made on out fireWall who manages prerouting and sends it to the right place

Example with iptables

Code: Select all

-A PREROUTING -m tcp -p tcp -d 123.123.123.123--dport 5500 [...] -J DNAT --to-destination 10.0.0.101:5500
-A PREROUTING -m tcp -p tcp -d 123.123.123.123--dport 5501 [...] -J DNAT --to-destination 10.0.0.102:5500
-A PREROUTING -m tcp -p tcp -d 123.123.123.123--dport 5502 [...] -J DNAT --to-destination 10.0.0.103:5500
...
Frank Malenfant
redge
1000
1000
Posts: 6797
Joined: 2004-07-03 17:05
Location: Switzerland - Geneva

Re: TS SC

Post by redge »

I can't answer about Terminal Server (TS), won't have any knowledge.
UltraVNC 1.0.9.6.1 (built 20110518)
OS Win: xp home + vista business + 7 home
only experienced user, not developer
Post Reply