SiamCafe.net Blog
Cybersecurity

SASE Security Tech Conference 2026

sase security tech conference 2026
SASE Security Tech Conference 2026 | SiamCafe Blog
2025-09-29· อ. บอม — SiamCafe.net· 11,625 คำ

SASE Security Conference 2026

SASE Security Tech Conference 2026 Zero Trust SD-WAN SWG CASB ZTNA FWaaS AI Cloud Zscaler Palo Alto Netskope Cloudflare

ComponentFunctionReplacesKey Vendor
SD-WANเชื่อมสาขา ผ่าน InternetMPLSVMware VeloCloud Fortinet
SWGกรอง Web Traffic MalwareWeb ProxyZscaler Netskope
CASBควบคุม SaaS AccessShadow IT ControlNetskope Microsoft
ZTNAZero Trust Access แทน VPNVPNZscaler Palo Alto Cloudflare
FWaaSFirewall บน CloudHardware FirewallPalo Alto Fortinet
DLPป้องกันข้อมูลรั่วOn-prem DLPZscaler Netskope Symantec

SASE Architecture

# === SASE Architecture Design ===

from dataclasses import dataclass

@dataclass
class SASEComponent:
    component: str
    deployment: str
    policy: str
    integration: str
    monitoring: str

components = [
    SASEComponent("SD-WAN",
        "Branch Router → SASE PoP → Cloud/DC",
        "App-based Routing QoS Failover",
        "เชื่อมกับ SWG ZTNA ผ่าน SASE Platform",
        "Bandwidth Latency Jitter Packet Loss"),
    SASEComponent("SWG (Secure Web Gateway)",
        "Cloud Proxy ทุก Web Traffic ผ่าน SWG",
        "URL Filtering Malware Scan SSL Inspection",
        "ใช้ร่วมกับ CASB DLP สำหรับ Inline Protection",
        "Blocked URLs Malware Detected Bandwidth"),
    SASEComponent("CASB",
        "API Mode (Out-of-band) + Inline (Forward Proxy)",
        "Sanctioned/Unsanctioned App Sharing Control",
        "เชื่อมกับ SWG สำหรับ Inline DLP สำหรับ Data",
        "Shadow IT Score App Usage Data Sharing"),
    SASEComponent("ZTNA",
        "Agent-based + Agentless (Browser)",
        "Identity + Device + Context → Allow/Deny",
        "เชื่อมกับ IdP (Okta Azure AD) + EDR",
        "Auth Success/Fail Device Compliance Access Log"),
    SASEComponent("FWaaS",
        "Cloud Firewall ทุก Traffic ผ่าน SASE PoP",
        "L3-L7 Rules IPS Threat Prevention",
        "ใช้ร่วมกับ SD-WAN สำหรับ Branch Traffic",
        "Rules Hit Threats Blocked Traffic Volume"),
]

print("=== SASE Components ===")
for c in components:
    print(f"\n  [{c.component}]")
    print(f"    Deploy: {c.deployment}")
    print(f"    Policy: {c.policy}")
    print(f"    Integration: {c.integration}")
    print(f"    Monitor: {c.monitoring}")

Zero Trust Implementation

# === Zero Trust with SASE ===

# Zero Trust Principles:
# 1. Never Trust, Always Verify
# 2. Least Privilege Access
# 3. Assume Breach
# 4. Verify Explicitly (Identity + Device + Context)
# 5. Microsegmentation

@dataclass
class ZeroTrustPolicy:
    access_type: str
    identity_check: str
    device_check: str
    context_check: str
    action: str

