简体   繁体   中英

UPnP NAT Traversal for 3G/4G Wireless Data Connection on Android

有没有办法在Android上通过3G / 4G连接使用UPnP进行NAT遍历,如果是这样,它是否依赖于运营商?

No, for the time being thee is no way to do that, for the simple reason that the mobile carriers don't use residential-class NATs - what they have is "Carrier-Grade NATs" CGN, see here http://en.wikipedia.org/wiki/Carrier-grade_NAT , and these devices have very different port allocation and management mechanisms from the residential gateways.

See the Carrier-Grade NAT (CGN) related documents in this collection: http://www.scribd.com/collections/3292450/P2P

PS there currently is a UPnP-like protocol that is contemplated for CGNs, namely the "Port Control Protocol" (PCP), see here: http://tools.ietf.org/html/draft-ietf-pcp-base-29

Cling has Android specific classes to do UPnP and, from the looks of forum messages and their documentation, it should work. I am currently testing it on the PC but ultimately I chose it because of their Android support. I will post my test results here in a day or two.

Check Cling Core and especially Support libraries . At the most basic level you only need 4 lines of code to do port mapping.

[UPDATE] Cling documentation for Android states that it only allows binding to the Wi-Fi interfaces thus making port mapping on cellular data connection impossible (At least with Cling version 1.0.5)

Instead of trying to use uPnP (which is a security risk because it lease an unmapped port open), you might want to either use STUN to get a public ip/port and then establish a UDP connection which you can tunnel psudo-TCP through, or use a TURN server. For carrier grade NAT, if you don't want to pay for relaying, there is also this technique, which might sometime work:

https://drive.google.com/file/d/0B1IimJ20gG0SY2NvaE4wRVVMbG8/view?usp=sharing

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM