PalC engineers implement enterprise platforms at the infrastructure and integration level - SD-WAN policy configuration, SIP trunk engineering, Kubernetes-based platform orchestration, and IoT gateway deployment.
SD-WAN - Application-Aware Policy Routing
Per-application traffic steering across hybrid WAN fabric
Application-aware routing policies steer SaaS traffic via direct internet breakout, voice/video via MPLS for guaranteed QoS, and bulk data via broadband - with automatic failover across transport links.
# SD-WAN policy - application-aware routing
policy app-route SaaS-Direct
match app microsoft-365, salesforce
action preferred-transport internet
sla-class latency-sensitive
fallback mpls
policy app-route Voice-Video
match app sip, webrtc, zoom
action preferred-transport mpls
sla-class real-time
# QoS: DSCP EF marking
fallback lte-backup
TransportMPLS + Internet + LTEPolicyApp-aware routingSLAPer-applicationFailoverAutomatic
Campus Network - VXLAN EVPN Fabric
Scalable campus fabric with micro-segmentation
VXLAN EVPN fabric provides L2/L3 segmentation across campus, with per-group policy enforcement, dynamic VNI assignment, and consistent policy from access to core - supporting thousands of endpoints per site.
# Campus VXLAN EVPN - leaf configuration
vlan 100
name CORP-USERS
vn-segment 10100
interface nve1
source-interface loopback0
member vni 10100
ingress-replication protocol bgp
router bgp 65001
address-family l2vpn evpn
neighbor SPINE-PEERS activate
advertise-all-vniFabricVXLAN EVPNSegmentationPer-group VNIScaleMulti-thousand endpointsControlBGP EVPN
Unified Communications - SIP Trunk & SBC Engineering
Enterprise SIP infrastructure with session border control
SIP trunk engineering with SBC deployment for security, interoperability, and call routing - normalisation rules, codec negotiation, and SRTP encryption for enterprise voice across multiple carriers and UC platforms.
# SBC - SIP trunk normalisation rules
sip-manipulation CARRIER-INBOUND
rule 1 request INVITE
match-header From uri-host "carrier.net"
action replace uri-host "enterprise.local"
rule 2 request INVITE
match-header P-Asserted-Identity
action store
# Preserve caller-ID for compliance
codec-policy ENTERPRISE
preferred-codec g722 g711u g711a
dtmf-relay rfc2833
srtp-mode preferredProtocolSIP / SRTPSBCSession border controlCodecG.722 / G.711SecuritySRTP + TLS
IoT Edge - MQTT Gateway & Device Pipeline
Secure IoT data pipeline from edge devices to cloud analytics
MQTT-based IoT gateway with TLS device authentication, local buffering for intermittent connectivity, protocol translation for legacy OT devices, and structured data pipeline to cloud analytics and storage.
# IoT Edge Gateway - MQTT broker config
listener 8883
protocol mqtt
certfile /etc/mqtt/server.crt
keyfile /etc/mqtt/server.key
require_certificate true
use_identity_as_username true
# Device auth via X.509 certificate CN
# Local buffer: 48hr store-and-forward
# Upstream: MQTT bridge to cloud broker
connection cloud-bridge
address analytics.enterprise.com:8883
bridge_tls_version tlsv1.3
topic devices/# out 1
ProtocolMQTT / TLS 1.3AuthX.509 certificatesBuffer48hr local storePipelineEdge to cloud