RPKI and ROA Explained: How Route Origin Authorization Protects Your IPv4 Prefixes

RPKI (Resource Public Key Infrastructure) is a security framework that lets IP address holders publish cryptographically signed statements about who is allowed to announce their address space in BGP. A ROA (Route Origin Authorization) is that signed statement — it names the prefix, the ASN authorized to originate it, and how specific the announcement may be. Together they give the world’s routers a way to reject false announcements about your prefixes before the traffic ever moves.
Table of Contents
This has stopped being optional. A growing number of major networks now perform Route Origin Validation and drop announcements that conflict with a published ROA — which means RPKI cuts both ways. A correct ROA is the single highest-leverage record you can publish to defend a prefix against the origin-forgery hijacks described in our guide to BGP hijacking. A wrong ROA is worse than none: it turns your own legitimate announcement Invalid at every enforcing network, producing an outage that looks like everything and nothing at once.
There is also a control dimension that matters for anyone leasing or acquiring address space. Only the registered holder of a prefix can create a ROA for it. A lessee cannot publish one themselves — their entire RPKI posture depends on the holder’s cooperation, which makes ROA handling a lease term to verify in writing, not a technical detail to sort out later. This article explains what RPKI and ROAs are, how validation works, how to get the settings right, the mistakes that break reachability, and exactly what to confirm about ROAs before leasing or buying IPv4 space.
What Is RPKI?
RPKI is a public key infrastructure for Internet number resources: it lets the parties who hold IP address space and ASNs prove that authorization cryptographically, so routing decisions can be based on verifiable records rather than on trust alone.
It works as a certificate hierarchy that mirrors how addresses are allocated. The Regional Internet Registries (RIPE NCC, ARIN, APNIC, LACNIC, AFRINIC) issue resource certificates to the organizations that hold address space, certifying which prefixes each holder controls. A holder can then use that certificate to sign statements about their own resources — most importantly, ROAs. Any network on the Internet can fetch these signed objects, verify the signatures against the RIR hierarchy, and trust the result because the cryptography, not the announcer’s word, guarantees it.
The essential shift RPKI introduces is worth stating plainly. As we explain in our guide to how BGP works, the base routing protocol accepts announcements on trust. RPKI adds a layer of proof on top: a way for the legitimate holder to make a machine-verifiable declaration about their space that routers everywhere can check. It does not replace BGP; it gives BGP something to validate against.
What Is a ROA?
A ROA is a cryptographically signed record stating that a specific ASN is authorized to originate a specific prefix, up to a specified maximum length. It is the workhorse object of RPKI — the thing you actually create to protect a prefix. Every ROA contains three pieces of information, and each one has a direct operational consequence:
- The prefix. The address block the authorization covers — for example, 203.0.113.0/24. The signing holder must actually hold this prefix; the RIR certificate enforces that.
- The origin ASN. The autonomous system number permitted to announce the prefix in BGP. Any announcement of this prefix originated by a different ASN becomes RPKI-Invalid.
- The maximum length (maxLength). The most specific prefix size the authorization permits. A ROA for 203.0.113.0/24 with maxLength /24 authorizes only the exact /24; set to /25, it also authorizes the two /25s inside it. This field governs which more-specific announcements are valid — and it is the setting operators most often get wrong.
One property of ROAs is the technical key that makes IP leasing work, and it is worth understanding precisely: the prefix in a ROA must be held by the party signing it, but the origin ASN named in it does not have to belong to that party. A holder can publish a ROA authorizing someone else’s ASN — a lessee’s, or a lessee’s upstream provider’s — to originate the holder’s prefix. This is exactly the mechanism that lets leased address space be announced legitimately from the lessee’s routing setup: the holder signs, but the authorization points at the announcer. Without this design, leased space could never pass origin validation. With it, a leased prefix can be as RPKI-protected as owned space — provided the holder actually publishes the right ROA.
How Route Origin Validation (ROV) Works
Route Origin Validation is the action networks take with ROAs: their routers check each BGP announcement against published ROA data and label it Valid, Invalid, or NotFound — then decide what to do with each label.
The mechanism has two halves, and both must happen for RPKI to protect anyone. First, holders create ROAs (the previous section). Second, networks deploy validators that fetch all published ROAs, verify them against the RIR hierarchy, and feed the resulting authorization data to their routers, which evaluate every announcement they receive. The three possible outcomes:
| State | Meaning | Typical treatment at an enforcing network |
|---|---|---|
| Valid | A ROA exists for the prefix, and the announcement’s origin ASN and specificity match it | Accepted normally |
| Invalid | A ROA exists, but the origin ASN is wrong or the announcement is more specific than maxLength allows | Rejected — the route is dropped |
| NotFound | No ROA covers the prefix at all | Accepted, but with no RPKI protection — the legacy default |
Two points deserve emphasis. First, Invalid is an active rejection, not a warning. At networks enforcing ROV, an Invalid announcement is discarded as if it did not exist — which is precisely how RPKI defeats a hijacker announcing your prefix from their ASN, and precisely how a misconfigured ROA silences your own legitimate route.
Second, enforcement is not universal. Publishing a ROA does not guarantee every network will reject Invalids about your space — only that networks performing ROV will. Coverage of enforcement has grown substantially and includes many of the largest carriers, but it remains partial. A ROA raises the probability that a forgery is rejected across the Internet from “rarely” toward “usually”; it does not make rejection universal. This partial-but-substantial reality is the honest frame for everything RPKI does.
What RPKI Protects Against — and What It Doesn’t
RPKI validates the origin of a route — not its path, and not everything else that can go wrong in routing. Understanding the boundary prevents both underuse and false confidence.
What ROAs and ROV reliably address: the common hijack, where an unauthorized ASN announces your prefix (or a more-specific of it) claiming to originate it. Validating networks see the origin mismatch and reject the announcement. This is the largest single category of routing incident, and origin validation is the best-deployed defense against it — which is why ROAs are worth publishing even though they are not comprehensive.
What RPKI does not do:
- It does not validate the AS path. RPKI checks who claims to originate a route, not the sequence of networks the announcement claims to pass through. A sophisticated attacker who forges an announcement ending in your legitimate origin ASN — at the end of a fabricated path — can pass origin validation. Path-authorization mechanisms (such as ASPA) exist to address this and related route-leak problems, but they are in early adoption. Independent analysis in 2026 stressed this gap directly: even with origin coverage at record levels, whole classes of routing attack — forged-origin hijacks, route leaks, and others — pass straight through origin validation.
- It does not encrypt anything. A common misconception. RPKI is an authorization framework for routing announcements; it has nothing to do with encrypting your traffic. Confidentiality comes from TLS and similar protocols, entirely separately.
- It does not replace IRR route objects or LOAs. These records serve overlapping but distinct functions. Many providers still build filters from IRR data, and Letters of Authorization remain part of how announcements get approved operationally. RPKI is one of three authorization records a prefix typically needs aligned — ROA, route object, and LOA — not a substitute for the others. We cover LOAs in a dedicated guide.
The correct posture is to publish ROAs because they defeat the common attack, while keeping IRR objects accurate, choosing upstreams that filter, and monitoring for what slips through — the layered approach detailed in the BGP hijacking prevention section.
Hosted vs Delegated RPKI
There are two ways to run RPKI: hosted, where the RIR operates the certificate authority and signs ROAs on your behalf through a web portal, and delegated, where you run your own certificate authority infrastructure. The choice is largely one of scale and control.
| Aspect | Hosted RPKI | Delegated RPKI |
|---|---|---|
| Who runs the CA | The RIR | Your organization |
| How you create ROAs | Through the RIR’s portal or API | Through your own CA software and repository |
| Operational burden | Minimal — the RIR handles keys, signing, and publication | Significant — you maintain infrastructure, keys, and uptime |
| Best for | The large majority of holders, including most businesses and lessors | Very large operators and platforms managing ROAs at scale or needing automation |
For most organizations, hosted RPKI is the right answer: it removes the need to operate certificate infrastructure while providing the full protective benefit. Delegated RPKI matters mainly to large networks and to platforms — including some IPv4 leasing operators — that manage authorizations for large numbers of prefixes and need automated create/revoke workflows, for example to authorize a lessee’s ASN quickly at lease start and revoke it cleanly at lease end. From the customer’s side, which model a lessor uses is less important than whether their ROA turnaround is fast and reliable.
Getting maxLength Right
maxLength should match the most specific prefix you actually intend to announce — no broader, no narrower. This single field causes more self-inflicted RPKI problems than any other, in both directions:
Too tight, and you break your own announcements. If your ROA for a /22 sets maxLength to /22, but you need to announce a /24 out of that block — for traffic engineering, for a specific service, or as an emergency counter-announcement to reclaim traffic during a hijack — that /24 is more specific than the ROA allows, so it evaluates as Invalid and gets rejected by enforcing networks. You have blocked yourself. This directly constrains the hijack-response tactic from our BGP hijacking guide: counter-announcing more-specifics only works if your ROA’s maxLength permits them.
Too loose, and you help hijackers. If your ROA for a /22 sets maxLength to /24 but you only ever announce the /22, you have pre-authorized any ASN named in the ROA to announce more-specific /23s and /24s — and more importantly, you have widened what counts as “Valid” for your space in ways you do not use. The security best practice is to authorize exactly the specificity you announce and nothing more, so that any more-specific announcement you did not intend stands out as Invalid rather than blending in as Valid.
The rule that avoids both failures: enumerate every prefix length you actually announce or plan to announce, and set maxLength (or create additional ROAs) to cover exactly those and no others. If you announce a /22 and occasionally a specific /24 within it, your ROA data should authorize the /22 and that /24 — deliberately, as a documented decision, not as a loose range picked to avoid thinking about it.
Common RPKI Mistakes That Break Reachability
The most damaging RPKI incidents are not hijacks — they are operators turning their own legitimate routes Invalid. Because an Invalid route is dropped at enforcing networks, these mistakes produce a distinctive and confusing symptom: partial unreachability that looks like a normal outage. Your servers are up, your local routers are announcing the prefix, one transit provider still sees the route — but another network shows it dropped, and you are reachable from some of the Internet and invisible to the rest. The usual causes:
- ROA names the old ASN after a provider or announcement change. You migrate to a new upstream or begin announcing from a different ASN, but the ROA still authorizes the previous one. Every enforcing network now rejects your legitimate announcement. This is the single most common cause of accidental Invalids, and it is especially easy to hit with leased space, where the ROA and the announcement are controlled by different parties.
- maxLength doesn’t cover an announcement. Per the previous section — a more-specific route you legitimately announce is rejected because the ROA doesn’t reach that length.
- A prefix is forgotten. You publish ROAs for most of your space but miss a block, leaving it NotFound and unprotected, or you announce a prefix no ROA covers when neighboring prefixes are covered, creating inconsistency.
- Expiry and renewal lapses. ROAs and the certificates behind them have validity periods. If a ROA expires or a certificate renewal lapses, the protection disappears and — depending on configuration — the route’s state can change, potentially becoming Invalid or falling back to NotFound. Hosted RPKI handles much of this automatically, but the responsibility to keep records current does not vanish.
- Deleting or revoking a ROA while still announcing. Removing a ROA for a prefix you are actively announcing drops it from Valid to NotFound (losing protection) or, if a conflicting ROA remains, to Invalid (losing reachability). ROA changes on production prefixes need the same change-management discipline as any other routing change.
A reassuring note that does not lessen the caution: studies in 2026 found that the large majority of RPKI-Invalid prefixes observed globally are misconfigurations rather than attacks, and that traffic to them often falls back to less-specific or non-enforcing paths, limiting the harm in some cases. But “often limited” is not “safe” — a business whose specific service is unreachable from a major carrier because of a stale ROA is experiencing a real outage, regardless of the aggregate statistics.
RPKI for Leased IPv4 Space
For leased address space, the defining fact is that only the registered holder can publish the ROA — so the lessee’s RPKI protection is entirely a function of the lease arrangement. The lessee announces the prefix (from their own or their upstream’s ASN); the holder must publish a ROA authorizing that ASN. Neither works without the other, and only one party controls each half.
This division is exactly why the ROA-can-name-any-ASN property covered earlier matters so much in practice: it is what allows a holder to authorize a lessee’s ASN legitimately. But the mechanism only helps if the holder actually uses it — correctly, promptly, and throughout the lease. That makes several things lease terms to confirm in writing before committing, not operational details to resolve afterward:
- Explicit ROA authority and commitment. Does the lease obligate the holder to publish a ROA naming your origin ASN (or your upstream’s) for the leased prefix? Ambiguity here is how a “Valid” route becomes “Invalid” on day one of onboarding.
- Turnaround SLA. How quickly will the holder create, update, or revoke ROAs — for routine changes and for emergencies? A provider change or a hijack response that waits days for a ROA update is a reachability incident in progress. Clear turnaround commitments (routine within a defined window, faster for emergencies) are the difference between a lease that supports live operations and one that only supports steady state.
- maxLength agreement. Which prefix lengths will the ROA authorize? This must match what you plan to announce, including any more-specifics for traffic engineering or hijack response — the maxLength discipline from earlier, negotiated across the lease relationship.
- Lifecycle at start, change, and end. ROA created and verified before you announce (avoiding a NotFound onboarding window); updated cleanly if your ASN or announcements change; and revoked appropriately at lease end so the space returns to the holder in a clean state. Mature leasing operations automate this lifecycle; informal arrangements often leave it undefined.
These are precisely the coordination points a structured arrangement is built to handle. A managed IPv4 leasing platform should treat ROA publication, turnaround, maxLength, and lifecycle as defined parts of the service — because on leased space, RPKI protection is not something the lessee can achieve alone, however competent their own network team. The same coordination applies at acquisition: when you buy IPv4 addresses, publishing correct ROAs under your own control should be part of completing the transfer, alongside the routing and reverse-DNS steps, so the space arrives protected rather than NotFound.
Why RPKI Stopped Being Optional
RPKI has crossed from a specialized security practice into mainstream Internet operations, and the trend line only points one way. As of mid-2026, Hurricane Electric’s adoption report put RPKI coverage at roughly 67 percent of routed prefixes carrying a signed ROA, :antCitation[]{citations=”ca11c822-fc8e-4ff5-a61c-9620cef0ac01″ injected=”space”} with IPv6 coverage running ahead of IPv4. That is up from the point, celebrated only two years earlier, when IPv4 first crossed the halfway mark — a steady climb sustained over years.
Two developments in 2026 illustrate the momentum. China’s national registry moved from negligible coverage to the large majority of the country’s routes in a matter of weeks, and analysis showed that the share of Internet traffic destined for RPKI-Valid routes has climbed well above the share of routes covered, because the largest, highest-traffic networks are disproportionately likely to both sign and enforce. The practical implication for any operator: an increasing fraction of the Internet will silently reject an Invalid announcement about your space — whether that Invalid is a hijacker’s forgery (good) or your own stale ROA (bad). Both effects grow as adoption grows.
Provider and regulatory expectations are moving in the same direction. Major transit providers increasingly enforce ROV as a default, routing-security initiatives treat ROA publication as baseline good practice, and regulators in some jurisdictions have begun nudging providers toward RPKI-backed routing security. For a business operating public IPv4 space, the question has shifted from “should we publish ROAs” to “are our ROAs correct and current” — because in an enforcing Internet, an absent ROA leaves you exposed and a wrong ROA takes you offline.
Practical Checklists
If you hold your own prefixes
- Publish ROAs for every prefix you announce — and every prefix you hold but don’t yet announce (dormant space is a hijack target).
- Set maxLength to match exactly the specificity you announce, including planned more-specifics; no broader.
- Use hosted RPKI unless you have a specific scale or automation reason for delegated.
- Keep ROAs aligned with reality after every provider change, ASN change, or new announcement.
- Monitor your prefixes’ RPKI state so you catch an accidental Invalid before your customers do.
- Treat ROA changes on production prefixes with full change-management discipline.
If you lease your prefixes
- Confirm in writing that the holder will publish a ROA naming your origin ASN for the leased prefix.
- Get the ROA create/update/revoke turnaround SLA in writing — routine and emergency.
- Agree maxLength to cover every prefix length you plan to announce.
- Verify the ROA is published and Valid before you begin announcing, to avoid a NotFound onboarding gap.
- Confirm how ROA updates are handled if you change ASN or upstream mid-lease.
- Confirm ROA revocation handling at lease end.
Practical Note from i.lease
RPKI has a quietly asymmetric quality that catches operators off guard: the same mechanism that protects a correctly configured prefix will actively disconnect a misconfigured one. Publish an accurate ROA and a large and growing share of the Internet will reject forgeries of your space automatically. Publish a wrong one — an old ASN after a provider change, a maxLength that misses your /24 — and that same share of the Internet will reject you, with a symptom that reads like a mysterious partial outage rather than a records problem. The technology does exactly what it is told, globally, which is its strength and its trap.
On leased space, this asymmetry runs straight through the lease relationship, because the person who announces the prefix and the person who can fix the ROA are different people. A lessee with a flawless network can still be Invalid across half the Internet because a ROA they cannot touch names the wrong ASN. That is why the questions worth resolving before signing are not really technical — they are about authority and speed: will the holder publish the ROA your setup needs, will they update it fast when something changes, and what happens to it at lease end? A structured arrangement answers those in writing and automates the lifecycle. An informal one leaves the lessee holding responsibility for a record only someone else can create. Whichever way you hold address space, RPKI rewards the same thing the rest of routing security does: correct records, kept current, by someone with the authority and the incentive to maintain them.
Final Thoughts
RPKI turns routing authorization from a matter of trust into a matter of proof: RIRs certify who holds which resources, holders publish signed ROAs declaring which ASN may originate each prefix and how specifically, and validating networks reject announcements that don’t match. A ROA is the highest-leverage record a prefix can carry — it is the best-deployed defense against the common origin-forgery hijack, and in an Internet where a majority of routed space is now covered and enforcement keeps spreading, publishing accurate ROAs has become baseline operational hygiene rather than advanced security.
The discipline RPKI demands is precision. Its power to reject false announcements is exactly its power to reject your own if the origin ASN is wrong or the maxLength misses your route, so the work is keeping ROAs correct and current through every change. For leased space, that work is shared: the holder alone can publish the ROA, the lessee alone announces the prefix, and protection exists only where the arrangement between them makes it exist. Understand the origin/path boundary, get maxLength right, keep the records aligned with what you actually announce, and — if you lease — put ROA authority, turnaround, and lifecycle in the agreement before the first announcement. Do that, and RPKI becomes what it was designed to be: a prefix that the world’s routers will defend, whether you own it or lease it.
Frequently Asked Questions
What does RPKI stand for?
RPKI stands for Resource Public Key Infrastructure. It is a cryptographic framework that lets IP address and ASN holders publish verifiable statements about who is authorized to announce their resources in BGP.
What is a ROA in networking?
A ROA (Route Origin Authorization) is a cryptographically signed record stating that a specific ASN is authorized to originate a specific IP prefix, up to a specified maximum length. It is the object holders create in RPKI to protect a prefix against unauthorized announcement.
Who can create a ROA?
Only the registered holder of a prefix — the party the RIR has certified as controlling that address space — can create a ROA for it. A lessee cannot publish a ROA for leased space themselves; the holder must publish it on their behalf, which is why ROA handling is a lease term to confirm in writing.
Does RPKI encrypt my traffic?
No. This is a common misconception. RPKI is an authorization framework for routing announcements — it controls who may announce your prefixes, not the confidentiality of your data. Traffic encryption comes from protocols like TLS, entirely separately from RPKI.
What is maxLength in a ROA?
maxLength is the most specific prefix size a ROA authorizes. A ROA for a /22 with maxLength /22 authorizes only the exact /22; set to /24, it also authorizes more-specific /23s and /24s. It should match exactly the specificity you announce — too tight blocks your own more-specifics, too loose widens what hijackers could announce as Valid.
What does RPKI “Invalid” mean?
An announcement is RPKI-Invalid when a ROA exists for the prefix but the announcement’s origin ASN is wrong, or it is more specific than maxLength allows. Networks enforcing Route Origin Validation reject Invalid announcements — which stops hijacks, but also takes your own route offline at those networks if the Invalid is caused by a misconfigured ROA.
Is RPKI mandatory?
It is not universally mandated, but it has become effectively expected. As of 2026 a majority of routed prefixes carry ROAs, many major carriers reject Invalid routes, and provider and regulatory expectations continue to push toward RPKI-backed routing security. In practice, publishing accurate ROAs is now baseline operational hygiene.
Can a ROA name an ASN I don’t own?
Yes — and this is essential to how leasing works. The prefix in a ROA must belong to the signing holder, but the origin ASN it authorizes does not. This lets a holder publish a ROA authorizing a lessee’s or a lessee’s upstream’s ASN to legitimately announce the holder’s prefix.
Who creates ROAs for leased IP addresses?
The registered holder (the lessor or the party they designate) creates the ROA, naming the lessee’s origin ASN. The lessee announces the prefix but cannot publish the ROA themselves. The lease should explicitly commit the holder to publishing and maintaining the correct ROA, with a defined turnaround for changes.
What happens if my ROA expires?
ROAs and their underlying certificates have validity periods. If a ROA expires or a certificate renewal lapses, the prefix loses its protection and its RPKI state can change — potentially falling back to NotFound or, if a conflicting ROA remains, becoming Invalid and being dropped by enforcing networks. Hosted RPKI automates much of the renewal, but keeping records current remains the holder’s responsibility.
Does RPKI replace an LOA?
No. RPKI ROAs and Letters of Authorization serve overlapping but distinct purposes, and many providers still use IRR route objects as well. A prefix typically needs its ROA, route object, and LOA all aligned; RPKI strengthens routing security but does not by itself replace the other authorization records.
Also Read
- What Is BGP Hijacking? How Route Hijacks Work, Famous Incidents, and How Networks Prevent Them
- What Is BGP? How Border Gateway Protocol Turns IP Addresses into Reachable Services
- How to Prevent IPv4 Hijacking During a Transfer: 10 Security Steps
- How DDoS Mitigation Works: Scrubbing, BGP Diversion, Anycast, and What Network Operators Should Prepare
相关文章

