Using an Ethernet Adapter for Internet with my Emac - getting IP problems

Hi, I used this Ethernet Adapter just fine with my laptop, and now have everything migrated to an EMac. Using 10.4.11, so everything is the same. But I get strange drops (Gmail even told me I had a 'flaky' internet connection) and have to launch Network and am usually told (under Network Status):
Ethernet Adapter (enl) has a self-assigned IP address and may not be able to connect to the Internet.
I can sometimes get it working by hitting the Renew DHCP lease or Configure IPv6 and Apply Now. Sometimes that doesn't work, but if I switch to another User it starts working correctly, and is fine when I return to my preferred user. Sometimes nothing works until I restart. It's frustrating, because it is time consuming to fix and I never know when I am going to be dropped. This never happened with my laptop, so I am pretty sure it's something in my Network pane.
Thanks, ahead of time, for any suggestions.
Any suggestions?

I did reinstall the software, but your question got me to thinking ...
I had the problem again after I turned off the computer for an hour, to do some RL stuff, and when I turned it on I got the "self-assigned" IP report again. The IP6 was off, so that wasn't the only issue. I did a renew lease thing, which did nothing on my usual User side, but when I switched to the other User it worked again.
So I'm wondering ... the User side I am mostly using was the one that migrated over from the Laptop. The one that tends to turn it on is the one that had a User installed on it already. Maybe some setting migrated from the Laptop. Perhaps I should try deleting the software, and reintalling it from the CD. It seems to be affecting the IP selection, somehow.
The other thing is maybe I should just put in a manual setting on the IP, the one the dongle seems to like. I'm wondering if IPs are being reassigned by the router in the main house and that's why mine goes bonkers for no reason. Only thing is ... that never happened when it was just on the laptop.
Hey, thanks, Kappy, for all your help. I know it's tough when you can't see exactly what I'm talking about.

