Invalid Credentials

Hi LDAP Gurus,
I'm a novice in LDAP and JNDI.i installed OPENLDAP on my linux system and its working fine but when i try the example of JNDI, it is giving me the error of INVALID_CREDENTIALS. The Error is :
javax.naming.AuthenticationException: [LDAP: error code 49 - Invalid Credentials]
The JNDI code is:
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import javax.naming.NameAlreadyBoundException;
import javax.naming.directory.*;
import java.util.*;
public class MakeRoot {
final static String ldapServerName = "10.10.10.38:389" ;
final static String rootdn = "cn=Manager, o=jndiTest";
final static String rootpass = "secret";
final static String rootContext = "o=jndiTest";
public static void main( String[] args ) {
Properties env = new Properties();
env.put( Context.INITIAL_CONTEXT_FACTORY,
"com.sun.jndi.ldap.LdapCtxFactory" );
env.put( Context.PROVIDER_URL, "ldap://" + ldapServerName + "/" );
               //env.put(Context.SECURITY_AUTHENTICATION, "simple");
     env.put( Context.SECURITY_PRINCIPAL, rootdn );
          System.out.println("Harry");
env.put( Context.SECURITY_CREDENTIALS, rootpass );
try {
// obtain initial directory context using the environment
DirContext ctx = new InitialDirContext( env );
// now, create the root context, which is just a subcontext
// of this initial directory context.
ctx.createSubcontext( rootContext );
} catch ( NameAlreadyBoundException nabe ) {
System.err.println( rootContext + " has already been bound!" );
} catch ( Exception e ) {
System.err.println( e );
I'm badly stuck. can anyone help me out of this... Thanks in advance.
REgards
Harjinder

I am also brand new to Java and JNDI, but here is a sample program that I wrote yesterday that seems to be working.
import java.util.*;
import javax.naming.*;
import javax.naming.directory.*;
public class bind_jndi {
public static void main(String[] args) {
int numberOfArgs = args.length;
if (numberOfArgs!=3) {
System.out.println("Invalid number of parameters\n");
System.out.println("Usage is : bind_jndi ldap_url bindDN password\n");
System.out.println("Where:");
System.out.println(" ldap_url : The LDAP Server to communicate with\n");
System.out.println(" bindDN : The DN to perform the bind with\n");
System.out.println(" password : The password for the above DN\n");
System.out.println("Ex: bind_jndi ldap://localhost:389 cn=userid pswd");
return;
System.out.println("Starting...");
// Set up the environment for creating the initial context
Hashtable env = new Hashtable();
env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
env.put(Context.PROVIDER_URL, args[0]);
// Specify the LDAP protocol version
env.put("java.naming.ldap.version", "3");
// Valid values are 'simple' and 'none'
// 'simple' -> Use clear-text password
// 'none' -> No auth, anonymous
// If the client does not specify any authentication environment
// properties, then the default authentication mechanism is "none".
// The client will then be treated as an anonymous client.
// If the client specifies authentication information without explicitly
// specifying the Context.SECURITY_AUTHENTICATION property, then the
// default authentication mechanism is "simple".
env.put(Context.SECURITY_AUTHENTICATION, "simple");
// Authenticate as Mitch and password "mysecret"
env.put(Context.SECURITY_PRINCIPAL, args[1]);
env.put(Context.SECURITY_CREDENTIALS, args[2]);
try {
// Initiate a bind, if it fails, the 'catch' will print an error
DirContext ctx = new InitialDirContext(env);
System.out.println("Authentication passed");
// Close the connection
ctx.close();
} catch (NamingException e) {
System.err.println("Authentication failed");
String err = e.getExplanation();
System.err.println("Extended message " + err);
Hope this helps.

Similar Messages

  • Invalid Credentials: The Network location cannot be reached

    I am working with MDT 2010, and I am getting the error, "Invalid Credentials:  The Network location cannot be reached." When I run the LiteTouch 64 bit, I don't think the network is working.  It's like there is not driver for the network card in
    the LiteTouch 64 bit to make the network connection.  When I hit F8 key, it brings a DOS box up for testing, and I found out these things.
     - I can ping the loop back address 127.0.0.1.
     - Cannot use the net use command to connect to the server share \\server01\DeploymentSahre$.
     - I can not ping by name or IP address the server that is holding my Deployment Share.
    This is the first time I am working with this technology, and I was following a guide off the Technet library.  It almost like I am missing the driver for the network card.  I have Windows Deployment installed on server01, the server will answer,
    and I am able to put in my user name and password,  it accepts and starts loading. 
    I did figure out how to inject the network drivers into Windows Deployment for the Motherboard I was using, do I have to do the same thing here again? MDT is using the Windows Deployment Images on the server01; MDT is setup on server01.   I would have
    thought that since the driver was already injected into the Image MDT would use that as well.  So, do I need to put a driver into the LiteTouch 64bit image and if I do how do I do that?
    thanks very much for your help,
    Rick Arnold
    ArnoldConsult
    Rick Arnold Arnoldconsult, MCP

    If you haven't updated the deployment share after adding the proper drivers to OOBD then your LiteTouch boot images will not have them included.  Just right click the deployment share and click on Update Deployment Share, it will take a while but it
    will rebuild the boot images with the drivers you've included in OOBD.  Then it's just a matter of either recreating the flash drives or loading the updated image into WDS.  
    Another thought:
    We had an issue with some HP's that had Main Boards replaced.  the BIOS time was WAY off and the UUID wasn't setting itself because the network was denying it access to our servers (because of the horribly wrong time).  Once we corrected the time
    in the BIOS everything ran fine.  The error we got while trying to do the deployment was the same as what you describe and we could still ping various machines on the network too.  

  • Could not connect to Orchestrator web service - Unauthorized: Access is denied due to invalid credentials

    I am trying to set up the Orchestrator Connector for Service Manager, when running the test, I get the error
     <h2>401 - Unauthorized: Access is denied due to invalid credentials.</h2>
      <h3>You do not have permission to view this directory or page using the credentials that you supplied.</h3>
    The account I am using is the system account for Service Manager. I have added that account to the local admin group on the Orchestrator server as well as the Orchestrator admin group. But to no avail.
    Now when I am logged on to the Orchestrator server locally with my account, I can access the Orchestration Console with no problem, however when I try to connect to it remotely using my account, it will not accept my credentials. I need to sort this out,
    can anyone help?
    Paul Arbogast

    I found the solution, using the IIS Manager I changed the Windows authentication providers by moving NTLM above negotiate.
    Paul Arbogast

  • MDT user credentials error: Invalid credentials: The network path was not found

    I have DELL E5400 and DELL Optiplex 760 pc. In the before, DELL630 is working with my MDT service, but now, DELL E5400 and DELL Optiplex 760 not working with my MDT.
    When PE loaded and go to User Credentials interface, I input the user name and password(I confirm the user name and password is correct), it will display error message "Invalid credentials: The network path was not found". I checked that the network driver is correct.
    After search some information in the website, someone said that maybe the network initializing timeout issue, so I according to Tim Quan guide to add following to startnet.cmd
    wpeutil InitializeNetwork
    ping localhost
    wpeinit
    Then I update the deploy location in MDT and then re-loaded it again, but unlucky, I still meet the same issue. I tried to use ipconfig /all command to check the network status, I couldn't find out local network connection. I click "Cancel" to check the error message, it will display"A connection to the deployment share could not be made. The deployment will not proceed. DHCP lease was not obtained for any networking device!Possible cause: check physical connection".
    It seems that PE not loaded network driver successfully, but it is very strange that the network driver is correct.
    Have someone can help me?
    Thanks a lot

    Hi,
    Are you deploying Windows Vista 32bit or 64bit? Please obtain he latest network card drivers from the following sites:
    Dell Latitude E5400:
    http://support.dell.com/support/downloads/driverslist.aspx?c=us&cs=19&l=en&s=dhs&ServiceTag=&SystemID=LAT_E5400&os=WLH&osl=en&catid=&impid=
    Dell OptiPlex 760:
    http://support.dell.com/support/downloads/driverslist.aspx?c=us&cs=19&l=en&s=dhs&ServiceTag=&SystemID=PLX_760&os=WLH&osl=en&catid=&impid=
    Please make sure you add the correct network driver to deployment point.
    Additional Information:
    http://www.techtalkz.com/windows-deployment/501217-deployment-share-connection-issue-since-mdt-2008-waik-1-1-a.html
    http://www.deploymentforum.com/Community/Forums/tabid/124/forumid/16/postid/737/view/topic/Default.aspx
    Hope it helps.
    Tim Quan - MSFT

  • Scan to Email not working - Invalid Credentials error (using gmail and 2-factor authentication)

    I configured the HP OfficeJet 8600 printer for scan to email using the Embedded Web Server interface. In the Web interface, I added/entered an email address for my gmail account, and set the correct SMTP server details, and entered 465 for the port number. I checked the "Always use secure connection" box, as well as the "SMTP requires authentication for outgoing email messages" box. I entered correct SMTP user ID and password. Yet when I did a test, I got an error "Invalid credentials" After a lot of frustration, and trying all sorts of things, I eventually got the idea to try another email account. This time I tried a different email account, a netzero email account, configured the smtp server details for it etc. And this time when I tested the netzero email address it worked. I tried the scan to email on the printer, and it worked for the Netzero email account. it just didnt work for the gmail account. I had a while back turned on 2-factor authentication. I went to gmail settings and requested an "App password" for my HP printer. Google/gmail displayed a 16 character password, which I then entered into the password box in the HP OfficeJet printer Embedded Web Server interface (instead of my usual password), for the gmail account. And this time when I tested the email account - it worked! Problem solved! .. I share this just in case anyone else is having the same problem I had, and is going through the same frustrating experience I endured!  

    Thank you. This helped TREMENDOUSLY! 

  • Suppress HTTP Authentication dialog for invalid credentials

    If I want a custom login screen with domain, username and password fields for my AIR application, that uses Basic Authentication on the server, I can use
    <code>
    URLRequestDefaults.setLoginCredentialsForHost(myDomain, myUsername, myPassword);
    </code>
    and it works fine. But if I enter invalid credentials, the "built-in" authentication dialog pops up. How can I suppress that? I read somewhere that I could use URLRequestDefaults.authenticate = false; but that just seems to kill the authentication process altogether.
    Any ideas?

    No, that's not the case. I am talking about the user authentication dialog that is shown whenever you access a member restricted web site.
    Through Java, we can pass the user name and password values if we know, and the dialog will not be shown. But, I face the problem in NS 4.7x.
    -JP

  • SSGD 4.40.907 and SLES10-SP1 64bit - Invalid credentials while logging in

    Hello everybody.
    As a test, I installed SSGD 4.40.907 on a SLES10-SP1 64bit virtual operating system (it's operating using the XEN hypervisor, paravirtualized mode).
    The installation went well (I had to copy old libraries - namely, libexpat.so.0.5.0 and libgdbm.so.2.0.0 - from a previous version of SLES + ldconfig) and I was able to get to the login prompt but as soon as I entered the "root" password I got "Invalid credentials".
    I tried again (in my test environment, the root password is VERY simple) but no dice; I checked the root password by logging into the system using SSH and it worked fine.
    I tried with different local accounts (eg, ttaserv and ttasys) but got the same message.
    Please notice that, under the very same piece of HW but using a SLES10-SP1 *32bit* under XEN, everything works as expected so it seems a 64bit OS related issue.
    Thanks,
    Rob

    Casper,
    Can you please try the following.
    On the protected server please try to remove the account and remove the DPM agent. Reboot, after that please manually reinstall the DPM agent on the protected server -
    http://technet.microsoft.com/en-us/library/hh757789.aspx.  Run the setdpmserver command and after completing successfully check the account to ensure the following.
    1) It is set for the password not to expire and user cannot change password
    2) Is included in the following groups, DCOM Distributed Users, DPMRADCOMTrustedMachines, and DPMRADmTrustedMachines.
    If that all checks out, please goto the DPM console and tried to attach from the DPM console first and then try the powershell command if the console errors out. 
    Here are some other things to check as well:
    Step 1) Ensure NTLM is working - UNC from DPM to PS and back
    Step 2) Ensure DCOM is enabled on protected server - Type DCOMCNFG > Computers > My Computer, right click and select properties, go to Default Properties and ensure "Enable Distributed COM on this computer" is checked
    Step 3) Ensure all firewalls have needed ports open -
    http://technet.microsoft.com/en-us/library/hh758204.aspx
    Step 4) Ensure user account is set to never expire and user cannot change password
    Step 5) Try attach from DPM console first then DPM powershell
    If that still does not work please ensure you are on the latest DPM patch and try again. 
    For DPM2012 SP1 that is DPM3.6(Note: you will need to have RU3 installed prior)
    4.1.3419.0 - DPM RU3.6 - Hotfix for System Center 2012 SP1 Data Protection Manager (KB2886362)
    http://www.microsoft.com/en-us/download/details.aspx?id=40318
    4.1.3417.0 - DPM RU3 - Description of Update Rollup 3 for System Center 2012 Service Pack 1
    http://support.microsoft.com/kb/2836751
    Regards, A.Nadar, This posting is provided &quot;AS IS&quot; with no warranties, and confers no rights.

