Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsWhite Papers
Discussion GroupsFirst AidDatabasesJavaBeansGUIJava 3DVirtual MachineCORBASecurityToolsGeneral
Java DirectoryOpen Source ProjectsSample Book ChaptersUser GroupsWeb Resources
Related Topics
Databases.NETMore Topics ...

Java Forum / General / October 2006

Tip: Looking for answers? Try searching our database.

rmi application thru NAT

Thread view: 
polaris - 29 Oct 2006 21:36 GMT
I have rmi application which is running correctly
inside LAN where im starting the server using lan
address: 10.0.0.2 like the following:

RemoteInterface remoteReference = (RemoteInterface)
UnicastRemoteObject.exportObject(new Server());
System.getProperties().put("java.rmi.server.hostname", "10.0.0.2");
Naming.rebind("//10.0.0.2:"+1099+"/"+RemoteInterface.REGISTRY_NAME,
remoteReference);

with this command: java -Djava.rmi.server.hostname=10.0.0.2 remoteSever

but when it try to rebind using public IP (I get it from some web
sites) instead I get this error:

Exception in thread "main" java.lang.RuntimeException:
java.rmi.ConnectException: Connection refused to host:
***.***.***.***; nested exception is: java.net.ConnectException:
Connection timed out: connect

Is the problem from NAT setting where i need to
redirect the incomming traffic and how can i do that?

also i tried to bind server with 1099 port in the following code:

UnicastRemoteObject.exportObject(new Server(),1099);

but i get "Port already in use: 1099" error where i started
rmiregistry with this port.

i need to know the right way to bind remote server with specific
port (shoudl i use another port for rmiregistry e.g. 1500)
and what port i should use in client lookup: Server bind port or
rmiregistry started port?

Naming.lookup("//10.0.0.2:?/"+RemoteInterface.REGISTRY_NAME);
Tom Forsmo - 31 Oct 2006 01:19 GMT
first off, I don't think you can not bind to an ip+port that is not on
the local machine, at least I think so. Because it would undermine any
local control of the machine/device.

In any case, correct me if I am wrong here, but it seems to me that you
have misunderstood how NAT works. You are trying to bind an rmi server
to the NATed networks public ip address? the problem is that the port is
not open because you have to open it by opening a socket connection to
an external server, only by doing this will the NAT device open an
external port with which the remote server will try to respond through.

So in essence you can not forcibly open an external port on a NAT device
by just binding to it, you have to first open a connection/port from the
client, then you can try to use it. But that leaves you with one
problem, you have to figure out what port the NAT will be using, which
is an algorithmic problem that has not yet been solved.

So your solution is to get a range of static ip addresses to use on the
devices instead of having a NATed network.

tom

> I have rmi application which is running correctly
> inside LAN where im starting the server using lan
[quoted text clipped - 32 lines]
>
> Naming.lookup("//10.0.0.2:?/"+RemoteInterface.REGISTRY_NAME);


Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.