+ Do you need a STIR/SHAKEN certificate?
+ Only if you originate calls (place them onto the network). As of June 2025, originating providers must sign all calls with their own certificate — they can no longer rely on upstream providers to sign on their behalf.
+ If you only receive and terminate pre-signed calls from other carriers, you don't need a signing certificate. You'll verify incoming signatures (a software configuration, not a certificate purchase) and file your RMD as "partial implementation."
+
Why do wholesale voice vendors require an OCN?
An Operating Company Number identifies your company in the telecom numbering system. Major voice providers like Bandwidth, Telnyx, Lumen, and Peerless require it to open a wholesale account, port numbers, and assign DID blocks. Without an OCN, you're limited to reseller-tier access.
@@ -469,6 +474,8 @@ select:focus,input:focus{outline:none;border-color:#1e3a5f;box-shadow:0 0 0 2px
var needsOcn = wizard.infraNeeds.indexOf('lcr') >= 0 || wizard.infraNeeds.indexOf('own_dids') >= 0 ||
wizard.infraNeeds.indexOf('interconnect') >= 0 || wizard.infraNeeds.indexOf('stir_sign') >= 0;
document.getElementById('ocn-explain').classList.toggle('hidden', !needsOcn);
+ // Show STIR/SHAKEN info when any infra option is checked (helps decide if they need signing)
+ document.getElementById('stir-explain').classList.toggle('hidden', wizard.infraNeeds.length === 0);
});
});