  • Netweaver CE 7.1 gives Invalid credentials

    Hi,
    I am new to SAP NetWeaver Composition Environment 7.1. I tried to install the CE 7.1. when I try to start, it asks me for OS user id and password. The OS user by default is my laptop user id which has admin rights and I don't have a password set. Every time it throws error "invalid credentials" and I am stuck up having no clue.
    Appreciate your help.

    Hi Naveen,
    The systemrequirements.htm page in the download package says:
    "Note: If you use a Windows XP account without a password , SAP Management Console can not start/stop your instance via Web Service - use system services instead"
    I believe the "Start Application Server" shortcut in the Start Menu should also work in this case.
    HTH!
    -- Vladimir

  • Cannot complete email client form, keep getting error message "Invalid credentials check email and password"

    I have Elements and Premier Photoshop 8 on my windows 7, 64 bit, computer.  I just downloaded the upgrade to #13 for both.  The Elements downloaded ok and transferred pictures from #8.  My problem is that on 13 I cannot configure an email client so I can email my photos to other people.  When I fill out the configure email client form I get an error message that says "Invalid credentials Please check your email address and password and try again"  I did that and continued to receive the same error message. I entered the email address and password I use to get into my adobe account.  How can I solve this problem?

    Hi,
    In the organizer, in the Preferences -> Email, the email address and password is not your Adobe Id, it should be your mail service provider - it could be a Microsoft Account or a Gmail.
    When you normally use emails, you must have an email account with a password - use that.
    If you have to use the "other" type of service provider, it needs to be configured for the SMTP service.
    Brian

