Spom Link Create May 2026

Spom Link Create May 2026

Guide: Creating a Smart Link (e.g., Spom)

Smart links are essential for musicians and marketers. They allow you to share one single URL that directs listeners to their preferred streaming platform (Spotify, Apple Music, Deezer, etc.).

1.1 What is SPoM?

SPoM is not a formal standard but rather an architectural approach where a service provider uses MPLS as the unifying data plane to deliver multiple services (L2VPN, L3VPN, EVPN, pseudowires) over a single infrastructure. In SPoM:

  • PE (Provider Edge) routers link customers to the MPLS core.
  • P (Provider) routers forward MPLS labels without inspecting IP headers.
  • Links between P and PE routers form the transport fabric.

Creating a "link" in SPoM goes beyond physical adjacency — it includes: spom link create

  • IGP adjacencies (OSPF or IS-IS)
  • LDP or RSVP-TE sessions
  • BGP sessions for VPNv4/v6
  • Traffic engineering tunnels

5. Use Cases

  • Gated Access: Granting access to a Google Doc or Zoom meeting only to token holders.
  • Discord Roles: Automatically assigning a "Verified Holder" role via a bot.
  • Allow-lists: Proving eligibility for an NFT mint without connecting a wallet to the minting site (reduces bot risk).

2.1 Physical Layer Readiness

  • Optical transceivers installed and powered.
  • Interface status up/up.
  • No layer-1 errors (CRC, alignment).

2. Prerequisites

  • Wallet Connection: User must have a Web3 wallet (e.g., MetaMask, WalletConnect) installed.
  • Asset Ownership: The wallet must hold the required ERC-20, ERC-721, or ERC-1155 token, or a specific Discord/Guild role.
  • Platform Access: Access to a credential issuance dashboard (e.g., Guild, Collab.Land, or a custom dApp).

1. Real-Time Data Synchronization

When you create a SPOM link, you eliminate batch processing delays. A change in the source system (e.g., a new customer record) is instantly reflected in the target system.

3.1 Manual CLI Creation (Legacy but Foundational)

Example on Cisco IOS-XR (PE1 to P1 link): Guide: Creating a Smart Link (e

configure terminal
interface GigabitEthernet0/0/0/0
 ipv4 address 192.168.1.0 255.255.255.254
 no shutdown
 mpls ip
 mpls ldp neighbor 10.0.0.2 targeted
exit
router ospf 100
 area 0
  interface GigabitEthernet0/0/0/0
  passive disable
!
router bgp 65001
 neighbor 10.0.0.2 remote-as 65001
 neighbor 10.0.0.2 update-source Loopback0
 address-family vpnv4 unicast
  neighbor 10.0.0.2 activate

On Juniper MX (equivalent):

set interfaces ge-0/0/0 unit 0 family inet address 192.168.1.0/31
set interfaces ge-0/0/0 unit 0 family mpls
set protocols mpls interface ge-0/0/0.0
set protocols ldp interface ge-0/0/0.0
set protocols ospf area 0 interface ge-0/0/0.0 passive
set protocols bgp group ibgp local-address 10.0.0.1
set protocols bgp group ibgp neighbor 10.0.0.2 family inet-vpn unicast

Drawbacks: Time-consuming, error-prone, no audit trail. PE (Provider Edge) routers link customers to the MPLS core

4.6 Automation Validation

If using automated link creation, run idempotent checks:

ansible -m iosxr_command -a "commands='show mpls ldp neighbor'" PE1

A successful SPoM link create must pass all above checks.


Part 2: Pre-requisites for SPoM Link Creation

Before issuing any "create" command or running an automation script, verify these prerequisites:

Go to Top