policies = [
    ZeroTrustPolicy("Corporate App (Internal)",
        "SSO + MFA (Okta/Azure AD)",
        "EDR Installed + OS Updated + Encrypted",
        "Corporate Network หรือ Trusted Location",
        "Allow Full Access"),
    ZeroTrustPolicy("Corporate App (Remote)",
        "SSO + MFA + Passwordless (FIDO2)",
        "EDR + Managed Device + Compliance Check",
        "Any Network (ผ่าน ZTNA Tunnel)",
        "Allow Limited Access (No Download)"),
    ZeroTrustPolicy("SaaS App (Office 365)",
        "SSO + Conditional Access",
        "Managed หรือ BYOD + MDM Enrolled",
        "Any Location + Risk Score < Medium",
        "Allow + DLP Inline"),
    ZeroTrustPolicy("Admin Access (AWS Console)",
        "SSO + MFA + Privileged Access (PAM)",
        "Managed Device + Hardened OS",
        "Trusted Network + Time-based (Business Hours)",
        "Allow + Session Recording + Audit"),
    ZeroTrustPolicy("Guest/Contractor",
        "External IdP + MFA",
        "Agentless (Browser-based ZTNA)",
        "Any Location",
        "Allow Specific App Only + Watermark"),
]

print("=== Zero Trust Policies ===")
for p in policies:
    print(f"\n  [{p.access_type}]")
    print(f"    Identity: {p.identity_check}")
    print(f"    Device: {p.device_check}")
    print(f"    Context: {p.context_check}")
    print(f"    Action: {p.action}")

Implementation Roadmap

# === SASE Implementation ===

@dataclass
class Phase:
    phase: str
    duration: str
    tasks: str
    success_criteria: str
    risk: str

phases = [
    Phase("Phase 1: Assessment",
        "4-6 สัปดาห์",
        "Network Audit Security Gap Analysis Vendor Evaluation RFP",
        "Gap Report Vendor Shortlist Budget Approved",
        "ข้อมูลไม่ครบ Stakeholder ไม่ Align"),
    Phase("Phase 2: Design",
        "4-8 สัปดาห์",
        "Architecture Design Policy Framework Integration Plan",
        "Architecture Doc Policy Matrix Migration Plan",
        "Over-engineering เลือก Vendor ผิด"),
    Phase("Phase 3: Pilot",
        "4-6 สัปดาห์",
        "Deploy 1 สาขา/แผนก Test SD-WAN SWG ZTNA",
        "Performance OK Security Test Pass User Feedback",
        "Performance Issue Compatibility Problem"),
    Phase("Phase 4: Migration",
        "8-16 สัปดาห์",
        "Roll out ทีละสาขา SD-WAN → SWG → CASB → ZTNA",
        "All Sites Migrated VPN Retired Legacy FW Off",
        "Downtime User Resistance App Compatibility"),
    Phase("Phase 5: Optimize",
        "Ongoing",
        "Policy Tuning DLP Rules CASB Shadow IT Monitor",
        "False Positive < 5% User Satisfaction > 80%",
        "Alert Fatigue Policy Drift"),
]

print("=== Implementation Roadmap ===")
for p in phases:
    print(f"\n  [{p.phase}] Duration: {p.duration}")
    print(f"    Tasks: {p.tasks}")
    print(f"    Success: {p.success_criteria}")
    print(f"    Risk: {p.risk}")

เคล็ดลับ

SASE คืออะไร

Network + Security Cloud SD-WAN SWG CASB ZTNA FWaaS DLP Gartner Zero Trust Zscaler Palo Alto Netskope Cloudflare Fortinet

Tech Conference 2026 มีอะไร

SASE Architecture Zero Trust AI Security CSPM SSE Post-quantum IoT/OT Keynote Workshop Certification Panel Vendor Expo

Trends 2026 มีอะไร

AI-native SASE Universal ZTNA Single-vendor CNAPP DEM Post-quantum OT/IoT ITDR Sovereign SASE Mesh Edge Computing Identity

Implementation ทำอย่างไร

Assessment Design Pilot Migration Optimize 6-18 เดือน Gap Analysis Vendor Select ZTNA First SD-WAN SWG CASB DLP $5-50/user/เดือน

สรุป

SASE Security Conference 2026 Zero Trust SD-WAN SWG CASB ZTNA FWaaS AI Trends Implementation Roadmap Production

📖 บทความที่เกี่ยวข้อง

CSS Nesting Tech Conference 2026อ่านบทความ → LangChain Agent Tech Conference 2026อ่านบทความ → Ubuntu Pro Tech Conference 2026อ่านบทความ → SASE Security Distributed Systemอ่านบทความ → Rocky Linux Migration Tech Conference 2026อ่านบทความ →

📚 ดูบทความทั้งหมด →