  • E6 - Mail for Exchange-invalid credentials

    Hi, need some help....
    After configuring my nokia E6 for Exchange mail I keep receiving a message "mail for exchange-invalid credentials". I've checked all my credentials en configuration: they are correct.  I have tried the configurations on a Nokia E72 and that works perfect. Is this a known error or is there a setting I'm missing. Our company server is an Windows Small Buniness Server 2008.
    I updated the firmware to version 025.007. That dit not help.

    Hi, need some help....
    After configuring my nokia E6 for Exchange mail I keep receiving a message "mail for exchange-invalid credentials". I've checked all my credentials en configuration: they are correct.  I have tried the configurations on a Nokia E72 and that works perfect. Is this a known error or is there a setting I'm missing. Our company server is an Windows Small Buniness Server 2008.
    I updated the firmware to version 025.007. That dit not help.

  • ORA-31202: DBMS_LDAP: LDAP client/server error: Invalid credentials

    Hey Guys,
    I have an application with LDAP authentication and a custom login page (pg 101). When I run this app, the login page displays first, logs me in and logs out fine. However, when I branch to this application from another application, the login page shows up with the following error:
    ORA-31202: DBMS_LDAP: LDAP client/server error: Invalid credentials
    Error ERR-1082 Error in executing authorization scheme code.
    I looked at debug and this is happening because when this page is loaded, it goes to my authentication scheme and tries to authenticate me even though I havnt logged in and because no user exists at this point the error happens.
    I have set the login page to 'Page is Public' and have also used the following code in the authentication scheme's Page Sentry Function:
    IF APEX_CUSTOM_AUTH.CURRENT_PAGE_IS_PUBLIC = TRUE THEN;
    RETURN TRUE;
    ELSE
    RETURN FALSE;
    END IF;
    Any ideas of how I can stop my login page from being authenticated? Or where I am going wrong
    Thanks
    -Mark

