RMI, NAT firewall, and callbacks

Hi,
My problem is similar to many other problems that have been posted over the span of nearly a decade on this forum. However, I'm starting this thread because my search through the forum didn't make me happy, and because I hope that with new versions of Java new things might be possible.
My setting: the server has a public IP, a client is behind a NAT firewall. The client passes a Remote object to the server so that the server can call back the client some time later. This setting is nowadays very common in Internet: clients are run on ubiquitous home routers with NAT, and servers are available on public IP addresses.
One way to solve this problem is to instruct the server to use the TCP connection already established by the client when the server wants to call back the client. This way the NAT firewall will not block the server communication, because it will be part of the connection initiated by the client. So it looks like using a socket factory might be a solution.
Is the solution with socket factories possible?
Thanks,
Irek
Edited by: 893951 on 2011-10-31 04:44
Edited by: 893951 on 2011-10-31 04:52

EJP wrote:
the seconds one fails.Fails how?Well, the server can´t connect to client. That is, i have a server in 193.136.205.20 a a client in 193.136.205.20 (same host). The client connects to server and the server callback the client. I have another client in 193.136.205.128 and it connects do server too, but when the server callback this client, i have the exception "No connection to route host".
Is it because of firewall?Impossible to say until you tell us how it fails.
If i kill the firewall in both server and clients, does it work?I don't know, it's your firewall. Does it?
Or is there any solution, making the client as a server?A callback is a server.Yes, i understood that. I have expressed myself in a bad way. A callback is a server indeed. When i create the client callback object, i export it, creating the object and in the login method (existent in server) i send this object so the server adds it to a hashtable to callback later.
>
It sounds like a strange design. How come the client has the datase?, not the server? and why can't the client just push the database updates to the server? How can the server know when to callback the client to get more updates?Well, i have a local database for each client and a large database in server. I said the clients fetch database just as a example. The real deal is that a client fetches values from devices that measure energy values (electricity, gas, water, temperature, etc...). It fetches all connected devices in 5 minutes interval and saves values in the local database. 3 minutes after that synchronize, the server fetches all connected clients for all values from all proxys (clients). This is done using callback. It´s why i have this design. I thought on pushing values to the server. And it´s an idea that could be implemented. But this is how my company wants this testing project implemented...
However i have managed to correct this error. I have tried with another host 193.136.205.106 and it connected to server and the server could callback it. I then assumed that the host 193.136.205.128 had firewall permission problems. I solved this, creating the server registry in port 1099 and fixed the object port to 2000. Then, everytime i create a client, i fixed the export callback object in port 2004. I have set the permissions in both firewalls (server and clients) to accept connections in por 1099, 2000 and 2004 and it functions all correctly!! =)
Thanks for the help.