Similar Messages

  • Using Tuxedo Mainframe adapter for SNA with OSB

    Hi,
    Can we use the Oracle Tuxedo mainframe adapter for SNA with the OSB?
    If yes then how?

    Hi Priyanka,
    The Tuxedo Mainframe Adapters are separably licensed products and not included in the Tuxedo kits. I'm not certain the mainframe adapters are yet available for 10gR3 (I'm checking on this), and for whatever reason the latest version I can find for download is the 9.1 version that can be downloaded from eDelivery.
    Regards,
    Todd Little
    Oracle Tuxedo Chief Architect

  • Inqmy resource adapter for SAP with Bea Weblogic Server

              Hi everybody,
              Anybody have tried to use INQMY resource adapter for SAP with Bea weblogic server
              It works well with INQMY server, but with BEA I'm getting a lot of problems creating
              the connections.
              Thanks in advance.
              Xavi.
              

    All,
              Here are the steps we (used for internal testing) had to perform to get
              IN-Q-MY adapter for SAP to work with WebLogic:
              The wli.adapter.inqmy.sapr3.spi package contains extensions to the
              In-Q-My J2EE Connector Architecture classes to overcome some limitations
              in the base implementation classes. To get around these issues, we had
              to extend their R3ManagedConnectionFactory, R3ConnectionManager, and
              R3ConnectionFactory classes.
              * The javax.resource.spi.ManagedConnectionFactory implementation
              does not over-ride the equals and hashCode methods correctly. This
              causes problems with WLS 6.1.
              * There is a bug in their javax.resource.spi.ConnectionManager
              implementation for non-managed uses of the adapter. Consequently, their
              adapter cannot be used in a non-managed scenario.
              * The javax.resource.cci.ConnectionFactory class does not support
              the getConnection() method that does not take any arguments (it throws a
              null pointer exception).
              I am attaching the classes discussed above.
              Cheers,
              Chris
              Torsten Friebe wrote:
              > Hi,
              >
              > does anybody know where to get a trail version - if one exists - of IN-Q-MY
              > application server or the resource adapter?
              >
              > Thanks, regards
              > Torsten
              >
              > "Xavi" <[email protected]> schrieb im Newsbeitrag
              > news:[email protected]...
              >
              >>Hi everybody,
              >>
              >>Anybody have tried to use INQMY resource adapter for SAP with Bea weblogic
              >>
              > server
              >
              >>?
              >>
              >>It works well with INQMY server, but with BEA I'm getting a lot of
              >>
              > problems creating
              >
              >>the connections.
              >>
              >>Thanks in advance.
              >>Xavi.
              >>
              >>
              >
              >
              package wli.adapter.inqmy.sapr3.spi;
              import java.io.Serializable;
              import javax.resource.ResourceException;
              import javax.resource.cci.Connection;
              import javax.resource.cci.ConnectionSpec;
              import javax.resource.spi.ConnectionManager;
              import javax.resource.spi.ConnectionRequestInfo;
              import javax.resource.spi.ManagedConnection;
              import javax.resource.spi.ManagedConnectionFactory;
              import com.inqmy.r3adapter.R3ConnectionSpec;
              import com.inqmy.r3adapter.R3ManagedConnectionFactory;
              * Extends the In-Q-My implementation to allow for getConnection() with no
              * connection spec, i.e. use the default configured connection parameters.
              public class R3ConnectionFactory
              extends com.inqmy.r3adapter.R3ConnectionFactory
              implements com.bea.connector.IProxyMarker {
              private R3ConnectionSpec m_cspec;
              public R3ConnectionFactory(ConnectionManager cm, R3ManagedConnectionFactory mcf)
              throws ResourceException {
              super(cm, mcf);
              String strClientNumber = mcf.getClientNumber();
              if (strClientNumber == null) {
              throw new javax.resource.spi.IllegalStateException("ClientNumber not set for "+mcf);
              String strLanguage = mcf.getLanguage();
              if (strLanguage == null) {
              throw new javax.resource.spi.IllegalStateException("Language not set for "+mcf);
              String strUserName = mcf.getUserName();
              if (strUserName == null) {
              throw new javax.resource.spi.IllegalStateException("UserName not set for "+mcf);
              String strPassword = mcf.getPassword();
              if (strPassword == null) {
              throw new javax.resource.spi.IllegalStateException("Password not set for "+mcf);
              m_cspec = new R3ConnectionSpec(strClientNumber, strLanguage, strUserName, strPassword);
              public Connection getConnection(ConnectionSpec connectionSpec)
              throws ResourceException {
              if (connectionSpec == null) connectionSpec = m_cspec;
              return super.getConnection(connectionSpec);
              package wli.adapter.inqmy.sapr3.spi;
              import java.io.Serializable;
              import javax.resource.ResourceException;
              import javax.resource.spi.ConnectionManager;
              import javax.resource.spi.ConnectionRequestInfo;
              import javax.resource.spi.ManagedConnection;
              import javax.resource.spi.ManagedConnectionFactory;
              * Extends the In-Q-My implementation to over-ride the
              * allocateConnection method to return a CCI connection vs. a ManagedConnection
              public class R3DefaultConnectionManager
              implements ConnectionManager, Serializable {
              public R3DefaultConnectionManager() {}
              public Object
              allocateConnection(ManagedConnectionFactory mcf, ConnectionRequestInfo cri)
              throws ResourceException {
              ManagedConnection mc = mcf.createManagedConnection(null, cri);
              return mc.getConnection(null, cri);
              package wli.adapter.inqmy.sapr3.spi;
              import javax.resource.spi.ConnectionManager;
              import javax.resource.spi.ConnectionRequestInfo;
              import javax.resource.spi.ManagedConnection;
              import javax.security.auth.Subject;
              * Extends the In-Q-My implementation to get around some problems encountered
              * while running on WebLogic:
              * <ul>
              * <li>Must over-ride default implementation of equals and hashCode method</li>
              * <li>Needed to provide my version of the CCI ConnectionFactory</li>
              * <li>Needed to provide my version of the default ConnectionManager for the
              * non-managed scenario use case</li>
              * </ul>
              public class R3ManagedConnectionFactory
              extends com.inqmy.r3adapter.R3ManagedConnectionFactory {
              private int m_iHashCode;
              transient private com.inqmy.r3adapter.R3ConnectionRequestInfo t_cri = null;
              public R3ManagedConnectionFactory() {
              super();
              java.rmi.server.UID uid = new java.rmi.server.UID();
              m_iHashCode = uid.hashCode();
              public Object createConnectionFactory() {
              // need to install our own default connection manager because In-Q-My
              // version causes a ClassCastException in CCI ConnectionFactory
              // getConnection
              return createConnectionFactory(new R3DefaultConnectionManager());
              public ManagedConnection createManagedConnection(Subject subject, ConnectionRequestInfo cri)
              throws javax.resource.ResourceException {
              // need to check for null on the ConnectionRequestInfo object because the
              // In-Q-My R3ManagedConnection ctor does not check for null
              if (cri == null) cri = getDefaultConnectionRequestInfo();
              return new com.inqmy.r3adapter.R3ManagedConnection(this, subject, cri);
              public Object createConnectionFactory(ConnectionManager connectionManager) {
              // need to supply a connection factory that can deal with getConnection
              // that does not take a ConnectionSpec
              try {
              return new R3ConnectionFactory(connectionManager, this);      
              } catch (javax.resource.ResourceException re) {
              re.printStackTrace();
              throw new java.lang.IllegalStateException(re.getMessage());
              com.inqmy.r3adapter.R3ConnectionRequestInfo getDefaultConnectionRequestInfo()
              throws javax.resource.spi.IllegalStateException {
              if (t_cri == null) {
              String strClientNumber = this.getClientNumber();
              if (strClientNumber == null) {
              throw new javax.resource.spi.IllegalStateException("ClientNumber not set for "+this);
              String strLanguage = this.getLanguage();
              if (strLanguage == null) {
              throw new javax.resource.spi.IllegalStateException("Language not set for "+this);
              String strUserName = this.getUserName();
              if (strUserName == null) {
              throw new javax.resource.spi.IllegalStateException("UserName not set for "+this);
              String strPassword = this.getPassword();
              if (strPassword == null) {
              throw new javax.resource.spi.IllegalStateException("Password not set for "+this);
              t_cri = new com.inqmy.r3adapter.R3ConnectionRequestInfo(strClientNumber, strLanguage, strUserName, strPassword);
              return t_cri;
              public boolean equals(Object obj) {
              if (obj == null) return false;
              if (obj == this) return true;
              if (!this.getClass().isInstance(obj)) return false;
              R3ManagedConnectionFactory mcf = (R3ManagedConnectionFactory)obj;
              return compare(getClientNumber(), mcf.getClientNumber()) &&
              compare(getLanguage(), mcf.getLanguage()) &&
              compare(getUserName(), mcf.getUserName()) &&
              compare(getPassword(), mcf.getPassword()) &&
              compare(getServerName(), mcf.getServerName()) &&
              compare(getSystemNumber(), mcf.getSystemNumber());
              protected final boolean compare(final Object obj1, final Object obj2) {
              if (obj1 == obj2) return true;
              if (obj1 != null) {
              return obj1.equals(obj2);
              } else {
              if (obj2 == null) {
              return true;
              } else {
              return false;
              public int hashCode() { return m_iHashCode; }
              

  • Using separate ethernet ports for LAN and internet

    Following scenario:
    A couple of Lion clients and a Lion server connected to a switch. Switch connected to router for internet access. All devices, clients, server and router are in the same C-Class net.
    I'd like to connect the Lion server with 2 ethernet ports to the switch, so that one port is solely used for connections to the Lion clients (aka LAN) and the other port is solely used for connections to the internet. That way heavy LAN traffic to/from the server cannot bog down internet access to the server. Any ideas how to acomplish that?
    Usually you would configure the Lion server as a router and connect the Lion clients (via a switch) to one port and the cable modem to the other, so both ports are in different subnets. But I don't want all internet traffic from the clients going through the Lion server.
    The best I've come up so far was to configure both ethernet ports with static IP addresses. The one connecting to the clients with a 255.255.255.0 netmask but no router IP given. The one for internet with a 255.255.255.255 netmask and the router IP set to my physical router IP. It seems to work, but I'm not sure, whether this is the suggested way to do such a setup.
    Maybe some manual editing of the routing table is are more solid solution?
    Any tips appreciated.
    Pete

    What you want to do can be done but maybe not the way you are trying.
    First yes, you would use two Etherner ports on the Mac, if it is a Mac Pro or XServe it has two built-in, other Mac models can do this using a USB Ethernet interface.
    Next, the way I would normally do this is to have a separate switch for the WAN router, this would make the setup look like the following
    LAN Switch ----- Server ------------ Router --- Internet
           | |                             |
           | |                            NAT    
           | +-----------------------------+
           |
           +------ Client Devices
    The router could be doing NAT via one interface, or a separate Firewall box could do the NAT.
    Another possible way would involve segmenting the lan switch by setting up a VLAN and putting one port for the Servers second Ethernet connection on to that VLAN (using public IP addresses and the a connection to the router on that VLAN, the LAN switch could then route between the two VLANs. Cheaper LAN switches do not have this ability.

  • Airport for Internet with Wired Ethernet for local network

    I'm trying to set up a small local network of 3 PC laptops connected via a router to a Mac which is acting as the central repository for the 3 PCs. The 3 PCs and the Mac are all connected by Ethernet cables to the router which is deliberately isolated from the Internet. However, I also want the Mac to use Airport to get access to the Internet via another router which does have Internet access and provides wireless support.
    What happens is that the wireless Internet access for the Mac works OK as long as I have the Mac disconnected from the small PCs+router network. As soon as I connect the Ethernet cable to the Mac, it loses Internet access.
    It seems that the Mac is preferring to try to use the wired connection over the wireless connection for Internet access.
    How can I force the Mac to use the wireless connection for Internet access and leave the wired connection for my small local network? That is, how can I change the priorities for the two network interfaces (similar to the interface metric setting in Windows XP)?

    http://docs.info.apple.com/article.html?path=Mac/10.6/en/8156.html
    read this and then look at this.. this is a screen shot of what you need to do..
    http://www.ofzenandcomputing.com/wp-content/uploads/2007/02/Picture%203.png
    if you share your wireless and tell it to share it THROUGH your ethernet you'll be okay..
    another thing that you may want to do is to access your routers settings and tell it to work as a switch rather then a router. however if you can get it to work using the article up top then you might not need to do that.

  • USB Ethernet Adapter for 2011 Mac Book Air with Lion OS 10.5.8

    I just bought a new Mac Book Air with the Lion OS. I need a USB ethernet adapter for it. I am unclear if any of the Apple or non Apple products listed on line or EBay will work on this new computer with Lion OS. Please advise on purchasing wither a Apple product or a Ebay non Apple product which ar e half price.

    Yep. Any such adaptor should work. All they need do is comply with basic USB 2.0 protocols and they will work on virtually any computer that has a USB 2.0 port.

  • Do you turn off wi-fi when using Thunderbolt ethernet adapter?

    I set-up the Thunderbolt to ethernet adapter for my Mac Book Pro Retina. Easy set-up.
    It shows wi-fi and thunderbolt both on under Network. Do I need to turn off the Wi-Fi connection if using the Thunderbolt adapter? My internet didn't connect on my Windows laptop this morning wireless and I reset the Cable and router so it may not have had anything to do with it.
    Thanks.

    I turned wi-fi off on my Mac Book Pro and left just thunderbolt ethernet connected and it is working fine. It must have been a glitch in the router or modem that messed it up this morning on my Windows laptop as that is running wireless.

  • 10GB Ethernet Adapter for RD210 and RD220

    Hi together,
    i´m searching for a 10GB Ethernet Adapter for the RD210 and RD220 Servers.
    Is the Lenovo 10Gbps Ethernet X520-DA2 Server Adapter by Intel (0C19486)
    compatible?
    Thx and Greetings
    Andreas
    Solved!
    Go to Solution.

    Hi Andreas,
    I checked into this for you. Unfortunately, we do not provide any drivers for this adapter with the RD210/RD220. I can't say for certain that it won't work, just that Lenovo does not have drivers for the device for use with those servers.

  • How to update an existing item in a sharepoint list using the WSS adapter for Biztalk

    Is there a way that a record in SP list be updated using WSS adapter in biztalk ?
    BizTalk 2013 and SP 2013 ..
    Regards
    Ritu Raj
    When you see answers and helpful posts,
    please click Vote As Helpful, Propose As Answer, and/or Mark As Answer

    A ListItem has its own unique row id so in all likelihood, an insert with the same data will result in a new list entry. The Lists Web Service however, has an UpdateListItem method which will take an update request. [refer
    http://msdn.microsoft.com/en-us/library/office/websvclists.lists.updatelistitems(v=office.15).aspx ]
    There is another note in the conference (marked answered) to your List Item Update problem. Probably worth a try too. [refer
    http://social.msdn.microsoft.com/Forums/en-US/bee8f6c6-3259-4764-bafa-6689f5fd6ec9/how-to-update-an-existing-item-in-a-sharepoint-list-using-the-wss-adapter-for-biztalk?forum=biztalkgeneral ]
    Regards.

  • √using successfully airport express for internet/ when hooking up new airport extreme light glows green, but does NOT appear in devices seen????airport wifi devices

    using sucessfully airport express for internet
    when hooking up new airport extreme light glows green, but does NOT appear in devices sesn in 5.6 airport wifi devices
    wanting to use extreme at base and express in another part of the house

    How is the express getting internet? What modem is it plugged into?
    How is the extreme setup? New extreme cannot be setup with 5.6 utility.. you must use latest 6.3. Which also means you cannot setup from computer using less than Lion .. or you must use iOS with latest utility but it has limited configuration cf the computer version.
    IPv6 is also needed.. turn on local link.

  • Using Oracle Apps Adapter for apps_applcon user

    Hi,
    We are trying to use oracle apps adapter for our BPEL flows using FM11g (Jdev11gR1). We came to know that it will work for only apps user.
    We have apps_applcon user. How can we use that?
    Is there any way we can tell oracle apps adapter to user apps_applcon user?
    Any help would be greatly appreciated.
    Thanks in advance.
    Thanks & Regards,
    Rama Krishna. P

    We also have same requirement. We have BPEL connection using custom oracle user, xx_b2b and when we use APPS adapter, I can not see and use any business event.
    If anybody across same requirement, please share your experience.
    Appreciate help on this.
    Thanks,
    Sonartori

  • How can I see from my contact who use iphone (ios 5) for contact with imessage?

    How can I see from my contact who use iphone (ios 5) for contact with imessage?

    Well, let take the personal service point of view : let say, I had two calendars on my iCloud account : one for work, one for my leisure activities.
    On my MacBook Pro that I use at home as well as at my office, I would want the two calendars to show and since I am alone in my office, I would want the alerts for both my work and my leisure activities to show (and make a sound at the same time).
    But on my iPad that I only use at home, I would only want my leisure activities alerts to show (and make a sound) and on my iPhone that I only use for work, I would only want my work alerts to show (and make a sound).
    That is a personal service that simply does not work.
    Why would Apple give us the opportunity to hide some calendars on certain devices but not allow us, on these same devices, to switch off the alerts linked to these calendars that we have chosen to hide ? Why having alerts of calendars that do not even show on these devices ?
    And I am an Apple fan since 1984, since the very first Mac. I still do believe Macs and Apple devices and/or software (iOS, OS X and others...) are much better and much more efficient than " Microsoft, Windows, Google and other Android devices and software.
    But that does not mean everything's perfect (and I find that quite normal).
    Nevertheless, in this case, letting alerts make a sound on a device where a specific calendar is not shown, that does not make any sense : when uncheking those calendars, the alerts linked to those calendars should be automatically switch off (but alerts should be able to work on the calendars that are shown.)

  • Is there an extension adapter for docking with a cover on my iPhone?

    Is there an extension adapter for docking with a cover on my iPhone?

    tons of options click on the pictures that look intresting it's likely to lead you to a store
    or at least a review where you get the brand name then google for the brand name and find a place to buy it
    easy peacy
    http://www.google.dk/search?hl=da&rlz=1G1TSEH_ENDK367&q=iphone+pin+30+extension+ cord&bav=on.2,or.r_gc.r_pw.,cf.osb&biw=1825&bih=763&um=1&ie=UTF-8&tbm=isch&sourc e=og&sa=N&tab=wi&ei=KWfvTrH0JOuQ4gToueyLCQ

  • Can I use I-Phone 4 for internet connection?

    can I use I-Phone 4 for internet connection to I Pad ?

    If your cell carrier supports tethering and the WiFi "hot spot" feature, as AT&T does, yes.
    Regards.

  • Using USB to connect to itunes with iphone. Getting error OXE8000084 with pulsating tone. Have reset passowrd, authorized computer, & repaired itunes when reinstalled. Any suggestions on how to successfully connect?

    Using USB to connect to itunes with iphone.  Getting error OXE8000084 with pulsating tone. Have reset password, authorized computer, & repaired itunes when reinstalled it. Any suggestions on how to successfully connect to itunes and what this error message means?  Thanks

    0X is a Windows Error. Take the time to look over on the right under the "More Like This" and look for ones that have the green checkmark as being solved. You should find answers there.

Maybe you are looking for

  • The attempt to burn a disc failed.  An unknown error occurred (4850).

    This happened out of nowhere. I just burnt an audio CD last week, as I do many times a week, and all of a sudden my iTunes cancels a burn within the first 15 seconds of every burn. I have tried numerous CD's, I have reinstalled the newest version, I

  • Select option in module pool

    Hi friends, I have to create select options in module pool programming. Using subscreens i have created select option. But if i enter some value and if i press enter then the value is clearing automatically. I am not able to capture the values. Can a

  • Why has my usb ports stopped finding my iphone

    First started with one port now all ports don't work for updating itunes *** I'm starting to hate apple products.

  • Unit test with Dynamic Value Query

    Hi, I am planing a function which should return a table name for a given ROWID. The ROWID will be selected from a view. Now I am trying to setup a unit test which consists of Startup and Teardown Process as well as a Dynamic Value Query. During Start

  • I have an iphone 3 that is disabled and says connect to itunes

    I try connecting it to itunes but it is disabled with a password lock on it, i connect it in my laptop then it comes up with "connected with a password" so i cant restore it because it will not fully connect any ideas that would help me because im re