    Jes,
    I could get it work !!!! my complete code
    DECLARE
    l_attributes wwv_flow_global.vc_arr2;
    l_attribute_values wwv_flow_global.vc_arr2;
    l_msg dbms_ldap.message;
    l_entry DBMS_LDAP.message;
    l_session DBMS_LDAP.session;
    l_ber_element DBMS_LDAP.ber_element;
    l_attr dbms_ldap.string_collection;
    l_attr_name VARCHAR2(256);
    l_vals DBMS_LDAP.string_collection;
    retval PLS_INTEGER;
    BEGIN
    l_session := DBMS_LDAP.init('server', '389');
    retval := DBMS_LDAP.simple_bind_s(l_session,'cn=myid,cn=na', 'mypwd');
    dbms_output.put_line('Retval -> ' || retval);
    l_attr(1) := '*'; -- retrieve all attributes
    retval := DBMS_LDAP.search_s(
    ld => l_session,
    base => 'ou=xx,o=xx',
    scope => DBMS_LDAP.SCOPE_SUBTREE,
    filter => 'uid=myid',
    attrs => l_attr,
    attronly => 0,
    res => l_msg);
    dbms_output.put_line('Retval 2 -> ' || retval);
    dbms_output.put_line('msg : ' || l_msg);
    IF DBMS_LDAP.count_entries(ld => l_session, msg => l_msg) > 0 THEN
    -- Get all the entries returned by our search.
    l_entry := DBMS_LDAP.first_entry(ld => l_session,
    msg => l_msg);
    << entry_loop >>
    WHILE l_entry IS NOT NULL LOOP
    -- Get all the attributes for this entry.
    DBMS_OUTPUT.PUT_LINE('---------------------------------------');
    l_attr_name := DBMS_LDAP.first_attribute(ld => l_session,
    ldapentry => l_entry,
    ber_elem => l_ber_element);
    << attributes_loop >>
    WHILE l_attr_name IS NOT NULL LOOP
    -- Get all the values for this attribute.
    l_vals := DBMS_LDAP.get_values (ld => l_session,
    ldapentry => l_entry,
    attr => l_attr_name);
    << values_loop >>
    FOR i IN l_vals.FIRST .. l_vals.LAST LOOP
    DBMS_OUTPUT.PUT_LINE('ATTIBUTE_NAME: ' || l_attr_name || ' = ' || SUBSTR(l_vals(i),1,200));
    END LOOP values_loop;
    l_attr_name := DBMS_LDAP.next_attribute(ld => l_session,
    ldapentry => l_entry,
    ber_elem => l_ber_element);
    END LOOP attibutes_loop;
    l_entry := DBMS_LDAP.next_entry(ld => l_session,
    msg => l_entry);
    END LOOP entry_loop;
    END IF;
    retval := DBMS_LDAP.unbind_s(l_session);
    END;
    thank you :D

