Embodiments of this invention are related to computer networks and more specifically to peer-to-peer communications across symmetric network address translators on computer networks.
Use of a router that has a NAT (Network Address Translation) feature has been intervening in accessing from the external network to the internal network which is evidently a problem for peer-to-peer applications such as voice communication over the Internet (known as VoIP) and/or online gaming, etc. NAT is an Internet standard that enables a local area network (LAN) to use of one set of private IP addresses for internal traffic and a second set of global IP addresses for external traffic. A node that has NAT capability is often referred as “NAT box”.
A NAT (literally) translates network (IP) address between the two networks. Network Address Port Translation (NAPT) translates not only IP address but also port numbers of a transport layer protocol. Although NAT/NAPT has its good properties, there is a significant side effect. If the translation is dynamically performed, nodes in the external network have no way to know the IP address (and the port number) on the NAT ahead of time to reach a node in the internal network. Unfortunately, this is the most common behavior of NAT in the residential and SOHO routers deployed in the current market.
NAPT (hereinafter, called “NAT” unless stated otherwise) is the most common NAT in today's residential routers. In a NAT, an IP address is used to identify an end node, or a host. There may be more than one application running on the same node. Typically, each application has a unique port number allocated to the same IP address. That is, in order to identify an application, both an IP address and a port number must be specified. The set of IP address and a port number is often called “transport address” which is typically denoted as <ip-address>:<port>.
The notion of “port” is important to understand NAT behavior. A NAT allows two or more IP nodes behind the NAT to share a single global IP address, by translating the port numbers. When an application on a node sends a packet to a server on the public network, the NAT allocates a public transport address, having an external IP address and an external port number that is associated with the source transport address. This association created by NAT is known as “NAT Binding”. When another application on a different node behind the NAT sends a packet to the same server the NAT creates another binding with the same external IP address but with another port number. For the server, those packets look like they originated from the same node but from different port numbers. The server then simply sends responses back to those external transport addresses on the NAT. Since the NAT already has bindings for packets received from the server these packets can be correctly forwarded to the associated local nodes. A problem occurs when a node behind the NAT wants to be accessed from anyone from the public network. A NAT binding cannot be created by packets from the pubic network. The NAT can forward the inbound packets only if an associated binding already exists.
To address this problem, many routers have a Port Forwarding feature which allows a user to manually configure the routing table in the router. As opposed to NAT binding, a specified external transport address on the NAT is static so that any inbound packets arrived on the external transport address are forwarded to the specified local node on the private network. Unfortunately, such manual configuration requires users to have sufficient knowledge of TCP/IP protocol and NAT. Users also need to know the transport addresses of the applications running on the local nodes to configure the port forwarding tables. Since port forwarding is not a standardized feature, each router has a different configuration menu some of which might not be able to meet requirements from an application. To application vendors, the cost for customer support for those users who are experiencing trouble with configuration for various NATs would be very significant.
Network Address Translators (NATs), while providing many benefits, also come with many drawbacks. The most troublesome of those drawbacks is the fact that they break many existing IP applications, and make it difficult to deploy new ones. Although guidelines have been developed that describe how to build “NAT friendly” protocols, many protocols simply cannot be constructed according to those guidelines. Examples of such protocols include almost all peer-to-peer protocols, such as multimedia communications, file sharing and games.
NAT is not a concern if a session is initiated from the internal network to the external network. In client-server system such as Web (HTTP) services or E-mail (SMTP/POP3) system, a client typically initiates a connection to a server, and NAT works well with this client-server model and the deployment of NAT has been very successful.
As the Internet population and its available bandwidth grow the demand for sending and receiving large amount data directly between peers over the Internet has gotten more. As opposed to the client-server model, connecting peer-to-peer solves issues with bandwidth scalability, data propagation delay and a cost for central servers. Well-known applications of this peer-to-peer model today are VoIP and file sharing systems, etc. The peer-to-peer solution is very attractive. It has, however, significant issues with connectivity between the peers through NAT.
It has been observed that NAT treatment of User Datagram Protocol (UDP) varies among implementations. Four treatments commonly observed in implementations are, Full Cone, Restricted Cone, Port Restricted Cone and Symmetric. A full cone NAT is one where all requests from the same internal IP address and port are mapped to the same external IP address and port. Furthermore, any external host can send a packet to the internal host, by sending a packet to the mapped external address. In a restricted cone NAT all requests from the same internal IP address and port are mapped to the same external IP address and port. Unlike a full cone NAT, an external host (with IP address X) can send a packet to the internal host only if the internal host had previously sent a packet to IP address X. A port restricted cone NAT is like a restricted cone NAT, but the restriction includes port numbers. Specifically, an external host can send a packet, with source IP address X and source port P, to the internal host only if the internal host had previously sent a packet to IP address X and port P.
In a symmetric NAT all requests from the same internal IP address and port, to a specific destination IP address and port, are mapped to the same external IP address and port. If the same host sends a packet with the same source address and port, but to a different destination, a different mapping is used. Furthermore, only the external host that receives a packet can send a UDP packet back to the internal host.
One prior art NAT traversal solution has been developed based on UPnP (Universal Plug and Play), a technical specification that enables communications among home appliances such as PC, AudioNideo devices, phones and etc., proposed by Microsoft in 1999 and supported by more than 20 companies including Intel, 3Com, AT&T, Dell Computer, etc. UPnP provides NAT traversal solution that allows a node behind a UPnP compliant NAT to discover the presence of the NAT and to add and delete external port mapping on the NAT. It is an automatic port forwarding configuration, so to speak. Many residential routers support UPnP today, however, not all of them do. Some UPnP compliant routers have UPnP mode turned off by default. Users may be prompted to turn on the UPnP mode manually, but this essentially falls into the same issue with the port forwarding.
UDP hole punching is another popular and effective NAT traversal technique that works well with most of the residential routers' NAT types. As illustrated in
Unfortunately, it is known that some NATs, e.g., Port restricted-cone or Symmetric NATs, forward the inbound packets received on the external port 5 only if the packets are sent from the same transport address (combination of IP address and port number) to which the initial hole punching packet was sent. Moreover, following issues needs to be solved to make use of UDP hole punching: (1) how can the external port number be obtained? (2) How the NAT behavior can be ascertained? (3) Will the same external port number allocated when the local node send a packet to the remote node?
To address these issues a protocol known as Simple Traversal of UDP through NAT (STUN) has been developed. STUN is a lightweight protocol proposed by Internet Engineering Task Force (IETF) that allows an IP enabled node to discover the presence and types of NAT that the node is behind. STUN works with most of NATs and does not depend on any special behavior of the NAT. The STUN server acts like a mirror held up to a node so that the node can see how its local transport address gets mapped to a public transport address.
In the example depicted in
It is important to note that the STUN protocol alone does not support a complete NAT traversal mechanism. It just helps to get necessary information about a target NAT observed by STUN server and client. A typical NAT traversal scenario with STUN and UDP hole punching is performed as follows:
As described above, Node A and Node B need to exchange signals with their routable transport addresses through an intermediary (proxy) server prior to peer-to-peer connection establishment. SIP (Session Initiation Protocol) is a standardized signaling protocol, widely used for Voice over IP applications. Details of SIP are set forth in RFC 3261, which is incorporated herein by reference.
In the general NAT traversal mechanism described above, it is assumed that the MAPPED-ADDRESS obtained by using STUN can be used by Node B to reach Node A. This, however, is NOT true if the NAT is Symmetric. Since a Symmetric NAT allocates a different external port number if the destination address is different, the MAPPED-ADDRESS is not useful for Node B. Traversing a Symmetric NAT has generally been regarded as extremely difficult if not impossible.
The current practice to overcome the Symmetric NAT case is to utilize a relay server such as Traversal Using Relay NAT (TURN). TURN is a server-client protocol that allows a natted node to allocate an external transport address on a TURN server located in the public network. TURN server behaves just like a network address port translation (NAPT) box shared by many natted nodes, and relays traffic received on the allocated external port to a TURN client behind a NAT box. TURN can support any type of NAT behavior because traffic made to a TURN server is of a client-server model. However, it is clear that TURN has a significant scalability issue because all the traffic has to go through the central server.
Therefore, although several NAT traversal techniques have been developed, however, none of them have adequately solved the issue of traversal of a Symmetric NAT without a help from a relay server. Issues of NAT traversal are described in considerable detail in US Patent Application Publication 2004/0139228 entitled “Peer-to-peer (P2P) connection despite network address translators (NATs) at both ends”, which is incorporated herein by reference. Prior art solutions for traversal of the Symmetric NAT case involve highly complex operations.
One attempt Symmetric NAT traversal is based on port prediction. As shown in
Unfortunately, port prediction appears to be a “brittle” technique (as it is prediction based) and subject to failure in certain circumstances. Port prediction as described above also requires node A to send node B information regarding the type of the NAT and the value of delta-P. Port prediction techniques are known to those skilled in the art, e.g., as described in greater detail by Yutaka Takeda in “Symmetric NAT Traversal using STUN, <draft-takeda-symmetric-nat-traversal-00.txt>” a copy of which can be accessed on the Internet at http://www.ietf.org/proceedings/03nov/I-D/draft-takeda-symmetric-nat-traversal-00.txt, and which is incorporated herein by reference.
Another attempted solution to the problem of Symmetric NAT traversal is known as ICE (Interactive Connectivity Establishment). ICE is a very efficient and promising technology but it is also a relatively new methodology. ICE causes a node known as an initiation to send a transport address to another node referred to as a responder and asks the responder to send communication to an IPv6 address. ICE makes the fundamental assumption that clients (node s) exist in a network of segmented connectivity. This segmentation is the result of a number of addressing realms in which a client can simultaneously be connected. The term “realms” is used here in the broadest sense. A realm is defined purely by connectivity. Two clients are in the same realm if, when they exchange the addresses each has in that realm, they are able to send packets to each other. This includes IPv6 and IPv4 realms, which actually use different address spaces, in addition to private networks connected to the public Internet through NAT. The key assumption in ICE is that a client cannot know, a priori, which address realms it shares with any peer it may wish to communicate with. Therefore, in order to communicate, the client has to try connecting to addresses in all of the realms.
The basic flow of operation for ICE is shown in
In the example depicted in
At step 22, the initiator I sends an initiate message to the responder R. Standard signaling protocol specific mechanisms may be used to enable the signaling messages to traverse any intervening NATs between the initiator I and the responder R. At step 23, the responder R follows a similar process as the initiator followed; it obtains addresses from the NAT discovery servers N it places all of them into an accept message at step 24. Once the responder R receives the initiate message, it has a set of potential addresses it can use to communicate with the initiator I. The initiator I may be running a STUN server at each address. At step 25, the responder R performs connectivity checks, e.g., by sending a STUN request to each address, in parallel. When the initiator I receives these, it sends a STUN response as indicated at step 26. If the responder R receives the STUN response, it knows that it can reach its peer at that address. It can then begin to send media to that address at step 27. As additional STUN responses arrive, the responder R will learn about additional transport addresses which work. If one of those has a higher priority than the one currently in use, it starts sending media to that one instead. No additional control messages (i.e., SIP signaling) occur for this change.
The STUN messages described above happen while the accept message is being sent to the intitiator I. Once the intitiator I receives the accept message, it too will have a set of potential addresses with which it can communicate to the responder. The initiator I follows exactly the same STUN check process described above at step 27 and can begin sending media at step 28 to the responder R once it receives a STUN response. Furthermore, when a either the initiator I or responder R receives a STUN request, it takes note of the source IP address and port of that request and compares that transport address to the existing set of potential addresses. If the transport address is not amongst the set of potential addresses, it gets added as another potential address. The incoming STUN message provides the client with enough context to associate that transport address with priority, just as if it had been sent in an initiate or accept message. As such, the client (initiator or responder) begins sending STUN messages to it as well, and if those succeed, the address can be used if it has a higher priority.
Those of skill in the art will be familiar with the ICE protocol and various ways of implementing it. For example, ICE is described in detail by J. Rosenberg in “Interactive Connectivity Establishment (ICE): A Methodology for Network Address Translator (NAT) Traversal for Multimedia Session Establishment Protocols” a copy of which can be downloaded from the internet at http://tools.ietforg/wg/mmusic/draft-ietf-mmusic-ice/draft-ietf-mmusic-ice-03.txt, and which is incorporated herein by reference.
Although ICE is a recognized and implemented methodology, there is currently no way for ICE to send information about NAT type to facilitate the prior art port prediction (e.g., as set forth in US 2004/0139228). One would have to add another field for the methodology to handle this information and implement port prediction. This would add extra processes to both ends, and also exposing NAT types to other nodes could become a security concern. Moreover, adding a new field may break compatibility with existing systems that support standard ICE.
Thus, there is a need in the art, for an improved method for peer-to-peer communication traversing symmetric network address translators and a system for implementing such a method.
To overcome the above disadvantages, embodiments of the invention are directed to systems and methods for peer-to-peer communication over a network between a first node behind a first network address translator (NAT) and a second node behind a second NAT, despite the first NAT and the second NAT intervening between the first and second nodes. The first NAT is a Symmetric NAT. A port prediction is performed wherein the first node constructs a list of predicted transport addresses on the first NAT. A message containing the list of predicted transport addresses is sent from the first node to the second node. A connectivity check is performed with the second node using the predicted transport addresses.
The teachings of the present invention can be readily understood by considering the following detailed description in conjunction with the accompanying drawings, in which:
Although the following detailed description contains many specific details for the purposes of illustration, anyone of ordinary skill in the art will appreciate that many variations and alterations to the following details are within the scope of the invention. Accordingly, the exemplary embodiments of the invention described below are set forth without any loss of generality to, and without imposing limitations upon, the claimed invention.
Terminology
As used herein, the following terms have the meanings shown in Table I below.
Acronyms
As used herein, the following acronyms have the meanings shown in Table II below.
Embodiments of the invention address issues with Symmetric NAT traversal, while improving on security issues associated with the prior art and greatly simplifying the overall operation for traversing Symmetric NAT. In embodiments of the present invention, nodes behind NATs exchange transport address information instead of information about the NATs. Exchanging transport addresses instead of NAT information conforms well to ICE (Interactive Connectivity Exchange) methodology, and considerably improves overall NAT traversal operations. Embodiments of the present invention derive to combine in novelty the two methodologies, ICE and analytical port prediction methods, such as those described in the Internet Engineering Task Force (IETF) draft entitled “Symmetric NAT Traversal using STUN”, which is incorporated herein by reference.
The embodiment illustrated below with
As shown in
The nodes 102, 104 can be, e.g., server hosts such as audio/video (A/V) chat, multimedia streaming devices, file sharing nodes, online gaming modules etc. Each node 102, 104 may be a general purpose computer that becomes a special purpose computer when running instructions, such as instructions for implementing the steps of the method of
A method of NAT traversal according to embodiments of the present invention may be understood by simultaneously referring to the block diagram of
By way of example, the first node 102 now wishes to establish a peer-to-peer connection to the second node 104. The first node 102 allocates a local port 107 for the new peer-to-peer session. Then the first node 102 obtains an external port 112 by sending a binding request 118 from the local port 107 to the STUN server 101. Since the first node 102 knows that the first NAT 103 is present and is of type Symmetric, it performs port prediction at step 210 and constructs a list of transport addresses 107, 112, 113 and 114, and puts the list into a new INVITE message. Note that unlike prior art port prediction methods the first node 102 sends no information about the first NAT 103 and it is the first node 102 not the second node 104 that performs the port prediction. In addition, sending INVITE messages containing transport addresses is perfectly compatible with the existing ICE methodology.
At step 212, the first node 102 sends the INVITE message from a local port 106 with the list of transport addresses to a SIP proxy server 100 through the already established path 116. The SIP proxy server 100 finds in the message that the final destination is the second node 104 and forwards the INVITE message through the already establish path 117, and port 111 and finally the message reaches the second node 104 on local port 108. On reception of the INVITE, the second node 104 allocates a local port 109 for the future peer-to-peer session, and then the second node 104 obtains an external port 115 by sending a binding request 119 from the local port 109 to the STUN server 101.
Since the second node 104 knows that the second NAT 105 is not Symmetric, it puts the local port 109 and the external port 115 in a new provisional response message and sends it back to the first node 102 at step 214 via the SIP proxy server 100 through the same path 117, 116. The transmission of the provisional response terminates the transport exchange phase and starts connectivity check phase. Both nodes 102 and 104 start sending STUN packets from their local ports 107, 109 to check connectivity to the transport addresses obtained from the other node at steps 216, 218. When the first node 102 sends a STUN packet 120, the first NAT 103 allocates a new external port 113, and then the packet 120 reaches the external port 115 on the second NAT 105. The first few packets could be discarded at the external port 115 because the second NAT 105 is a port restricted cone NAT and the second node 104 might not yet have sent a packet from the local port 109 to the external port 113 on the first NAT 103. The second node 104 also sends STUN packets 121, 122, 123 to the obtained transport addresses 112, 113 and 114. The packet 121 reached at the port 112 is discarded because the first NAT 103 is a Symmetric NAT and the port 112 is exclusively allocated for the session to the STUN server 101. The STUN packet 123 reached at 114 is also discarded because there is no such external port allocated by the first NAT 103. The STUN packet 122 reached at 113 is forwarded by the first NAT 103 to the local port 107. The first node 102 then sends a response to the second node 104 and the second node 104 finds it has connectivity to the port 113 on the reception of the response. The STUN packet sent from the local port 107 on the first node 102 to the external port 115 on the second NAT 105 is eventually received at the local port 109 of second node 104. The second node 104 then sends a response back to the first node 102.
Upon reception of the response message, at step 220 the first node 102 sends an UPDATE message to the second node 104 via the SIP proxy server 100 to tell the second node 104 that the first node 102 found connectivity to the external port 115. This triggers the second node 104 to send a final response message to the first node 102 at step 222 to finalize the connection establishment process.
Instead of putting a NAT type in the message and having the second node 104 to make a prediction, the first node 102 makes a prediction and puts the predicted external ports 113, 114 along with the external port 112 obtained from STUN server 101, in the new INVITE message. Thus, the first node 102 provides no information about the first NAT 103 to the second node 104. Such use of ICE method completely eliminates complicated NAT combination logic for “break-out” packets as done in the prior art (US 2004/0139228). Instead, embodiments of the present invention can achieve the same result by performing a connectivity check that is essentially equivalent to the “break-out packet”. Thus, embodiments of the invention allow a system that already uses ICE methodology to add Symmetric NAT traversal capability by simply adding the predicted transport addresses to the connectivity check list.
As described above, the first node 102, i.e., the node attempting to initiate communication with the second node 104 performs a port prediction and puts the predicted ports in the INVITE message. There are a number of techniques of performing the port prediction. For example, port prediction may be implemented using a port allocation rule discovery process using the following test. The first node 102 sends a STUN binding request to the STUN server 101 without any flags set in the CHANGE-REQUEST attribute and without the RESPONSE-ADDRESS attribute. This causes the STUN server 101 to send responses back to the address and port that the request came from. This test is applied to different combinations of IP addresses and ports in order to figure out the port allocation characteristics of the NAT 103. The STUN server 101 uses two different IP addresses, Ca and Da and two different ports CP and DP as shown in Table III below.
As can be seen from Table III, the test is performed four times (e.g., from TRY-1 to TRY-4) per local port in this example. All the tests must be done from the same local port. The first node 102 obtains four mapped addresses from the responses. These four mapped addresses are analyzed to determine the port allocation rule and delta-P value and to evaluation consistency. To look for consistency, the process can be performed multiple times, preferably using a different local port that does not have a NAT binding associated with it. The port allocation rule can be determined by looking at the port numbers obtained from the mapped addresses. If all port numbers are incremented for successive destinations having different port numbers, the port allocation rule is said to be “port sensitive”. If the port increment size from successive destinations having the same IP address (e.g., from TRY-1 to TRY-2 and from TRY-3 to TRY-4) is always zero, but the incremental size from successive destinations having different IP addresses (e.g., TRY-2 to TRY-3) is not zero, the port allocation rule is said to be “address sensitive”. If all port numbers of the obtained mapped addresses are the same, the NAT 103 is a ‘Cone NAT’.
The delta-P value may be determined as follows. For address sensitive allocation, the delta-P value is equal to a port increment size between successive tries for which the destination port is different, e.g., for TRY-2 and TRY-3. The process may be repeated from another local port as shown in Table IV. In this example, TRY-1 through TRY-4 are as in TABLE III and TRY-5-TRY 8 continue the pattern destination IP addresses and port numbers of Table III.
Note that from Table IV it can be seen that where the destination IP address is the same for successive tries, the port numbers in the corresponding mapped addresses are the same. From this it can be determined that the port allocation rule is “address sensitive”. Furthermore it can be seen that the value of delta-P is equal to the port increment between TRY-2 and TRY-3 and is also equal to the port increment sizes between TRY-4 and TRY-5 and between TRY-6 and TRY-7.
For port sensitive allocation, the value of delta-P is the difference between adjoining port numbers of mapped addresses obtained from testing TRY-[N+1] and TRY-[N]. In situations where the first node 102 cannot find consistency in the port increment size for delta p determination, the application include an algorithm to determine the delta p value based on statistical observation, or to decide to give up obtaining a valid delta p.
If the second NAT 105 is not symmetric, it is sufficient to perform port prediction, e.g., as part of the NAT discovery step 202 for the first node 102. In the case where the second NAT 105 is also a Symmetric NAT, the second node 104 may perform similar port prediction as part of its NAT discovery phase 204.
While the above is a complete description of the preferred embodiment of the present invention, it is possible to use various alternatives, modifications and equivalents. Therefore, the scope of the present invention should be determined not with reference to the above description but should, instead, be determined with reference to the appended claims, along with their full scope of equivalents. Any feature described herein, whether preferred or not, may be combined with any other feature described herein, whether preferred or not. In the claims that follow, the indefinite article “A”, or “An” refers to a quantity of one or more of the item following the article, except where expressly stated otherwise. The appended claims are not to be interpreted as including means-plus-function limitations, unless such a limitation is explicitly recited in a given claim using the phrase “means for.”
Number | Name | Date | Kind |
---|---|---|---|
4764928 | Akerberg | Aug 1988 | A |
4787051 | Olson | Nov 1988 | A |
4843568 | Krueger | Jun 1989 | A |
5128671 | Thomas, Jr. | Jul 1992 | A |
5528265 | Harrison | Jun 1996 | A |
5544325 | Denny et al. | Aug 1996 | A |
5596720 | Hamada et al. | Jan 1997 | A |
5630184 | Roper et al. | May 1997 | A |
5636216 | Fox et al. | Jun 1997 | A |
5701427 | Lathrop | Dec 1997 | A |
5768382 | Schneier et al. | Jun 1998 | A |
5768531 | Lin | Jun 1998 | A |
5793763 | Mayes et al. | Aug 1998 | A |
5809016 | Kreitzer et al. | Sep 1998 | A |
5812531 | Cheung et al. | Sep 1998 | A |
5835726 | Shwed et al. | Nov 1998 | A |
5856972 | Riley et al. | Jan 1999 | A |
5898679 | Brederveld et al. | Apr 1999 | A |
5956485 | Perlman | Sep 1999 | A |
6012096 | Link et al. | Jan 2000 | A |
6058431 | Srisuresh et al. | May 2000 | A |
6128623 | Mattis et al. | Oct 2000 | A |
6128624 | Papierniak et al. | Oct 2000 | A |
6128627 | Mattis et al. | Oct 2000 | A |
6128664 | Yanagidate et al. | Oct 2000 | A |
6151584 | Papierniak et al. | Nov 2000 | A |
6151601 | Papierniak et al. | Nov 2000 | A |
6152824 | Rothschild et al. | Nov 2000 | A |
6157368 | Fager | Dec 2000 | A |
6208649 | Kloth | Mar 2001 | B1 |
6209003 | Mattis et al. | Mar 2001 | B1 |
6212565 | Gupta | Apr 2001 | B1 |
6212633 | Levy et al. | Apr 2001 | B1 |
6289358 | Mattis et al. | Sep 2001 | B1 |
6292880 | Mattis et al. | Sep 2001 | B1 |
6327630 | Carroll et al. | Dec 2001 | B1 |
6333931 | LaPier et al. | Dec 2001 | B1 |
6349210 | Li | Feb 2002 | B1 |
6353891 | Borella et al. | Mar 2002 | B1 |
6375572 | Masuyama | Apr 2002 | B1 |
6389462 | Cohen et al. | May 2002 | B1 |
6393488 | Araujo | May 2002 | B1 |
6405104 | Dougherty | Jun 2002 | B1 |
6421347 | Borgstahl et al. | Jul 2002 | B1 |
6487583 | Harvey et al. | Nov 2002 | B1 |
6487600 | Lynch | Nov 2002 | B1 |
6535511 | Rao | Mar 2003 | B1 |
6549786 | Cheung et al. | Apr 2003 | B2 |
6553515 | Gross et al. | Apr 2003 | B1 |
6581108 | Denison et al. | Jun 2003 | B1 |
6590865 | Ibaraki et al. | Jul 2003 | B1 |
6616531 | Mullins | Sep 2003 | B1 |
6618757 | Babbitt et al. | Sep 2003 | B1 |
6636898 | Ludovici et al. | Oct 2003 | B1 |
6640241 | Ozzie et al. | Oct 2003 | B1 |
6641481 | Mai et al. | Nov 2003 | B1 |
6661799 | Molitor | Dec 2003 | B1 |
6667972 | Foltan et al. | Dec 2003 | B1 |
6668283 | Sitaraman et al. | Dec 2003 | B1 |
6701344 | Holt et al. | Mar 2004 | B1 |
6704574 | Lin | Mar 2004 | B2 |
6712697 | Acres | Mar 2004 | B2 |
6772219 | Shobatake | Aug 2004 | B1 |
6779017 | Lamberton et al. | Aug 2004 | B1 |
6779035 | Gbadegesin | Aug 2004 | B1 |
6789126 | Saulpaugh et al. | Sep 2004 | B1 |
6799255 | Blumenau et al. | Sep 2004 | B1 |
6807575 | Emaru et al. | Oct 2004 | B1 |
6816703 | Wood et al. | Nov 2004 | B1 |
6829634 | Holt et al. | Dec 2004 | B1 |
6848997 | Hashimoto et al. | Feb 2005 | B1 |
6891801 | Herzog | May 2005 | B1 |
6899628 | Leen et al. | May 2005 | B2 |
6920501 | Chu et al. | Jul 2005 | B2 |
6978294 | Adams et al. | Dec 2005 | B1 |
7016942 | Odom | Mar 2006 | B1 |
7017138 | Zirojevic et al. | Mar 2006 | B2 |
7035911 | Lowery et al. | Apr 2006 | B2 |
7043641 | Martinek et al. | May 2006 | B1 |
7065579 | Traversat et al. | Jun 2006 | B2 |
7082316 | Eiden et al. | Jul 2006 | B2 |
7096006 | Lai et al. | Aug 2006 | B2 |
7107348 | Shimada et al. | Sep 2006 | B2 |
7120429 | Minear et al. | Oct 2006 | B2 |
7123608 | Scott et al. | Oct 2006 | B1 |
7127613 | Pabla et al. | Oct 2006 | B2 |
7130921 | Goodman et al. | Oct 2006 | B2 |
7133368 | Zhang et al. | Nov 2006 | B2 |
7134961 | Hora | Nov 2006 | B2 |
7155515 | Brown et al. | Dec 2006 | B1 |
7155518 | Forslow | Dec 2006 | B2 |
7168089 | Nguyen et al. | Jan 2007 | B2 |
7174382 | Ramanathan et al. | Feb 2007 | B2 |
7177950 | Narayan et al. | Feb 2007 | B2 |
7177951 | Dykeman et al. | Feb 2007 | B1 |
7194654 | Wray et al. | Mar 2007 | B2 |
7197565 | Abdelaziz et al. | Mar 2007 | B2 |
7203841 | Jackson et al. | Apr 2007 | B2 |
7216359 | Katz et al. | May 2007 | B2 |
7240093 | Danieli et al. | Jul 2007 | B1 |
7243141 | Harris | Jul 2007 | B2 |
7254709 | Richard | Aug 2007 | B1 |
7263070 | Delker et al. | Aug 2007 | B1 |
7272636 | Pabla | Sep 2007 | B2 |
7321928 | Feltin et al. | Jan 2008 | B2 |
7340500 | Traversat et al. | Mar 2008 | B2 |
7346015 | Shipman | Mar 2008 | B2 |
7392375 | Bartram et al. | Jun 2008 | B2 |
7398388 | Xu et al. | Jul 2008 | B2 |
7407434 | Thomas et al. | Aug 2008 | B2 |
7429215 | Rozkin et al. | Sep 2008 | B2 |
7451490 | Pirich et al. | Nov 2008 | B2 |
7457279 | Scott et al. | Nov 2008 | B1 |
7533172 | Traversat et al. | May 2009 | B2 |
7738468 | Standridge et al. | Jun 2010 | B2 |
7803052 | Multerer et al. | Sep 2010 | B2 |
20010005368 | Rune | Jun 2001 | A1 |
20010017856 | Asokan et al. | Aug 2001 | A1 |
20010021188 | Fujimori et al. | Sep 2001 | A1 |
20010044339 | Cordero et al. | Nov 2001 | A1 |
20010046213 | Sakoda | Nov 2001 | A1 |
20020002074 | White et al. | Jan 2002 | A1 |
20020006114 | Bjelland et al. | Jan 2002 | A1 |
20020013838 | Kushida et al. | Jan 2002 | A1 |
20020016826 | Johansson et al. | Feb 2002 | A1 |
20020035604 | Cohen et al. | Mar 2002 | A1 |
20020055989 | Stringer-Calvert et al. | May 2002 | A1 |
20020075844 | Hagen | Jun 2002 | A1 |
20020085097 | Colmenarez et al. | Jul 2002 | A1 |
20020097732 | Worster et al. | Jul 2002 | A1 |
20020107786 | Lehmann-Haupt et al. | Aug 2002 | A1 |
20020107935 | Lowery et al. | Aug 2002 | A1 |
20020119821 | Sen et al. | Aug 2002 | A1 |
20020138471 | Dutta et al. | Sep 2002 | A1 |
20020143855 | Traversat et al. | Oct 2002 | A1 |
20020147810 | Traversat et al. | Oct 2002 | A1 |
20020161821 | Narayan et al. | Oct 2002 | A1 |
20020183004 | Fulton et al. | Dec 2002 | A1 |
20020184310 | Traversat et al. | Dec 2002 | A1 |
20020184311 | Traversat et al. | Dec 2002 | A1 |
20030027634 | Matthews, III | Feb 2003 | A1 |
20030028585 | Yeager et al. | Feb 2003 | A1 |
20030045359 | Leen et al. | Mar 2003 | A1 |
20030046292 | Subramanian et al. | Mar 2003 | A1 |
20030051052 | Shteyn et al. | Mar 2003 | A1 |
20030055892 | Huitema et al. | Mar 2003 | A1 |
20030055978 | Collins | Mar 2003 | A1 |
20030079003 | Burr | Apr 2003 | A1 |
20030084282 | Taruguchi | May 2003 | A1 |
20030097408 | Kageyama et al. | May 2003 | A1 |
20030104829 | Alzoubi et al. | Jun 2003 | A1 |
20030115258 | Baumeister et al. | Jun 2003 | A1 |
20030126229 | Kantor et al. | Jul 2003 | A1 |
20030126245 | Feltin et al. | Jul 2003 | A1 |
20030135625 | Fontes et al. | Jul 2003 | A1 |
20030152034 | Zhang et al. | Aug 2003 | A1 |
20030158961 | Nomura et al. | Aug 2003 | A1 |
20030162556 | Libes | Aug 2003 | A1 |
20030177187 | Levine et al. | Sep 2003 | A1 |
20030182421 | Faybishenko et al. | Sep 2003 | A1 |
20030182428 | Li et al. | Sep 2003 | A1 |
20030191828 | Ramanathan et al. | Oct 2003 | A1 |
20030217096 | McKelvie et al. | Nov 2003 | A1 |
20030217135 | Chatani et al. | Nov 2003 | A1 |
20030227939 | Yukie et al. | Dec 2003 | A1 |
20030229779 | Morais et al. | Dec 2003 | A1 |
20030229789 | Morais et al. | Dec 2003 | A1 |
20030233281 | Takeuchi et al. | Dec 2003 | A1 |
20040007618 | Oram et al. | Jan 2004 | A1 |
20040015548 | Lee | Jan 2004 | A1 |
20040018839 | Andric et al. | Jan 2004 | A1 |
20040024879 | Dingman et al. | Feb 2004 | A1 |
20040063497 | Gould | Apr 2004 | A1 |
20040085947 | Ekberg et al. | May 2004 | A1 |
20040087369 | Tanaka | May 2004 | A1 |
20040088369 | Yeager et al. | May 2004 | A1 |
20040103179 | Damm et al. | May 2004 | A1 |
20040110563 | Tanaka | Jun 2004 | A1 |
20040133631 | Hagen et al. | Jul 2004 | A1 |
20040139228 | Takeda et al. | Jul 2004 | A1 |
20040162871 | Pabla et al. | Aug 2004 | A1 |
20040181463 | Goldthwaite et al. | Sep 2004 | A1 |
20040207880 | Thakur | Oct 2004 | A1 |
20040212589 | Hall et al. | Oct 2004 | A1 |
20040236863 | Shen et al. | Nov 2004 | A1 |
20040236945 | Risan et al. | Nov 2004 | A1 |
20040243665 | Markki et al. | Dec 2004 | A1 |
20040249891 | Khartabil et al. | Dec 2004 | A1 |
20040254977 | Zhang | Dec 2004 | A1 |
20040267876 | Kakivaya et al. | Dec 2004 | A1 |
20050007964 | Falco et al. | Jan 2005 | A1 |
20050015626 | Chasin | Jan 2005 | A1 |
20050020354 | Nguyen et al. | Jan 2005 | A1 |
20050026698 | Pirich et al. | Feb 2005 | A1 |
20050063409 | Oommen | Mar 2005 | A1 |
20050064939 | McSheffrey et al. | Mar 2005 | A1 |
20050065632 | Douglis et al. | Mar 2005 | A1 |
20050080858 | Pessach | Apr 2005 | A1 |
20050086287 | Datta | Apr 2005 | A1 |
20050086288 | Datta et al. | Apr 2005 | A1 |
20050086329 | Datta et al. | Apr 2005 | A1 |
20050086350 | Mai | Apr 2005 | A1 |
20050086369 | Mai et al. | Apr 2005 | A1 |
20050105526 | Stiemerling et al. | May 2005 | A1 |
20050141522 | Kadar et al. | Jun 2005 | A1 |
20050149481 | Hesselink et al. | Jul 2005 | A1 |
20050221858 | Hoddie | Oct 2005 | A1 |
20050250487 | Miwa | Nov 2005 | A1 |
20050251577 | Guo et al. | Nov 2005 | A1 |
20050259637 | Chu et al. | Nov 2005 | A1 |
20060063587 | Manzo | Mar 2006 | A1 |
20060067920 | Jensen | Mar 2006 | A1 |
20060068702 | Miwa | Mar 2006 | A1 |
20060075127 | Juncker et al. | Apr 2006 | A1 |
20060084504 | Chan et al. | Apr 2006 | A1 |
20060111979 | Chu | May 2006 | A1 |
20060209822 | Hamamoto | Sep 2006 | A1 |
20060218624 | Ravikumar et al. | Sep 2006 | A1 |
20060288103 | Gobara et al. | Dec 2006 | A1 |
20070058792 | Chaudhari et al. | Mar 2007 | A1 |
20070061460 | Khan et al. | Mar 2007 | A1 |
20070077981 | Hungate et al. | Apr 2007 | A1 |
20070150552 | Harris et al. | Jun 2007 | A1 |
20070165629 | Chaturvedi et al. | Jul 2007 | A1 |
20070191109 | Crowder et al. | Aug 2007 | A1 |
20070198418 | MacDonald et al. | Aug 2007 | A1 |
20070208748 | Li | Sep 2007 | A1 |
20070213124 | Walker et al. | Sep 2007 | A1 |
20070217436 | Markley et al. | Sep 2007 | A1 |
20070237153 | Slaughter et al. | Oct 2007 | A1 |
20090077245 | Smelyansky et al. | Mar 2009 | A1 |
20090111532 | Salokannel et al. | Apr 2009 | A1 |
20090138610 | Gobara et al. | May 2009 | A1 |
20090228593 | Takeda | Sep 2009 | A1 |
20090240821 | Juncker et al. | Sep 2009 | A1 |
Number | Date | Country |
---|---|---|
0 913 965 | May 1999 | EP |
1 107 508 | Jun 2001 | EP |
1 374 959 | May 2003 | EP |
2001 53901 | Feb 2001 | JP |
2002 10321 | Jan 2002 | JP |
2004 135778 | May 2004 | JP |
WO 9935799 | Jul 1999 | WO |
WO 0197485 | Dec 2001 | WO |
WO 0203217 | Jan 2002 | WO |
0211366 | Feb 2002 | WO |
WO 0223822 | Mar 2002 | WO |
03069495 | Aug 2003 | WO |
2004038541 | May 2004 | WO |
WO2004063843 | Jul 2004 | WO |
WO2005088466 | Sep 2005 | WO |
Number | Date | Country | |
---|---|---|---|
20070076729 A1 | Apr 2007 | US |