PC Review


Reply
Thread Tools Rate Thread

How difficult would this be?

 
 
smerf
Guest
Posts: n/a
 
      28th Aug 2006
I like UltraVNC for helping remote users, and the authors have a server
called Nat2Nat that you can hook up to to get thru firewalls without having
to set up ports and such.

Problem is that thier Nat2Nat is not exactly reliable and they ignore any
questions about its source code.

It looks like they are simply starting a UDP connection from each
client/server VNC combo to the Nat2Nat server and handing off the UDP
connection once established.

That would be fine except some office firewalls do not allow UDP
connections.

I'd like to build a packet relay server that would work over HTTP or SOCKS
proxies. It should accept incoming connections with a GUID and friendly
name from the "servers" and allow a "client" to connect to a server while
relaying the packets between them.

This is relatively easy to do for a normal TCP connection, but what is
involved in getting thru HTTP and SOCKS proxies?

I am using VB.Net 2005 so any code examples in .Net 2005 would also be
helpful.

Any help you could provide would be greatly appreciated. Thanks!


 
Reply With Quote
 
 
 
 
PGC
Guest
Posts: n/a
 
      28th Aug 2006
Hi smerf,

A bit off topic but ....

I find UltraVNC SC (single-click) very useful for the situation described.
The client
makes the connection directly from their desktop to yours via TCP. If they
have
internet access then usually that's enough.
http://sc.uvnc.com/index.php?section=19

Paul

"smerf" <(E-Mail Removed)> wrote in message
news:UirIg.26674$(E-Mail Removed)...
>I like UltraVNC for helping remote users, and the authors have a server
>called Nat2Nat that you can hook up to to get thru firewalls without having
>to set up ports and such.
>
> Problem is that thier Nat2Nat is not exactly reliable and they ignore any
> questions about its source code.
>
> It looks like they are simply starting a UDP connection from each
> client/server VNC combo to the Nat2Nat server and handing off the UDP
> connection once established.
>
> That would be fine except some office firewalls do not allow UDP
> connections.
>
> I'd like to build a packet relay server that would work over HTTP or SOCKS
> proxies. It should accept incoming connections with a GUID and friendly
> name from the "servers" and allow a "client" to connect to a server while
> relaying the packets between them.
>
> This is relatively easy to do for a normal TCP connection, but what is
> involved in getting thru HTTP and SOCKS proxies?
>
> I am using VB.Net 2005 so any code examples in .Net 2005 would also be
> helpful.
>
> Any help you could provide would be greatly appreciated. Thanks!
>



 
Reply With Quote
 
Mike Lowery
Guest
Posts: n/a
 
      28th Aug 2006

"smerf" <(E-Mail Removed)> wrote in message
news:UirIg.26674$(E-Mail Removed)...
>I like UltraVNC for helping remote users, and the authors have a server called
>Nat2Nat that you can hook up to to get thru firewalls without having to set up
>ports and such.
>
> Problem is that thier Nat2Nat is not exactly reliable and they ignore any
> questions about its source code.
>
> It looks like they are simply starting a UDP connection from each
> client/server VNC combo to the Nat2Nat server and handing off the UDP
> connection once established.
>
> That would be fine except some office firewalls do not allow UDP connections.
>
> I'd like to build a packet relay server that would work over HTTP or SOCKS
> proxies. It should accept incoming connections with a GUID and friendly name
> from the "servers" and allow a "client" to connect to a server while relaying
> the packets between them.
>
> This is relatively easy to do for a normal TCP connection, but what is
> involved in getting thru HTTP and SOCKS proxies?
>
> I am using VB.Net 2005 so any code examples in .Net 2005 would also be
> helpful.
>
> Any help you could provide would be greatly appreciated. Thanks!


Many people tunnel VNC connections over SSH since VNC traffic by itself is
unencrypted. I believe you can also specify a proxy server in the SSH client
when you do this.



 
Reply With Quote
 
smerf
Guest
Posts: n/a
 
      30th Aug 2006
I also use uvnc SC. It's great for 1st contact.

But, I also need access after hours - when nobody is in the office. I try
and work when they are not there whenever possible to lessen the impact on
thier work days. I guess I could write an app that queries a web service
and connects to me using SC whenever I needed it to......but.....the project
would be useful for things other than VNC - like a company-specific IM
client or P2P app that keeps files synchronized between PCs.