什么是 CGNAT(运营商级 NAT)?它为何会影响主机托管、游戏和入站服务?
CGNAT(Carrier-Grade NAT,运营商级网络地址转换)是一种技术,它允许互联网服务提供商让多个客户同时共享同一个公共 IPv4 地址,而不是为每位客户单独分配一个公共 IPv4 地址。 它会在服务提供商的网络内部增加第二层网络地址转换,因此数百甚至数千名用户都位于同一个公共地址之后,而外部互联网看到的只是这个共享的公共地址。 对于日常网页浏览、流媒体播放和应用程序使用来说,CGNAT 通常不会被用户察觉。问题会在外部网络需要主动连接到你时出现,例如托管服务器、进行端口转发、运行游戏服务器、接收 VoIP 或 VPN 连接,或启用远程访问。由于你不再拥有属于自己的公共地址——而是与其他陌生用户共享同一个地址——传入连接无法明确知道应该被转发到哪一个用户,因此这些服务可能无法正常工作或变得不稳定。 CGNAT 并不是程序错误或配置错误。它是针对一个结构性现实而采取的有意解决方案:全球 IPv4 地址已经不足,而互联网服务提供商仍需要在公共地址数量有限的情况下继续连接新的客户。这使 CGNAT 成为普通用户最容易接触到的一个明显迹象,说明公共 IPv4 地址是一种有限且竞争激烈的资源;同时也清楚说明了为什么运行对外服务的企业需要拥有自己的专用公共地址空间。本文将介绍什么是 CGNAT、它如何运作、具体会影响哪些功能、如何判断自己是否处于 CGNAT 环境中,以及对于无法接受这些限制的企业来说,有哪些可行的解决方案。 什么是 CGNAT CGNAT,也写作 CGN,有时也称为 Large-Scale NAT(LSN,大规模网络地址转换),是一种在运营商层面执行的网络地址转换技术,使 ISP 能够让多个客户共享同一个公共 IPv4 地址。 它延伸了家庭路由器中 NAT 的基本原理——多个私有设备共享一个地址——但会在服务提供商的网络层面再次执行一次,并同时覆盖大量客户。 这样一来,处于 CGNAT 后方的客户并不拥有一个唯一的公共地址。外部互联网所看到、并与其流量关联的地址,是与其他用户共享的,而且该地址由 ISP 控制,而不是由客户控制。对于由用户主动发起的出站连接,这通常不会造成问题。但对于任何依赖外部网络能够单独连接到该用户的服务来说,这个由服务提供商控制的共享地址正是问题的根源。 从一开始就明确区分这一点会很有帮助,因为它几乎解释了 CGNAT 会破坏的所有功能:由你主动发起的出站连接通常可以正常工作;而由其他人从外部主动尝试连接到你的入站连接,才是容易失败的部分。 从根本上来说,CGNAT 对客户端友好,却对服务器并不友好。 CGNAT 的工作原理是什么? CGNAT 的工作方式是在客户网络与公共互联网之间增加第二层地址转换,因此流量会经过两次转换:第一次发生在家庭路由器上,第二次发生在 ISP 的运营商级 NAT 设备上。 在传统网络环境中,家庭路由器会在设备的私有地址与 ISP 分配给你的单个公共地址之间执行 NAT。此时,你仍然拥有一个公共地址,而且可以通过端口转发,将外部传入连接定向到路由器后方的某台设备——这也是自托管以及许多网络服务能够正常运行的重要机制。关于私有地址与公共地址之间的关系,可以参考我们的 公共 IP 与私有 IP 指南。 CGNAT 会加入第二个转换阶段。ISP 不再直接为你的路由器分配公共地址,而是先分配一个来自共享中间地址范围的地址,然后通过运营商 NAT 设备,将大量这类客户的流量转换到一个规模更小的真实公共地址池中。因此,数据路径会变成:你的私有设备地址 Related Posts 什么是 CGNAT(运营商级 NAT)?它为何会影响主机托管、游戏和入站服务? CGNAT(Carrier-Grade NAT,运营商级网络地址转换)是一种技术,它允许互联网服务提供商让多个客户同时共享同一个公共 IPv4 地址,而不是为每位客户单独分配一个公共 IPv4 地址。 它会在服务提供商的网络内部增加第二层网络地址转换,因此数百甚至数千名用户都位于同一个公共地址之后,而外部互联网看到的只是这个共享的公共地址。对于日常网页浏览、流媒体播放和应用程序使用来说,CGNAT 通常不会被用户察觉。问题会在外部网络需要主动连接到你时出现,例如托管服务器、进行端口转发、运行游戏服务器、接收 VoIP 或 VPN 连接,或启用远程访问。由于你不再拥有属于自己的公共地址——而是与其他陌生用户共享同一个地址——传入连接无法明确知道应该被转发到哪一个用户,因此这些服务可能无法正常工作或变得不稳定。CGNAT 并不是程序错误或配置错误。它是针对一个结构性现实而采取的有意解决方案:全球 IPv4 地址已经不足,而互联网服务提供商仍需要在公共地址数量有限的情况下继续连接新的客户。这使 CGNAT 成为普通用户最容易接触到的一个明显迹象,说明公共 IPv4 地址是一种有限且竞争激烈的资源;同时也清楚说明了为什么运行对外服务的企业需要拥有自己的专用公共地址空间。本文将介绍什么是 CGNAT、它如何运作、具体会影响哪些功能、如何判断自己是否处于 什么是电信公司?电信运营商如何为英国、美国和加拿大提供网络连接支持? 电信公司(Telco Companies),也称为电信运营商(Telecommunications Companies),提供通信与网络连接服务。这些服务包括移动通信网络、宽带互联网、光纤连接、固定电话服务、企业网络连接、云连接、托管网络服务以及数据中心连接等。 对于普通消费者而言,电信公司通常被视为移动通信或宽带互联网服务提供商。对于企业来说,电信公司远不只是一个服务品牌,更是关键的基础设施合作伙伴,帮助企业连接办公室、数据中心、云平台、远程员工、客户应用程序以及各类数字化服务。 随着企业越来越依赖云平台、SaaS 应用、AI 工具、VPN、网络安全系统以及在线服务,电信公司已成为数字基础设施规划中不可或缺的重要组成部分。 电信公司是什么? 电信公司(Telco Companies)是提供电信服务的企业。这些服务让个人、设备、企业和各种系统能够跨越距离进行通信与连接。 一家电信公司可能提供以下服务: 移动通信服务 宽带互联网 光纤连接 固定电话服务 企业互联网接入 企业广域网(WAN)服务 云连接服务 数据中心连接 VPN TCP 与 UDP:IPv4 租赁和企业网络指南 TCP 和 UDP 是互联网中最重要的两种传输层协议。它们决定数据如何在设备、服务器、云平台、VPN 网关、DNS 解析器、电子邮件系统、流媒体平台以及企业应用程序之间传输。 对于企业而言,TCP 和 UDP 不仅仅是技术术语,它们会直接影响实际的基础设施性能。公网 IPv4 地址提供可从互联网访问的网络端点,而 TCP 和 UDP 则决定流量如何通过该端点进行传输。 这对于租用或购买 IPv4 地址的企业尤为重要。企业租用 IPv4 .related-post {} .related-post .post-list { text-align: left; } .related-post .post-list .item { margin: 5px; padding: 10px; } .related-post .headline { font-size: 18px !important; color: #999999 !important; } .related-post .post-list .item .post_thumb { max-height: 220px; margin: 10px 0px; padding: 0px; display: block; } .related-post .post-list .item .post_title { font-size: 16px; color: #3f3f3f; margin: 10px 0px; padding: 0px; display: block; text-decoration: none; } .related-post .post-list .item .post_excerpt { font-size: 13px; color: #3f3f3f; margin: 10px 0px; padding: 0px; display: block; text-decoration: none; } @media only screen and (min-width: 1024px) { .related-post .post-list .item { width: 30%; } } @media only screen and (min-width: 768px) and (max-width: 1023px) { .related-post .post-list .item { width: 90%; } } @media only screen and (min-width: 0px) and (max-width: 767px) { .related-post .post-list .item { width: 90%; } }

什么是电信公司?电信运营商如何为英国、美国和加拿大提供网络连接支持?
电信公司(Telco Companies),也称为电信运营商(Telecommunications Companies),提供通信与网络连接服务。这些服务包括移动通信网络、宽带互联网、光纤连接、固定电话服务、企业网络连接、云连接、托管网络服务以及数据中心连接等。 对于普通消费者而言,电信公司通常被视为移动通信或宽带互联网服务提供商。对于企业来说,电信公司远不只是一个服务品牌,更是关键的基础设施合作伙伴,帮助企业连接办公室、数据中心、云平台、远程员工、客户应用程序以及各类数字化服务。 随着企业越来越依赖云平台、SaaS 应用、AI 工具、VPN、网络安全系统以及在线服务,电信公司已成为数字基础设施规划中不可或缺的重要组成部分。 电信公司是什么? 电信公司(Telco Companies)是提供电信服务的企业。这些服务让个人、设备、企业和各种系统能够跨越距离进行通信与连接。 一家电信公司可能提供以下服务: 移动通信服务 宽带互联网 光纤连接 固定电话服务 企业互联网接入 企业广域网(WAN)服务 云连接服务 数据中心连接 VPN 服务 托管网络解决方案 互联网传输(Internet Transit) 电信批发服务 部分电信公司拥有并运营大规模的实体网络基础设施;另一些则通过批发接入、租用基础设施或与网络运营商合作来提供电信服务。 电信公司提供哪些服务? 电信公司同时为个人消费者和企业客户提供服务。 面向消费者的服务通常包括移动通信套餐、家庭宽带、光纤互联网、固定电话以及通信组合套餐。 面向企业的服务则可能包括专线互联网接入、企业光纤、专用网络、云连接、托管安全服务、数据中心连接、物联网(IoT)连接以及企业移动通信方案。 对于大型企业客户,电信公司还可提供: 多地点办公室网络连接 远程员工接入 私有云连接 SD-WAN(软件定义广域网) 灾难恢复连接 低延迟网络路由 互联网传输(Internet Transit) 网络监控 托管防火墙服务 正因如此,电信公司不仅对日常通信至关重要,也是现代企业建设先进数字基础设施的重要支柱。 电信公司 vs 互联网服务提供商 vs 网络运营商 电信公司(Telco)、互联网服务提供商(ISP)和网络运营商(Network Operator)之间可能存在重叠,但它们并不完全相同。 电信公司提供电信服务。 互联网服务提供商(ISP)提供互联网接入服务。 网络运营商负责建设、运营和管理网络基础设施。 一些大型电信公司同时承担这三种角色。它们拥有基础设施、运营网络,并向市场提供互联网、移动通信以及企业网络服务。 规模较小的服务提供商则可能专注于其中某一层。例如,互联网服务提供商(ISP)可以销售宽带服务,而无需拥有所有实体网络基础设施;网络运营商可能负责建设和运营光纤网络,并向电信公司或 ISP 提供批发网络接入;电信公司则可能结合自有网络与合作伙伴网络,为客户提供移动通信和企业服务。 对于企业而言,理解这些区别非常重要,因为服务质量不仅取决于销售该方案的品牌,还受到其底层网络、路由设计、网络覆盖范围以及技术支持体系等因素的影响。 为什么电信公司对企业至关重要 电信公司之所以重要,是因为几乎所有现代企业都依赖稳定的网络连接。 企业可能需要电信服务来支持: 办公室互联网接入 移动网络连接 远程办公 客户支持系统 云应用程序 SaaS 平台 支付系统 VPNRead more Related Posts 什么是 CGNAT(运营商级 NAT)?它为何会影响主机托管、游戏和入站服务? CGNAT(Carrier-Grade NAT,运营商级网络地址转换)是一种技术,它允许互联网服务提供商让多个客户同时共享同一个公共 IPv4 地址,而不是为每位客户单独分配一个公共 IPv4 地址。 它会在服务提供商的网络内部增加第二层网络地址转换,因此数百甚至数千名用户都位于同一个公共地址之后,而外部互联网看到的只是这个共享的公共地址。对于日常网页浏览、流媒体播放和应用程序使用来说,CGNAT 通常不会被用户察觉。问题会在外部网络需要主动连接到你时出现,例如托管服务器、进行端口转发、运行游戏服务器、接收 VoIP 或 VPN 连接,或启用远程访问。由于你不再拥有属于自己的公共地址——而是与其他陌生用户共享同一个地址——传入连接无法明确知道应该被转发到哪一个用户,因此这些服务可能无法正常工作或变得不稳定。CGNAT 并不是程序错误或配置错误。它是针对一个结构性现实而采取的有意解决方案:全球 IPv4 地址已经不足,而互联网服务提供商仍需要在公共地址数量有限的情况下继续连接新的客户。这使 CGNAT 成为普通用户最容易接触到的一个明显迹象,说明公共 IPv4 地址是一种有限且竞争激烈的资源;同时也清楚说明了为什么运行对外服务的企业需要拥有自己的专用公共地址空间。本文将介绍什么是 CGNAT、它如何运作、具体会影响哪些功能、如何判断自己是否处于 什么是电信公司?电信运营商如何为英国、美国和加拿大提供网络连接支持? 电信公司(Telco Companies),也称为电信运营商(Telecommunications Companies),提供通信与网络连接服务。这些服务包括移动通信网络、宽带互联网、光纤连接、固定电话服务、企业网络连接、云连接、托管网络服务以及数据中心连接等。 对于普通消费者而言,电信公司通常被视为移动通信或宽带互联网服务提供商。对于企业来说,电信公司远不只是一个服务品牌,更是关键的基础设施合作伙伴,帮助企业连接办公室、数据中心、云平台、远程员工、客户应用程序以及各类数字化服务。 随着企业越来越依赖云平台、SaaS 应用、AI 工具、VPN、网络安全系统以及在线服务,电信公司已成为数字基础设施规划中不可或缺的重要组成部分。 电信公司是什么? 电信公司(Telco Companies)是提供电信服务的企业。这些服务让个人、设备、企业和各种系统能够跨越距离进行通信与连接。 一家电信公司可能提供以下服务: 移动通信服务 宽带互联网 光纤连接 固定电话服务 企业互联网接入 企业广域网(WAN)服务 云连接服务 数据中心连接 VPN TCP 与 UDP:IPv4 租赁和企业网络指南 TCP 和 UDP 是互联网中最重要的两种传输层协议。它们决定数据如何在设备、服务器、云平台、VPN 网关、DNS 解析器、电子邮件系统、流媒体平台以及企业应用程序之间传输。 对于企业而言,TCP 和 UDP 不仅仅是技术术语,它们会直接影响实际的基础设施性能。公网 IPv4 地址提供可从互联网访问的网络端点,而 TCP 和 UDP 则决定流量如何通过该端点进行传输。 这对于租用或购买 IPv4 地址的企业尤为重要。企业租用 IPv4 .related-post {} .related-post .post-list { text-align: left; } .related-post .post-list .item { margin: 5px; padding: 10px; } .related-post .headline { font-size: 18px !important; color: #999999 !important; } .related-post .post-list .item .post_thumb { max-height: 220px; margin: 10px 0px; padding: 0px; display: block; } .related-post .post-list .item .post_title { font-size: 16px; color: #3f3f3f; margin: 10px 0px; padding: 0px; display: block; text-decoration: none; } .related-post .post-list .item .post_excerpt { font-size: 13px; color: #3f3f3f; margin: 10px 0px; padding: 0px; display: block; text-decoration: none; } @media only screen and (min-width: 1024px) { .related-post .post-list .item { width: 30%; } } @media only screen and (min-width: 768px) and (max-width: 1023px) { .related-post .post-list .item { width: 90%; } } @media only screen and (min-width: 0px) and (max-width: 767px) { .related-post .post-list .item { width: 90%; } }

TCP 与 UDP:IPv4 租赁和企业网络指南
TCP 和 UDP 是互联网中最重要的两种传输层协议。它们决定数据如何在设备、服务器、云平台、VPN 网关、DNS 解析器、电子邮件系统、流媒体平台以及企业应用程序之间传输。 对于企业而言,TCP 和 UDP 不仅仅是技术术语,它们会直接影响实际的基础设施性能。公网 IPv4 地址提供可从互联网访问的网络端点,而 TCP 和 UDP 则决定流量如何通过该端点进行传输。 这对于租用或购买 IPv4 地址的企业尤为重要。企业租用 IPv4 地址并不是单纯为了持有这些地址,而是为了运行网站、API、VPN 隧道、DNS 服务、电子邮件平台、SaaS 应用程序、游戏服务器、流媒体系统、安全工具以及云端工作负载。不同类型的服务决定了需要使用 TCP、UDP,还是同时使用两者。 通过 i.lease,企业可以使用 IPv4 租赁服务获取用于实际网络部署的公网 IPv4 资源。需要长期控制 IP 地址资源的企业也可以购买 IP 地址,而拥有闲置 IPv4 资源的组织则可以出售 IP 地址。 TCP和UDP是什么? TCP 和 UDP 都是传输层协议。它们位于 IP 协议之上,帮助应用程序通过网络发送和接收数据。 IP 地址用于确定流量应该发送到哪里,而 TCP 和 UDP 则决定这些流量如何进行传输。 简单来说: TCP 适用于重视可靠性和按顺序传输数据的场景。 UDP 适用于重视速度、低延迟和轻量化数据传输的场景。 企业可能会使用同一个公网 IPv4 地址来运行不同的服务,但每项服务可能依赖不同的传输协议。例如,网站可能使用 TCP,VPN 网关可能使用 UDP,DNS 解析器可能同时使用 UDP 和 TCP,而游戏服务器则可能更倾向于使用 UDP,因为对于实时游戏而言,延迟造成的影响通常比少量数据包丢失更加明显。 因此,TCPRead more Related Posts 什么是 CGNAT(运营商级 NAT)?它为何会影响主机托管、游戏和入站服务? CGNAT(Carrier-Grade NAT,运营商级网络地址转换)是一种技术,它允许互联网服务提供商让多个客户同时共享同一个公共 IPv4 地址,而不是为每位客户单独分配一个公共 IPv4 地址。 它会在服务提供商的网络内部增加第二层网络地址转换,因此数百甚至数千名用户都位于同一个公共地址之后,而外部互联网看到的只是这个共享的公共地址。对于日常网页浏览、流媒体播放和应用程序使用来说,CGNAT 通常不会被用户察觉。问题会在外部网络需要主动连接到你时出现,例如托管服务器、进行端口转发、运行游戏服务器、接收 VoIP 或 VPN 连接,或启用远程访问。由于你不再拥有属于自己的公共地址——而是与其他陌生用户共享同一个地址——传入连接无法明确知道应该被转发到哪一个用户,因此这些服务可能无法正常工作或变得不稳定。CGNAT 并不是程序错误或配置错误。它是针对一个结构性现实而采取的有意解决方案:全球 IPv4 地址已经不足,而互联网服务提供商仍需要在公共地址数量有限的情况下继续连接新的客户。这使 CGNAT 成为普通用户最容易接触到的一个明显迹象,说明公共 IPv4 地址是一种有限且竞争激烈的资源;同时也清楚说明了为什么运行对外服务的企业需要拥有自己的专用公共地址空间。本文将介绍什么是 CGNAT、它如何运作、具体会影响哪些功能、如何判断自己是否处于 什么是电信公司?电信运营商如何为英国、美国和加拿大提供网络连接支持? 电信公司(Telco Companies),也称为电信运营商(Telecommunications Companies),提供通信与网络连接服务。这些服务包括移动通信网络、宽带互联网、光纤连接、固定电话服务、企业网络连接、云连接、托管网络服务以及数据中心连接等。 对于普通消费者而言,电信公司通常被视为移动通信或宽带互联网服务提供商。对于企业来说,电信公司远不只是一个服务品牌,更是关键的基础设施合作伙伴,帮助企业连接办公室、数据中心、云平台、远程员工、客户应用程序以及各类数字化服务。 随着企业越来越依赖云平台、SaaS 应用、AI 工具、VPN、网络安全系统以及在线服务,电信公司已成为数字基础设施规划中不可或缺的重要组成部分。 电信公司是什么? 电信公司(Telco Companies)是提供电信服务的企业。这些服务让个人、设备、企业和各种系统能够跨越距离进行通信与连接。 一家电信公司可能提供以下服务: 移动通信服务 宽带互联网 光纤连接 固定电话服务 企业互联网接入 企业广域网(WAN)服务 云连接服务 数据中心连接 VPN 什么是BYOIP(自备IP地址)? 自带 IP(Bring Your Own IP,简称 BYOIP)是一种网络部署方式,允许企业将自己现有的公网 IP 地址段应用于云服务提供商、数据中心、内容分发网络(CDN)或其他基础设施平台。 企业无需使用服务提供商分配的新公网 IP 地址,而是可以使用自己已拥有或已获授权使用的 IPv4 或 IPv6 地址前缀。服务提供商会验证该组织对该地址段的使用权限,并在支持的情况下,通过其自身网络对该地址段进行路由公告(Advertise)。 BYOIP 有助于企业在迁移至云平台时保留现有的防火墙规则、白名单(Allowlists)、客户系统集成、IP 信誉(IP Reputation)、DNS 配置以及既有的网络身份。这不仅能够减少因更换 .related-post {} .related-post .post-list { text-align: left; } .related-post .post-list .item { margin: 5px; padding: 10px; } .related-post .headline { font-size: 18px !important; color: #999999 !important; } .related-post .post-list .item .post_thumb { max-height: 220px; margin: 10px 0px; padding: 0px; display: block; } .related-post .post-list .item .post_title { font-size: 16px; color: #3f3f3f; margin: 10px 0px; padding: 0px; display: block; text-decoration: none; } .related-post .post-list .item .post_excerpt { font-size: 13px; color: #3f3f3f; margin: 10px 0px; padding: 0px; display: block; text-decoration: none; } @media only screen and (min-width: 1024px) { .related-post .post-list .item { width: 30%; } } @media only screen and (min-width: 768px) and (max-width: 1023px) { .related-post .post-list .item { width: 90%; } } @media only screen and (min-width: 0px) and (max-width: 767px) { .related-post .post-list .item { width: 90%; } }