  • DIServer Login Question - Invalid Credentials Web Service Hangs

    Hi everybody,
    I was able to successfully configure the DIServer and connect via a web service (similar to the SDK Samples provided). I am now able to login using a valid username/password and the <dis:Login> SOAP message, but if I provide a bad username or password it seems to just hang forever, without returning an 'invalid user/password' message - just nothing. Anyone else have this problem?
    The only workaround I can think of now is to just set the timeout on my web request to a short time span with a generic error message. But I'd like to be able to differentiate between invalid credentials and just a problem with the DI Server connection.
    Thanks for any help.

    Looks like a reboot of the DI Server has fixed the problem. Probably should've tried that before posting.

  • [LDAP: error code 49 - Invalid Credentials]

    New to OID. Using Jdev 10.1.3 and then have following code. user is apenlast and password is penlast2.
    I want to get all the attributes for this user from OID. But I keep getting this error.
    javax.naming.AuthenticationException: [LDAP: error code 49 - Invalid Credentials]
    Actually from SSO login screen, if I try login using apenlast/penlast2 I can successfully login to OID. Then why this error from code ??
    InitialDirContext ctx1 = ConnectionUtil.getDefaultDirCtx
    ( "ormi://br-dev3.fjcs.net:399",
    "389",
    "cn=apenlast",
    "penlast2" );
    System.out.println("TTTTTTTTTTTTTTTTTTTTT "+ctx1.getAttributes("uid"));

