vote up 2 vote down star

I have a complex .NET Remoting server app that provides a couple of services. Clients can currently use tcp and http channels to connect to the server.

Now I need to implement some new administration services, but I want to restrict their availability to the local machine, i.e. I want to create an administration tool that can use these new services, but I do not want sensitive data to physically leave the server, so I need to restrict running the admin tool on the same server computer.

I thought about adding the new services and also registering the ipc channel with the server for use by the admin tool. Now comes the problem: how can I prevent remote clients connecting to these new admin services using the tcp or http channel? Can I say something like "register service x, implemented by class C in assembly A, usable only via ipc", "register service y, implemented by class D in assembly A, usable via tcp/http" in app.config (or using remoting infrastructure classes)?

It's the "usable only via ipc" part that baffles me. (And no, porting to WCF is not an option right now.)

flag

3 Answers

vote up 3 vote down check

There are no overloads for RegisterWellKnownServiceType that allow you to specify which channel to register on, nor are there any methods on the IPCServerChannel to register a service, so none of that will work.

The best I can think of is writing a ChannelSink that filters your messages or provides security. These can be added to the constructor of your TcpChannel and HttpChannel to filter out admin only calls.

link|flag
Thanks, Rob. Looks like I inadvertently painted myself in a corner with this one. – Alan Oct 24 '08 at 16:23
More like .NET Remoting painted you into a corner ;) When I first read your post, I thought it would be easy until I looked at the code. – Rob Prouse Oct 24 '08 at 18:19
vote up 0 vote down

Get the IPAddress of the service calling it. If it is anything other than 127.0.0.1 reject the call.

link|flag
vote up 0 vote down

thats it! or use aes128 decryption

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.