So, although VNC is a big part of why I need this - it is not the only
reason.

Thanks for your post!

"PGC" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi smerf,
>
> A bit off topic but ....
>
> I find UltraVNC SC (single-click) very useful for the situation described.
> The client
> makes the connection directly from their desktop to yours via TCP. If they
> have
> internet access then usually that's enough.
> http://sc.uvnc.com/index.php?section=19
>
> Paul
>
> "smerf" <(E-Mail Removed)> wrote in message
> news:UirIg.26674$(E-Mail Removed)...
>>I like UltraVNC for helping remote users, and the authors have a server
>>called Nat2Nat that you can hook up to to get thru firewalls without
>>having to set up ports and such.
>>
>> Problem is that thier Nat2Nat is not exactly reliable and they ignore any
>> questions about its source code.
>>
>> It looks like they are simply starting a UDP connection from each
>> client/server VNC combo to the Nat2Nat server and handing off the UDP
>> connection once established.
>>
>> That would be fine except some office firewalls do not allow UDP
>> connections.
>>
>> I'd like to build a packet relay server that would work over HTTP or
>> SOCKS proxies. It should accept incoming connections with a GUID and
>> friendly name from the "servers" and allow a "client" to connect to a
>> server while relaying the packets between them.
>>
>> This is relatively easy to do for a normal TCP connection, but what is
>> involved in getting thru HTTP and SOCKS proxies?
>>
>> I am using VB.Net 2005 so any code examples in .Net 2005 would also be
>> helpful.
>>
>> Any help you could provide would be greatly appreciated. Thanks!
>>

>
>



 
Reply With Quote
 
smerf
Guest
Posts: n/a
 
      30th Aug 2006
Ahhhh! A proxy server! That's another thing I'd like to know how to do in
VB.Net or even in old VB6.

I have a cool idea for a business internet filter that could use a proxy
server - but I am lost when it comes to coding one of those too.

Thx for the post!


"Mike Lowery" <(E-Mail Removed)> wrote in message
news:Ozd4$(E-Mail Removed)...
>
> "smerf" <(E-Mail Removed)> wrote in message
> news:UirIg.26674$(E-Mail Removed)...
>>I like UltraVNC for helping remote users, and the authors have a server
>>called Nat2Nat that you can hook up to to get thru firewalls without
>>having to set up ports and such.
>>
>> Problem is that thier Nat2Nat is not exactly reliable and they ignore any
>> questions about its source code.
>>
>> It looks like they are simply starting a UDP connection from each
>> client/server VNC combo to the Nat2Nat server and handing off the UDP
>> connection once established.
>>
>> That would be fine except some office firewalls do not allow UDP
>> connections.
>>
>> I'd like to build a packet relay server that would work over HTTP or
>> SOCKS proxies. It should accept incoming connections with a GUID and
>> friendly name from the "servers" and allow a "client" to connect to a
>> server while relaying the packets between them.
>>
>> This is relatively easy to do for a normal TCP connection, but what is
>> involved in getting thru HTTP and SOCKS proxies?
>>
>> I am using VB.Net 2005 so any code examples in .Net 2005 would also be
>> helpful.
>>
>> Any help you could provide would be greatly appreciated. Thanks!

>
> Many people tunnel VNC connections over SSH since VNC traffic by itself is
> unencrypted. I believe you can also specify a proxy server in the SSH
> client when you do this.
>
>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
This should not be so difficult right?? Earl.AKA J.Alladien in access forum!! Microsoft Access 2 17th Aug 2009 02:17 PM
Why is this so difficult??? HoosierAdvisor Microsoft Outlook Contacts 4 11th May 2009 04:48 PM
oh difficult... x tomi3440@yahoo.com Microsoft Excel Programming 3 2nd Apr 2008 02:49 PM
I think this is difficult - can it be done? michael.beckinsale Microsoft Excel Programming 3 27th Jul 2007 10:38 AM
Help, I'm new at this, and I'm sure it's not difficult jennifer Microsoft Access Reports 9 13th Jul 2004 08:02 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:11 PM.