Community SONiC Hardened for Production

Open Networking.
Production-Grade NOS.
Built for Scale.

A production-hardened distribution of community SONiC for enterprise data centers, AI fabrics, and telco infrastructure. Built on upstream SONiC with enterprise-grade CLI, advanced feature validation, and comprehensive testing-ready for production from day one.

Explore Features
SONiC '25
Based on Community 202505
IS-CLI
Industry Standard CLI
8+
ODM Partners Supported
Engineering-Led · Production-Proven

Built by engineers.
Proven in production.

Community SONiC hardened for production by engineers with deep, hands-on experience across tier-1 hyperscalers, telcos, and enterprise data centers worldwide. Open source at its core. Production-grade in every release.

🔬
Deep SONiC Expertise
Decade of hands-on community SONiC experience across hyperscaler, telco, and enterprise deployments.
🌐
Global Standard
Certified on 5 ODM platforms: Edgecore, Celestica, UfiSpace, Aurcore, and D-Link.
🔓
Zero Vendor Lock-in
Full source availability, open APIs, and complete community SONiC alignment with no proprietary dependencies.
🤝
Global Support SLA
Multi-timezone engineering support, on-site professional services, and rapid patch turnaround.
IS-CLI · Industry Standard CLI

Familiar CLI.
Zero retraining.

SONiC NOS ships with full IS-CLI (Industry Standard CLI) — a Cisco/Juniper-like hierarchical command mode that network engineers already know. No Python scripts, no JSON files, no learning curve.

>_

Hierarchical modal CLI

EXEC → Privileged EXEC → Global Config → Interface/Protocol sub-modes, exactly as operators expect

Q

Context-sensitive help & completion

help at any point, Tab completion, and abbreviated command recognition throughout

[]

Full running-config & startup-config

show running-config, copy running startup, write memory — familiar config persistence model

O

RBAC-integrated privilege levels

Privilege level with TACACS+ enforcement, per-command authorisation, and audit trail

! SONiC - VLAN Configuration sonic(config)# vlan 10 sonic(config-vlan-10)# name USER_SEGMENT sonic(config-vlan-10)# exit sonic(config)# interface Ethernet 0 sonic(config-if-Ethernet0)# switchport mode trunk sonic(config-if-Ethernet0)# switchport trunk allowed vlan add 10,20,30 sonic(config-if-Ethernet0)# exit sonic(config)# interface Vlan 10 sonic(config-if-Vlan10)# ip address 10.10.10.1/24 sonic(config-if-Vlan10)# no shutdown ! ? - context help available at any prompt
IS-CLI syntax identical to Cisco IOS/NX-OS - zero retraining required
! SONiC IS-CLI — eBGP Configuration sonic(config)# router bgp 65001 sonic(config-router-bgp)# bgp router-id 10.0.0.1 sonic(config-router-bgp)# neighbor 172.16.0.2 remote-as 65000 sonic(config-router-bgp)# neighbor 172.16.0.2 description UPSTREAM sonic(config-router-bgp)# address-family ipv4 unicast sonic(config-router-bgp-af)# neighbor 172.16.0.2 activate sonic(config-router-bgp-af)# network 10.10.10.0/24 sonic(config-router-bgp-af)# maximum-paths 8 sonic(config-router-bgp-af)# exit sonic# show bgp summary
BGP + EVPN all configurable via IS-CLI - no vtysh required
! SONiC IS-CLI — MLAG + Active-Active sonic(config)# mclag domain 1 sonic(config-mclag-domain-1)# source-ip 192.168.100.1 sonic(config-mclag-domain-1)# peer-ip 192.168.100.2 sonic(config-mclag-domain-1)# peer-link PortChannel 10 sonic(config-mclag-domain-1)# keepalive-interval 1 sonic# show mclag brief ! Domain: 1 | Role: active | Session: up | Keepalive: alive
MLAG active-active - replaces VRRP with zero standby bandwidth waste
! SONiC IS-CLI — SNMPv3 authPriv sonic(config)# snmp-server group NMS_GRP v3 priv sonic(config)# snmp-server host 192.168.1.200 traps version 3 priv nms_user sonic# show snmp-server user nms_user | NMS_GRP | v3 | SHA | AES | ✓
SNMPv3 authPriv configured in IS-CLI - no JSON editing
Platform Features

What Community SONiC Delivers

A comprehensive, production-hardened feature set spanning L2, L3, overlay, security, and management, with every release validated through IntelliSuite.

L2 Switching

L2 Switching