    probably you're not using using the fully qualified DN.
    the users are stored by default under cn=users,dc=yourDOMAIN
    so u should try cn=apenlast,cn=users,dc=yourDOMAIN.
    regards,
    --Olaf                                                                                                                                                                                                                                                                                                                                                                                                   

  • OEL 6 install - invalid credentials when logging in through web client

    I've installed 11g XE on Oracle Enterprise Linux 6.1, seems to be running fine and listener is up. I can successfully log into SQLPlus using sys as sysdba via oracle user, but when I try to run APEX or QuickStart or RCU using the same credentials, I get "invalid credentials". I'm trying to get full FMW install and obviously need RCU to build schemas, so I'm stuck. Any advice would be appreciated.

    Hello,
    FMW does indeed install and run on top of XE as long as you set character set and parameters appropriatelyWhere do you adjust that charset? It should be FMW, not XE...
    I can't get into APEX for example as SYSWhat do you mean with "APEX" in that context? The APEX Administration would have "ADMIN" as default account, using the same password you assigned in the installation wizard.
    If you refer to the "Get Started"-URL (http://127.0.0.1:8080/apex/f?p=4950), this is an XE-specific APEX application that doesn't use APEX authentication, but database user authentication instead. For this application, your SYS password should work, as it's actually exactly the same authentication you get for your command line.
    Perhaps it would help to know which URL you are calling and which value you enter for username. Note that "SYS AS SYSDBA" would not be a valid username (because it includes the role), whereas just "SYS" is okay.
    The one thing RCU, APEX, etc. have in common is that they're web clients.XE uses the so called "Embedded PL/SQL Gateway" hosted by the database internal XDB HTTP Server by default. Though a web server, it's not a real client to the database, as it doesn't connect external. The only external part is the HTTP communication, but this seems to work fine since you didn't report that you don't get the login screen for APEX...
    -Udo

  • Invalid Credentials when trying to login to iPrint iOS App

    I've recently setup a fresh install of the iPrint Appliance 1.1 and installed all security patches.
    Original setup was iPrint appliance was SSL but syncing to our edirectory server was not, and I was unable to login with the iOS app. This was in Evaluation mode so I am unsure if the password being encrypted over SSL from the appliance then trying to match on the eDir server not on ssl caused that issue.
    However I then installed our license, and configured LDAP sync to be over SSL, but I am still gettin the same "Invalid Credentials" message. That being said, our current license only entitles us to the appliance and iprint desktop, not iPrint Mobile whereas when in evaluation mode you have access to iPrint Mobile.
    My question here is, should I be expecting it to say "Invalid Credentials" even though I do not have any iPrint Mobile licenses, or should there be a different message or result?
    Thanks!

    mojeda92,
    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://www.novell.com/support 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 Forums Team
    http://forums.novell.com

Maybe you are looking for

  • Hyperlinks no longer working after browser upgrade

    IE works fine Firefox does not open websites after clicking hyperlinks

  • UPK buttons not working in OLM

    Anyone ever used Oracle Learning Management and UPK? I imported SCORM compliant content into OLM and tried to play it. I can only see the TRY IT mode and not the see it mode. The buttons are not working either. I published the content in an LMS packa

  • How to store custom application data in the Portal

    Hello, Is there a mechanism in the Portal whereby you can put custom application data into persistence and then retrieve it again? I don't want to use the database to store the data. I was hoping there is some API to such a mechanism that will allow

  • Apple needs to be more forthcoming on Aperture 1,1 slip.

    I'm committed to Aperture and firmly believe ALL digital photographers will benefit from viable competition between Aperture and Lightroom. These products are redefining the digital photography workflow to our ultimate benefit. While I'm disappointed

  • Back to my mac NAT-PMP

    What ports need to be enabled under NAT-PMP on a Westell (Netgear) 7550 router?  I know that BTMM works because I've used it in two different locations.  One in England and one in the USA.  Can connect to router and set NAT-PMP but for the life of me