English 中文(简体)
Socket Proxy Server
原标题:

Suppose Client A connects though TCP/IP Sockets to Server B Is it possible to create a Proxy Like Server thing to do this:

Client A Connects to Proxy X ; And tried to authenticate to the server (sends authentication data) ; Proxy X receives those data and sends them to Server B and gets the response from the Server B and returns the result to client A

Is it possible? If it is any source code available?

最佳回答

Looks like you re describing SOCKS.

Mentalis.org has an implementation of a ProxySocket in C# and also a proxy server.

问题回答

You can do this with a SSH tunnel. There are various third party products that will do this for you. I would recommend against reimplementing it yourself.

If you have control over the proxy, you can just change the authentication module used on proxy to authenticate against server B. You have to take care of some security problems to make sure both X and B are authentic. You can do this with mutual-authenticated SSL or signed messages.

This kind of authentication is used widely by ISPs. The protocol they normal use is RADIUS,

http://en.wikipedia.org/wiki/RADIUS

Most proxy servers have built-in auth modules for RADIUS.

DeleGate, for which the source is available, can set up a "relay" where all data is passed from an arbitrary port on the local machine to some arbitrary host:port. (See the "tcprelay" command in the docs).





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签