Full 802.1Q VLAN switching with IS-CLI configuration, supporting enterprise campus and data center access designs from day one.

  • 802.1Q VLAN create, delete, named VLANs, and bulk range support
  • Trunk and access port modes with dynamic VLAN add/remove
  • MAC address table
  • LACP (802.3ad) and min-links
  • PVSTP
  • LLDP neighbor discovery and topology verification

L2 Switching — show vlan brief

# IS-CLI — Real-time VLAN status
sonic# show vlan brief
VLAN ID  Name           Ports           Tagging
10        USER_SEGMENT   Po11,Po12,Eth8  Tagged
20        STORAGE        Po11,Po12       Tagged
30        MGMT_OOB       Eth56           Untagged
99        NATIVE_VLAN    —               Native
802.1QLACPMSTPLLDP
4094
Max VLANs
128K
MAC entries
LACP members
L3 Routing & High Availability

L3 Routing & High Availability

Enterprise-grade routing stack with full IPv4 and IPv6 support, eBGP, iBGP, OSPF, ECMP, and inter-VLAN routing, combined with high availability features for active-active operations and resilient failover in production fabrics.

  • BGP-4, eBGP, iBGP with route reflector support
  • OSPFv2 and OSPFv3
  • ECMP up to 64 paths
  • Dual-stack IPv6
  • MLAG (MC-LAG) — active-active with ICCP over peer-link

BGP ECMP — show bgp summary

# IS-CLI BGP show commands
sonic# show bgp summary
Neighbor        AS     State    Pfx
172.16.0.2      65000  Established  128
172.16.1.2      65000  Established  128
sonic# show ip route 0.0.0.0/0
B> 0.0.0.0/0 [20/0] via 172.16.0.2
              via 172.16.1.2  ECMP
BGP-4OSPFv3ECMP 64MLAG
64
ECMP paths
1M
Route scale
<50ms
BFD failover
Overlay / VXLAN

Overlay / VXLAN

Full VXLAN data plane with BGP-EVPN control plane for modern multi-tenant data center fabrics.

  • VXLAN L2/L3 — symmetric IRB, asymmetric IRB
  • BGP-EVPN — Type 2, 3, 5 routes; VNI mapping
  • ARP/ND suppression — reduces broadcast domain flooding

VXLAN BGP-EVPN — VNI mapping

# IS-CLI VXLAN/EVPN configuration
sonic(config)# vxlan vtep VTEP1
sonic(conf-vtep-VTEP1)# source-ip 10.0.0.1
sonic(conf-vtep-VTEP1)# map vlan 10 vni 10010
sonic(conf-vtep-VTEP1)# exit
sonic# show vxlan vlanvnimap
Vlan10  ↔ VNI 10010  active
Vlan20  ↔ VNI 10020  active
VXLANBGP-EVPNIRBMulti-VRF
16K
VNIs
64
VRFs
Type2/3/5
EVPN routes
Security

Security

Platform hardening, ACL support, SNMPv3, AAA, and operational security controls for enterprise and service-provider environments.

  • TACACS+ / RADIUS — authentication, authorisation, accounting
  • SNMPv3 authPriv (SHA-256 + AES-256)
  • ACL — L2/L3/L4 ingress/egress on all interfaces
  • Control-plane policing (CoPP) — protect CPU from DDoS
  • Management VRF — isolate control traffic from data plane

Security posture check

sonic# show aaa
Authentication : tacacs+ local
Authorization  : tacacs+ local
Accounting     : start-stop tacacs+
sonic# show tacacs-server host
192.168.1.100  Port:49  Status:Reachable
sonic# show snmp-server user
nms_user  NMS_GRP  v3  SHA  AES  ✓
TACACS+SNMPv3ACLCoPP
Management

Management

IS-CLI, APIs, telemetry, diagnostics, configuration workflows, and operational tooling built for production operations.

  • IS-CLI — full hierarchical modal CLI (primary interface)
  • REST API — OpenAPI-documented northbound interface
  • gNMI / OpenConfig — streaming telemetry and config
  • YANG — structured config management
  • ZTP — zero-touch provisioning with DHCP/HTTP bootstrap
  • Syslog, SNMP traps, and gRPC event streaming
  • Ansible, Terraform, and Netbox integration
  • Management interfaces available

Management interfaces available

IS-CLI (Primary)REST APIgNMI/OpenConfig YANGZTP
# gNMI subscribe — streaming telemetry
gnmi_cli -address 192.168.1.1:8080 \
  -query "/openconfig-interfaces/interfaces" \
  -streaming_type SAMPLE -polling_interval 1s
Streaming: eth0/1 counters @ 1s interval...
Enterprise · Data center · AI roadmap