Similar Messages

  • Airport Extreme-NAT-Firewall-TCP-IP-Ports and what not... I BEG FOR HELP!

    Problem: I can't use ISPQ (videochat) with my ibookG4 or MacBookPro.
    Details: iBookG4 [10.3.9] is the main one, MacBookPro [10.4.7] is the secondary one. I have a DSL modem attached to an Airport Extreme base.
    ===
    I have run a diagnostic test on IsPq and this is the result:
    Contacting server with HTTP protocol... success.
    Connecting to diagnostic server... success.
    Logging into diagnostic server... success.
    Testing TCP port 2000 (VideoChat control)... failed.
    Testing TCP port 2001 (VideoChat data)... failed.
    Testing TCP port 2002 (Quick Message)... failed.
    Results:
    Your local address is 10.0.1.3, your address as seen by the rest of the world is 151.51.233.232, and your address as seen by our HTTP servers is 151.51.233.232. Your computer is configured to use the following DNS servers: 193.70.192.25, 193.70.152.25, 10.0.1.1.
    This computer appears to be behind a NAT firewall, it cannot receive incoming connections. It can still use iSpQ VideoChat, but it will not be able to initiate VideoChat connections and quick messages will be delivered through the server.
    If you are using the MacOS X firewall, add an entry for iSpQ VideoChat to allow connections on ports 2000-2002. If you have a router on your network, make sure it is configured to properly route TCP ports 2000-2002 to your computer at 10.0.1.3. Otherwise, contact your network administrator for assistance.
    ===
    Please help me or I will start crying. I'm close to utter desperation.
    Thanks,
    Emmanuel

    Thanks Rick, I was afraind nobody was going to reply.
    Let me get this right. In my sharing options I have disabled firewall. So that bit is done. The next bit is about configuring my router, that is my dsl router (Castlenet AR250, I think).
    My airport base has nothing to do with it, correct?
    Thanks again...

  • Replacing BM on NW with the ISP firewall and NAT

    Replacing BM on NW with the ISP firewall and NAT
    Hi!
    LAN is a tree with 3 servers:
    1. NW 6.5 sp8 + BorderManager 3.9 sp 2
    2. NOWS SBE 2.5 (Suse) - DNS\DHCP
    3. NOWS SBE 2.0 (Suse)
    Since I'm connected to the internet through my ISP router (XBOX- Checkpoint), I am considering to remove the first server (firewall) and ask my ISP ro configure the router as a firewall and NAT too.
    What are the steps needed to do it without any demages?
    TIA
    Nanu

    nanu,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • RMI-NAT Problem with random ports

    Hi,
    I had a RMI server in a machine with the private IP 10.XX.XX.XX and a firewall with the public IP 196.XX.XX.XX
    I am using the property: java.rmi.server.hostname to 196.XX.XX.XX and a small test application. The server is behind the firewall/NAT machine with a limited set of open ports (including the non standard 8001 port that I am using instead 1099)
    1. The server start perfectly
    2. The client can connect to the server and execute the method Naming.list() successfully
    3. At the moment that the client attempt to perform the bind, the client hang up for almost 7 minutes and finally throws and exception due time-outs.
    According a "strace" and "netstat" commands under Linux and also the flag: java.rmi.server.logCalls we obtain the next data:
    1. The server open the port 8001 (PERFECT)
    2. But also open a random port and the client -at the bind moment- use that port (in the range 34000-35000). And of course our firewall block all the ports except 8001.
    So, is that the expect behaviour? If that is true then RMI is not functional under NAT/Firewall.
    Am I missing something?
    Thanks!!
    Gerardo

    Hello,
    Let me see if I got it right:
    1. You're starting the registry (programatically) in port 8001.
    2. You're creating a server implementation object.
    3. Next you bind/rebind your server to this registry.
    4. Your client hangs at Naming.lookup().
    If this is the problem then that random port you mentioned is the server's attributed port (a ServerSocket that is hanging on accept) at the time of creation. You can avoid this by instead of using the super() call in you serverimpl constructor using the UnicastRemoteObject constructor that specifies a port (check the interface). That way you can configure your firewall to allow traffic through that port too.
    However, what puzzles me is the fact that it hangs on step 4 instead of in a subsequent remote call. step 4 should be using port 8001. Can you confirm that it's hanging in Naming.lookup ?
    (two other sources of data you may find usefull are the Firewall logs and a tcpdump analisys of the traffic between the firewall and the server machine)
    Nuno

  • Unable to configure Outlook with ASA firewall and IWSVA

    Dear Sir,
    We are unable to configure MS outlook in our network  which is having IWSVA proxy and cisco ASA 5510 firewall.
    snapshot of outlook error details are attached for your reference.
    In our network L3 is behind IWSVA which is behind cisco ASA 5510.
    when we change following NAt rule and ACL incoming rule it works fine
    nat (inside,outside) source static any interface unidirectional
    nat (inside,outside) source static obj_Proxy interface unidirectional
    access-list 100 extended permit ip any any
    access-list inside_access_in extended permit ip object-group Proxy_Server any
    all required ports are allowed in IWSVA also please tell me if we have to make any changes in IWSVA like mapping ports etc.
    Thanks in advance
    Regards:
    Anand Singh Dhouni

    Hello Anand,
    I already replied to you on the other post, Please mark this as answered so we can focus on one ticket and avoid duplicates.
    For more information about Core and Security Networking follow my website at http://laguiadelnetworking.com
    Any question contact me at [email protected]
    Cheers,
    Julio Carvajal Segura

  • Static NAT refresh and best practice with inside and DMZ

    I've been out of the firewall game for a while and now have been re-tasked with some configuration, both updating ASA's to 8.4 and making some new services avaiable. So I've dug into refreshing my knowledge of NAT operation and have a question based on best practice and would like a sanity check.
    This is a very basic, I apologize in advance. I just need the cobwebs dusted off.
    The scenario is this: If I have an SQL server on an inside network that a DMZ host needs access to, is it best to present the inside (SQL server in this example) IP via static to the DMZ or the DMZ (SQL client in this example) with static to the inside?
    I think its to present the higher security resource into the lower security network. For example, when a service from the DMZ is made available to the outside/public, the real IP from the higher security interface is mapped to the lower.
    So I would think the same would apply to the inside/DMZ, making 'static (inside,dmz)' the 'proper' method for the pre 8.3 and this for 8.3 and up:
    object network insideSQLIP
    host xx.xx.xx.xx
    nat (inside,dmz) static yy.yy.yy.yy
    Am I on the right track?

    Hello Rgnelson,
    It is not related to the security level of the zone, instead, it is how should the behavior be, what I mean is, for
    nat (inside,dmz) static yy.yy.yy.yy
    - Any traffic hitting translated address yy.yy.yy.yy on the dmz zone should be re-directed to the host xx.xx.xx.xx on the inside interface.
    - Traffic initiated from the real host xx.xx.xx.xx should be translated to yy.yy.yy.yy if the hosts accesses any resources on the DMZ Interface.
    If you reverse it to (dmz,inside) the behavior will be reversed as well, so If you need to translate the address from the DMZ interface going to the inside interface you should use the (dmz,inside).
    For your case I would say what is common, since the server is in the INSIDE zone, you should configure
    object network insideSQLIP
    host xx.xx.xx.xx
    nat (inside,dmz) static yy.yy.yy.yy
    At this time, users from the DMZ zone will be able to access the server using the yy.yy.yy.yy IP Address.
    HTH
    AMatahen

  • NAT configuration and Port Mapping for xBox

    I'm looking for help with port mapping to open up the NAT for an xBox One. I'm working with the following network devices:
    xBox One
    DSL Modem: Embarq (ZyXEL) 660R series
    Airport Extreme version 7.7.3
    I understand the following from researching the issue:
    The default settings for both devices block the ports needed for xBox Live.
    Airport Extremes are not on the compatible list for xBox.
    Port Mapping is better then creating a DMZ for the xBox.
    The xBox needs its own manually set IP address.
    I switched my Network>Router Mode from Off (Bridge Mode) to DHCP and NAT. I then created a DHCP Reservation and the Port Settings for that IP.
    After doing this, the Airport would restart and display a warning - Double NAT. I figured this was because the 660 settings showed the NAT Mode to be SUA Only. The Edit Details link displayed an empty table where you edited the SUA/NAT Server Set. I switched from NAT Mode>SUA Only to None. So there was my Double NAT and I would have thought that would have removed one.
    I also disabled the Firewall and Enabled the UPnP.
    After restarts the Airport continued to display the Double NAT error. However, with the 660's NAT Mode set to None, the Internet was not there. Web browsers and email accounts replied with server not found.
    Only with the 660 set to SUA Only and the Airport in Bridge Mode is the Internet accessible. I now have the details for the SUA filled out for the xBox's IP address and ports.
    Hypothesis
    Since both devices are acting as DHCP servers the port mapping is not working. Rather then have the 660 distribute IP addresses and then having the Airport distribute another range of numbers, I need to have both devices bridge and distribute one range of numbers. Currently the 660 is using the 192.168 range and the Airport is using the 10.0 range.
    Am I correct? Any thoughts and suggestions are welcome.

    Port forwarding through a double NAT.. is near impossible.. !!
    And the xbox is so attuned to using UPNP it is very hard not to.. even port mapping is not a great fix. Since apple decided gamers did not count as users for Airports.. I think honestly it is best to bypass the airport and stick to upnp from the modem router.
    What method of authentication does your ISP use? Because it is really better to use one router.
    And in fact the router should be the Zyxel. If you plug the Xbox to the Zyxel running in full router mode, with the airport removed from the network does it work and open NAT??
    If not replace the Zyxel with a modern listed router that is xbox compatible and bridge the airport to it.

  • Firewall and OS X Firewall

    Hi,
    I try to improve my networking science knowledge. today's topic = firewall
    I use only Tiger Built-in Firewall, which i think perfectly makes his job, but I also have the Intego netbarrier software which I did not install.
    I am not totally sure what would be the added value of a fancy FW like Intego. Do anyone has an idea of what such product brings more than built-in and which one is the most secure?

    A third-party firewall such as Intego's would offer additional reporting and other features, while the underlying protection is pretty much the same as OS X's built-in firewall. Personally, I'd trust the OS X built-in firewall more as being more likely to be fully integrated with the OS and aware of any OS X updates. In an analogy with Windows, the one thing you should avoid is having multiple software firewalls active at the same time --- too much potential for one program deciding the other is evil and trampling things trying to 'fix' the other.
    You can, through, combine a software firewall with a hardware one. All routers currently n the market should have at least a NAT firewall. Even if you only have one computer, putting a US$30 router between a cable or DSL modem and the computer gives you additional protection. And unlike e.g. a Windows third-party software firewall, the hardware firewall can't be tricked into turning off.

  • E4200 v1 - NAT issue - and more....

    Please bear with me, I try to make things work - but my skills are not enough for this... Please help anyone..
    2 things:
    #1)
    I want to Disable NAT on my E4200 v1 with latest FW, since already my ADSL modem does this,... or the other way around - but it does not make much sense they both do it...
    My problem is how to set up the static route..
    ADSL modem
    IP:192.168.01  (GT784WN)  with NAT enabled, and all other filters disabled.
    E4200
    Internet IP: 192.168.0.2
    GW: 192.168.0.1
    LAN IP: 192.168.1.1
    How should I set up the static route on E4200 for things to work with NAT disabled?
    Would it make sense to disable NAT on the cable modem instead - and let E4200 handle that?
    If so - how would the routing have to be configured?
    #2)
    All my computers are connected to E4200, some with wire and some wireless....
    In Windows, Explorer, Network - On top there is supposed to be a list with recognized "Computers",
    What I see, varies A LOT....
    I always see the computer itself: MYFS01,
    and I always see the E4200 (MyHUB) (why this is here I don't understand either - I have Media services disabled in E4200)
    If I unplugg the E4200 from power... and plug back in again,.. I get ALL Computers listed... Backup device connected via LAN, some WiFi connected devices including my PlayBook,... - but after some time, anything from a few minutes to an hour - most "computers" dissapear from the list - and won't get back until I unplug the E4200.. A reboot of any of the computers does not work either...
    I have noticed - that When the list of "computers" in Windows are reduced, I am unable to do a "net view" from my main computer (MYFS01), but after I reboot the E4200, and devices pops up again,... doing a "net view" show all the computers...
    Also - While they do not show up in Windows Explorer, I can still access ALL computers and devices - with both \\IP access or \\computername ... 
    To test, I then took away the E4200 and used ONLY the ADSLmodem (GT784WN) - and I see all Computers always...
    Now I don't understand anything - I first thought this was a Windows 7 issue, but - since it seems to be working with another Switch/router - I suspect the E4200 to be the bad one... but - I could of course be wrong,,,,
    ANY assistance would be appreciated...
    thanx

    You are correct.  You do NOT want double NAT'ing going on.
    You need to put your GT784WN into bridge mode.
    Perform a Google search on "GT784WN bridge mode".  I found some good links that looked like they would help you do this.
    Putting your GT784WN into bridge mode will turn it into modem only.  You should also turn off all firewall, security, uPnP, wireless, etc settings on the GT784WN.  You need to dumb it down as much as possible.  The E4200 v1 needs to do all the work.
    This is exactly what I did with my Arris cable DOCSIS 3.0 router.

  • Firewalling and NTP (Time) troubleshooting

    Hi all.  Recently after switching to using a Cisco router (891W, IOS 15.2) instead of a different vendor's router at our site, I began to notice that the time sync on the Windows domain is off.  This is causing major domain functionality problems.  This is a small business so there is a single domain controller, and it is configured to get time from a source on the Internet. 
    It's been a while since I set this up on the server so I forget offhand the Internet time server, but the current firewall config for the router matches what I had on the previous non-Cisco router.  I'll check into if the Internet time server is th eproblem but those don't tend to go down a lot to my knowledge.  The only thing that changed was this router and immediately after is when the problems began. 
    However in retrospect I wonder if the firewall is even correctly set up.  Currently I have udp port 123 open from the outside going to the inside IP of the domain controller on the LAN (using static NAT).  But as I think about this, I'm sure that time update traffic is not initiated from the time source (Internet-based time server) but rather by the time client (the domain controller).  Please correct me if I'm wrong. 
    So then with a stateful firewall and provided there are no restrictions from inside to outside for NTP, I should not have to open udp 123 from the outside at all, but instead just allow the inside server to request time from the outside, using whatever dynamic port the firewall allocates. 
    Is this right?  Again, ever since we switched to using the Cisco router, time sync is not working. 
    Thanks very much. 

    You're thinking is exactly correct. As a test you could also set the router to pull time from the public NTP server and see if it synch's.
    ntp server [ip of NTP server] prefer
    To see if it's synch'ing
    show ntp association
    show ntp status

  • Minimum NAT/firewall settings for iChat audio/video to work?

    I've read the docs on teh ports and firewall issues but it is still unclear to me.
    I have
    1. An OS X Server 10.5.2 connected to the internet behind a router with NAT and running a firewall. NAT and of course the firewall are under my control. I've opened up the iChat Server SSL port (5223) on the OS X Server's firewall. I've put a 5223 redirect on the router to my OS X Server system. iChat is configured on this system and several users have permission to use iChat. The NAT table on the router is restricted, only ports I want to serve (e.g. 25, 22, 5223) are redirected to my server, the rest of incoming connections are blocked at the NAT (safer that way).
    2. An OS X 10.5.2 client behind a NAT setup in another part of the world.
    3. An OS X 10.5.2 client behind a NAT setup in another part of the world.
    Both clients I can manage the firewall of the client, but I cannot manage anything on the router.
    WIth this set up on both systems users have successfully connected to my OS X Server's iChat server using SSL. Text chat works. So I can assume that iChat Server works, that the permissions and login is OK, that SSL is OK.
    But neither audio not video works. I cannot establish an audio or video connection because the connection fails. The iChat connection log says
    2008-02-21 20:49:53 +0100: user@fqdn2: Error -8 (Did not receive a response from 0x18c09b30.)
    there is nothing in appfirewall.log on the client.
    The clients should work OK behind NAT. But my guess is that the server needs more than what I am giving it. However, I have been unable to find out what a minimum set of NAT redirects and firewall ports open is that would enable me to let these two clients do voice chat via my OS X Server at that other location.
    Any tip for information on how to set up the server side minimally and safely would be welcome.
    Thanks,
    G

    Hi,
    Several things.
    1) iChat server does in fact use an SSL Login on port 5223 (Tiger does not do the SSL but is still on the same port.
    This does not allow the other data on port 5220 that the Jabber side of iChat needs.
    Apple Doc http://docs.info.apple.com/article.html?artnum=93208 see item 6
    2) It also ignores the fact iChat uses a completely different set of ports to the A/V Chat
    So an AIM Login is port 5190 in those mentioned in item 6
    port 5297, 5298 and 5353 are the Bonjour ones.
    That leaves 5060, 5678, 16384-16403 for A/V chats in Tiger
    5678, 16393-16402 in Leopard
    The pics and Table are for Panther and Tiger. See the Table at the bottom http://www.ralphjohns.co.uk/pantherports.html
    The changes from Tiger to Leopard in the port Usage for A/V chats is documented here http://docs.info.apple.com/article.html?artnum=306688 (Hence the none use of port 5060 and the smaller groupfor the actual A/V Chats)
    3) Check out the two server forums for Leopard > iChat Server http://discussions.apple.com/forum.jspa?forumID=1235
    And Tiger/OS X Server 10.4 > Collaboration Services http://discussions.apple.com/forum.jspa?forumID=700 as they maybe other issues that I am not aware of on the Server side.
    So Leopard Jabber/iChat Server needs 14 ports
    5220, 5222, 5223 on TCP and
    5678, 16393-16402 on UDP
    Tiger needs the A/V ports to include 5060 and extend the group to 20 ports (16384-16403)
    I hope this helps.
    8:44 PM Sunday; February 24, 2008

  • NAT-PMP and UDP broken

    It seems like the implementation of NAT-PMP with UDP is broken or not well thought out.
    For example if I mapwith NAT-PMP UDP port 1111 to a local machine with the same port, traffic destin to external port 1111 reaches my internal machine fine. The problem however lies with traffic generated from the internal machine with a source port of 1111. It doesn't get mapped to 1111 source while leaving the Airport Extream router, it gets mapped like regular traffic, on some high port.
    Now this incorrect mapping causes a problem while talking with some peers that are also behind a NAT or Firewall. After talking to my device at port 1111, they expect the reply to come back with a source of 1111, which it doesn't so the P2P communications fails.
    FYI every UPNP router I've tried correctly maps the outbound traffic.
    This is with the latest firmware 7.3.2 on an Airport Extreme with 802.11n (gigabit ethernet).
    I hope someone at apple reads this and can put this in a bug database.

    I fixed my problem.
    This old thread: http://discussions.apple.com/thread.jspa?messageID=6925383
    talked about the exact problem I was seeing.
    I had set a manual port map for my SlingBox in the AirPort's settings, not realizing that the SlingBox supports NAT-PMP and can auto configure its own port mapping wit the AirPort. Removing the manually mapped port worked.
    Though it's not exactly the problem you are seeing, maybe you can check to see if there are any apps you are using for which you manually mapped a port, that can auto configure its own port mapping. It could be causing a conflict in the AirPort that screws up NAT-PMP.

  • Firewall and antivirus

    can any1 help me about my firewall and antivirus cause cisco network pro dont detect my comodo firewall and comodo antivirus instead it detects my windows firewall and my  antivirus it says none installed im on windows 7 but i turn off already my windows firewall plus i have antivirus and its comodo antivirus .. help me pls

    Using Anti-virus software on OS X basically comes down to personal preference. Many people like to have it for peace of mind or to help prevent spreading viruses on to their Windows buddies.
    Personally, I've never used anti-virus software on my OS X macs, and I won't until there is a compelling reason to.
    As far as a firewall... OS X has a very good firewall built in to the operating system. You can enable it with ease by clicking a few buttons.
    If you really want to hide your system, then I might suggest a simple broadband router that supports NAT (most do).
    That would add another good layer of protection for you.

  • With OSX firewall and firewall on router, do you really need Netbarrier?

    With the native firewall and what the router provides do you really need to spend the extra money. I understand the need for anti virus but... do you really need something like Netbarrier from Intego?

    I agree with Roam, but if you are still in doubt, check these out...
    ClamXAV, free Virus scanner...
    http://www.clamxav.com/
    Little Snitch, stops/alerts outgoing stuff...
    http://www.obdev.at/products/littlesnitch/index.html
    HenWen/Snort combo, that is a free MAJOR Firewall...
    http://seiryu.home.comcast.net/henwen.html
    Then the venerable old Brickhoues/Flying Buttress Firewall...
    http://personalpages.tds.net/~brian_hill/downloads.html
    WaterRoof is a firewall management frontend with bandwidth tuning, NAT setup, port redirection, dynamic rules tracking, predefined rule sets, wizard, logs, statistics and other features.
    http://www.macupdate.com/info.php/id/23317

  • RMI NAT

    Hi i've read many posts here and so i ask my question rather direct way.
    i have an client server application communicating over rmi. i have a NAT between server and SOME clients and some clients are on the same side of the NAT as the server. setting the Djava.rmi.server.hostname and opening the ports on the NAT and forwarding to the server works perfect for the clients on the other side of the NAT, but not for thouse on the same side as the server.
    do i have to make the public IP of the NAT accessible to the inside clients ? is there another way ? can i configure mire than i hostname ?
    thank u very much
    michael

    do i have to make the public IP of the NAT accessible to the inside clients?Yes
    is there another way ?Not that I'm aware of.
    why should i use codebaseNobody said you should use a codebase. RMI codebase is a deployment option. It has nothing specifically to do with NAT.

Maybe you are looking for

  • 9/10/2013 - Flash Player 11.8 Release Announcement

    Today we're pleased to announce that the next version of Flash Player is available for immediate download.  This update includes the multiple stability and security fixes for all browsers and platforms: Bug fixes 3601024 - [Safari OS X 10.9] - File D

  • #iPod Touch Issues

    Alright, so my iPod refuses to stay connected to the internet. Like, I've turned it on and off and on and off about a million times, I've rested the network and there's no way in this world that it's my router because I'm connected to the internet on

  • Group date by 10s

    Hi i need to group by 10 s datas timestamped by second and i can't find out how to do it the trunc(date, 'format') doesn't work at second level select to_char(dateaction, 'DD/MM/YYYY HH24:Mi') group by minutes but it's not enough precise and to_char(

  • Update Scales on Purchasing Info Record

    Dear All, I need to upload and update Scales on Purchasing Info Record. Is there any BAPI or IDOC or Standard Batch/Direct Input (LSMW)  or any Function module for this data upload. Thanks in advance.

  • MS Project Standard Trial - 32-bit Download

    Hi - I'm having problems downloading the ms project standard 2013 software. i have completed the information form on the tecnnet evaluation center web page and tried to down load the software about 4 times.  it appears to be permitting the download,