Quarterly releases & advanced capabilities

PalC SONiC NOS ships quarterly releases aligned with community SONiC, organised around enterprise-grade networking today, advanced data center fabric and RoCE, and a forward roadmap for AI-scale platforms.

Available now

Enterprise Networking

Comprehensive enterprise-grade features in SONiC, enabling secure, scalable, and automated network operations for modern business environments.

Data center

Data Center Fabric & RoCE

Advanced data center capabilities with IP fabric, seamless L2 extension, and RoCE support for high-performance, low-latency workloads.

Future

AI Networking

Designed for next-generation infrastructure with support for 400G/800G platforms, powering AI and high-performance computing networks.

ODM Hardware Partners

Runs on the hardware you choose

Community SONiC certified across leading ODM platforms spanning Broadcom Trident, Tomahawk, and Tofino ASICs — from 1G access to 400G spine.

Edgecore
Open networking switches and data center platforms
10G100G
UfiSpace
Carrier-grade and data center switching
1G10G100G
Aurcore
Open networking solutions with SONiC-optimised hardware platforms
25G100G400G
D-Link
Enterprise switching hardware with open NOS compatibility
25G100G
IntelliSuite · SONiC Validation Platform

Validate before you deploy. Know before you break.

IntelliSuite is a comprehensive SONiC validation and testing platform, covering feature testing, deployment validation, regression, and live network verification.

IntelliSuite™ — Made in India
The only SONiC-native
validation platform built for production

From Day 0 pre-deployment simulation to Day N continuous regression, IntelliSuite covers the complete SONiC validation lifecycle with 700+ test cases, IS-CLI throughout, and full integration with community SONiC.

700+Test cases
14Feature domains
CI/CDPipeline ready

Feature Validation

60+ sub-tests per feature — Functional, Negative, Boundary, Traffic

Deployment Testing

Full system integration — event triggers, failover, 72h soak

Regression Engine

Auto-regression on every NOS build — catches regressions before release

Live Reporting

Per-device, per-feature test reports with go/no-go deployment decision

Phase 1 — Feature Testing

Each feature tested in full isolation before integration. Covers VLAN, MLAG, LACP, BGP, SNMP, AAA, MTU, LLDP, trunking, hash, and more.

FunctionalNegativeBoundaryTrafficInteraction

Phase 2 — Deployment Testing

All features integrated and tested together. Event-driven scenarios: node failure, peer-link loss, LACP member fail, split-brain, 100G line rate, and 72-hour soak.

Failover <200ms100G throughput72h soak

Continuous Regression

IntelliSuite integrates with GitLab/GitHub CI pipelines — every NOS build triggers automated regression across all platforms and feature domains automatically.

GitLab CIJenkinsGitHub Actions
Live SSH Console
Try real IS-CLI access by
submitting details

This console connects directly to your staging SONiC vSwitch over SSH. Configure the switch IP after deployment and get a full interactive terminal in the browser.

  • Stage your SONiC vSwitch on any server
  • Configure connection details securely
  • Connect to a real IS-CLI terminal session
  • Validate workflows before production rollout
Configure Switch Connection
Connection Architecture
Browser
xterm.js
Proxy Server
server.py : 8765
SONiC vSwitch
IS-CLI
  • Stage your SONiC vSwitch on any server
  • Deploy proxy server (server.py) on Linux host
  • Click Configure - enter switch IP + credentials
  • Connect - get full IS-CLI terminal below
Core-1 Core-2 Agg-1
No switch selected Disconnected
ConnectClear<>
🔌

Not Connected

Configure your SONiC vSwitch connection, then click
Connect to open a live IS-CLI terminal session.

Connect to Switch Configure Switch
Node: - Host: - Protocol: SSH/IS-CLI Encoding: UTF-8 xterm.js 5.x - SONiC NOS Console
Open · Scalable · Production-Ready

Ready to run the most advanced open SONiC distribution?

Request early access to production-hardened community SONiC and IntelliSuite. Our SONiC engineering team will reach out within one business day.

AI-Powered Technical Assistant

Ask PalC AI

Get instant answers about PalC's solutions, SONiC networking, AI fabrics, cloud infrastructure, and technical specifications powered by our AI assistant.

Suggested Questions:

Technical Assistant

Context: Product sonic

ODM PARTNERS

TRUSTED BY LEADING TECHNOLOGY PARTNERS

Planning a SONiC-based network rollout?

Talk to the SONiC team about platform support, IS-CLI, validation, and production deployment options for your environment.

Get in touch

Discuss your infrastructure goals with our experts.

View Documentation