মূল কন্টেন্টে যান

সুরক্ষিত BYOD এবং 802.1X নেটওয়ার্ক অথেন্টিকেশনের জন্য কীভাবে SCEP কনফিগার করবেন

এই নির্দেশিকাটি সার্টিফিকেট-ভিত্তিক 802.1X নেটওয়ার্ক অথেন্টিকেশন স্থাপনের জন্য SCEP কনফিগার করার একটি বিস্তৃত প্রযুক্তিগত রেফারেন্স প্রদান করে। এটি শেয়ারড পাসওয়ার্ড থেকে EAP-TLS-এ আর্কিটেকচারাল পরিবর্তন, মোবাইল ডিভাইস ম্যানেজমেন্ট ইন্টিগ্রেশন এবং এন্টারপ্রাইজ পরিবেশে সুরক্ষিত BYOD অ্যাক্সেসের জন্য কঠোর নেটওয়ার্ক সেগমেন্টেশন কভার করে।

📖 4 মিনিট পাঠ📝 888 শব্দ🔧 2 সমাধানকৃত উদাহরণ3 অনুশীলনী প্রশ্ন📚 8 মূল সংজ্ঞা

এই গাইডটি শুনুন

পডকাস্ট ট্রান্সক্রিপ্ট দেখুন
Hello, and welcome to this technical briefing from Purple. I'm your host, and today we're getting into the detail on SCEP - the Simple Certificate Enrollment Protocol - and how to configure it correctly for secure BYOD and 802.1X network authentication. If you're an IT manager, a network architect, or a CTO responsible for WiFi infrastructure across a hotel group, a retail estate, a stadium, or a public-sector organisation, this is directly relevant to you. We're not doing theory today. We're doing architecture and decisions. Let's get into it. [SECTION: Introduction and Context - approximately 1 minute] Here's the problem you're likely facing. You have staff devices, contractor laptops, and personal phones all needing network access. You've probably got a mix of managed and unmanaged devices. And somewhere in your infrastructure, there's still a shared WPA2 pre-shared key that twelve people know, three of whom left the company last year. That's not a security posture. That's a liability. The answer is 802.1X - the IEEE standard for port-based network access control. It ensures no device passes traffic until it's been explicitly authenticated. But 802.1X is just the framework. The real question is what authentication method sits inside it. And for BYOD at scale, the answer is EAP-TLS with certificates provisioned via SCEP. That's what we're unpacking today. [SECTION: Technical Deep-Dive - approximately 5 minutes] Let's start with what SCEP actually does. SCEP - Simple Certificate Enrollment Protocol - was originally published as an Internet Draft by the IETF in 1999, created by VeriSign. It was formalised as RFC 8894. Its job is straightforward: automate the process of issuing X.509 digital certificates to devices at scale, without requiring a human to manually generate and install each one. Here's the four-step flow. Step one: the device connects to a SCEP endpoint - a URL hosted either on-premises via a Windows Server role called NDES, the Network Device Enrollment Service, or via a cloud PKI provider. This URL is the gateway to your Certificate Authority. Step two: the device presents a SCEP challenge - a shared secret that proves it's authorised to request a certificate. In an MDM-managed environment like Microsoft Intune, this challenge is delivered dynamically and uniquely per device, which is far more secure than a static password shared across all devices. Step three: the device generates its own private and public key pair locally. It creates a Certificate Signing Request - a CSR - using the public key and sends that to the SCEP server. Here's the critical security point: the private key never leaves the device. It's generated locally, stored in the device's secure enclave - that's the TPM on Windows or the Secure Enclave on iOS - and is never transmitted. This is why SCEP is the right choice for network authentication, not PKCS, where the CA generates the key centrally and has to push it to the device. Step four: the Certificate Authority validates the CSR, signs it with the CA's private key, and returns the signed X.509 certificate to the device. The device now has a unique cryptographic identity. Now, how does that certificate get used for 802.1X authentication? When the device connects to your WiFi SSID, the access point - whether that's Cisco Meraki, HPE Aruba, Ruckus, Juniper Mist, or Ubiquiti UniFi - acts as the authenticator. It doesn't make the authentication decision itself. It forwards the EAP exchange to your RADIUS server. That could be Microsoft NPS, Cisco ISE, or Aruba ClearPass. The RADIUS server initiates an EAP-TLS handshake. The device presents its SCEP-provisioned client certificate. The RADIUS server validates three things: the certificate chain back to the trusted root CA, the certificate expiry date, and whether the certificate has been revoked - checked against a Certificate Revocation List, or CRL, or via OCSP, the Online Certificate Status Protocol. If all three checks pass, the RADIUS server sends an EAP-Success message, and the access point opens the port. The device is on the network. This is mutual authentication. The device also validates the RADIUS server's certificate. If someone sets up a rogue access point, the device will reject it because the server certificate won't validate against the trusted CA. That's your protection against evil twin attacks. Now let's talk about the deployment sequence in Microsoft Intune, because that's the most common MDM platform we see in enterprise environments. You deploy three Intune configuration profiles, in strict order. First, the Trusted Root Certificate profile - this pushes your root CA certificate to every device so they trust your PKI. Second, the SCEP Certificate profile - this tells devices the SCEP URL, the subject name format, the key usage, and the extended key usage for client authentication. The OID for client authentication is 1.3.6.1.5.5.7.3.2. Third, the WiFi profile - this specifies the SSID, sets the security type to WPA2-Enterprise or WPA3-Enterprise, sets the EAP type to EAP-TLS, and links to the SCEP certificate profile. The order matters. The WiFi profile has a dependency on the SCEP profile, which has a dependency on the Trusted Root profile. Deploy them out of sequence and you'll get errors. One architectural decision you need to make is where to host the NDES server. It needs to be reachable from the internet so devices can enrol before they arrive on-site. The secure way to do this is to publish the NDES URL via Microsoft Entra ID Application Proxy. This avoids opening inbound firewall ports and lets you apply Conditional Access policies to the enrolment flow. For organisations that want to eliminate on-premises infrastructure entirely, cloud PKI providers - Microsoft's own Cloud PKI in Intune, or third-party options - remove the NDES dependency completely. [SECTION: Implementation Recommendations and Pitfalls - approximately 2 minutes] Let me give you the three most common failure modes we see. Failure mode one: group targeting mismatch. This is the most frequent cause of WiFi profile deployment failures in Intune. If your Trusted Root profile is assigned to a User group, your SCEP profile to a Device group, and your WiFi profile to a different User group, Intune cannot resolve the dependency chain. All three profiles must target the exact same Azure AD group - either all Users or all Devices. Pick one and be consistent. Failure mode two: CRL availability. Your RADIUS server checks the CRL to verify certificates haven't been revoked. If the CRL Distribution Point - the CDP URL embedded in the certificate - is unreachable, authentication fails for every device. This is a common cause of mass outages after network changes. Ensure your CDPs are highly available, ideally published to both an internal URL and an external URL for remote devices. Consider OCSP as a more resilient alternative to CRL checking. Failure mode three: not enforcing server certificate validation on clients. This is the single most impactful misconfiguration in 802.1X deployments. If your MDM-deployed WiFi profile doesn't specify the trusted CA and the expected RADIUS server name, devices will connect to any server presenting any certificate. That defeats the entire purpose of EAP-TLS. Always configure server validation in your WiFi profile. [SECTION: Rapid-Fire Q and A - approximately 1 minute] Let's do a few quick questions. Question: Do we need WPA3? Yes. Migrate to WPA3-Enterprise. It mandates Protected Management Frames, which blocks deauthentication attacks. All hardware from Cisco Meraki, HPE Aruba, Ruckus, and Juniper Mist supports it. Question: What about devices that can't support 802.1X - like IoT sensors or legacy printers? Use MAC Authentication Bypass as a fallback, but place those devices on a heavily restricted VLAN with no access to corporate resources. Question: How does Purple fit into this? Purple's Guest WiFi platform handles the visitor and guest access layer - the captive portal, the data capture, the analytics. Your 802.1X and SCEP infrastructure handles staff and managed device access. They run on separate SSIDs and separate VLANs. Purple integrates with Cisco Meraki, HPE Aruba, Ruckus, Juniper Mist, Ubiquiti UniFi, Cambium, Extreme, and Fortinet - so your hardware investment is protected. [SECTION: Summary and Next Steps - approximately 1 minute] To wrap up. SCEP automates certificate issuance at scale. The private key stays on the device - that's the security advantage over PKCS. Deploy via MDM in strict sequence: Trusted Root, then SCEP profile, then WiFi profile, all targeting the same group. Publish NDES via Application Proxy or move to cloud PKI. Enforce CRL or OCSP checking on your RADIUS server. And always configure server certificate validation on client supplicants. If you're still running a shared pre-shared key for staff WiFi, that's the change to make this quarter. The certificate infrastructure is more work upfront, but it eliminates an entire class of credential-based attacks and typically reduces WiFi-related helpdesk tickets by 70 to 80 percent once deployed. For the full technical guide, architecture diagrams, and worked examples, visit purple dot ai. Thanks for listening.

header_image.png

এক্সিকিউটিভ সামারি

এন্টারপ্রাইজ পরিবেশ জুড়ে কর্মরত আইটি ম্যানেজার এবং নেটওয়ার্ক আর্কিটেক্টদের জন্য, BYOD (Bring Your Own Device) WiFi অ্যাক্সেস পরিচালনা করা একটি সুবিধাজনক ফিচার থেকে একটি অত্যন্ত গুরুত্বপূর্ণ নিরাপত্তা প্রয়োজনীয়তায় পরিণত হয়েছে। স্টাফ WiFi-এর জন্য প্রি-শেয়ার্ড কি বা সাধারণ Captive Portal-এর ওপর নির্ভর করা একটি নিরাপত্তা দুর্বলতা এবং অপারেশনাল বাধা। আধুনিক নেটওয়ার্ক আর্কিটেকচারে EAP-TLS ব্যবহার করে 802.1X অথেন্টিকেশন প্রয়োজন, যা নেটওয়ার্ক অ্যাক্সেস করার আগে প্রতিটি ডিভাইস ক্রিপ্টোগ্রাফিকভাবে যাচাই করা নিশ্চিত করে।

এই নির্দেশিকাটি সিম্পল সার্টিফিকেট এনরোলমেন্ট প্রোটোকল (SCEP) ব্যবহার করে সুরক্ষিত BYOD WiFi স্থাপনের জন্য একটি বাস্তবসম্মত, ভেন্ডর-নিরপেক্ষ ফ্রেমওয়ার্ক প্রদান করে। আমরা আধুনিক এন্টারপ্রাইজ এজ সুরক্ষিত করার জন্য প্রয়োজনীয় সুনির্দিষ্ট কনফিগারেশনের বিবরণ দিই, যেখানে 802.1X অথেন্টিকেশন বাস্তবায়ন, কমপ্লায়েন্সের জন্য মোবাইল ডিভাইস ম্যানেজমেন্ট (MDM) ব্যবহার এবং কঠোর নেটওয়ার্ক সেগমেন্টেশন প্রয়োগের ওপর জোর দেওয়া হয়েছে। এই প্রযুক্তিগত নিয়ন্ত্রণগুলোকে ব্যবসায়িক ফলাফলের সাথে যুক্ত করে, আইটি লিডাররা এমন সমাধান স্থাপন করতে পারেন যা অপারেশনাল দক্ষতা বজায় রাখার পাশাপাশি ডেটার অখণ্ডতা রক্ষা করে।

টেকনিক্যাল ডিপ-ডাইভ: SCEP এবং 802.1X আর্কিটেকচার

সুরক্ষিত BYOD WiFi-এর ভিত্তি হলো শেয়ারড পাসওয়ার্ড বর্জন করে আইডেন্টিটি-ভিত্তিক অ্যাক্সেস কন্ট্রোল গ্রহণ করা।

802.1X স্ট্যান্ডার্ড এবং EAP-TLS

IEEE 802.1X স্ট্যান্ডার্ড হলো এন্টারপ্রাইজ WiFi নিরাপত্তার জন্য একটি আপসহীন বেসলাইন। এটি পোর্ট-ভিত্তিক নেটওয়ার্ক অ্যাক্সেস কন্ট্রোল (PNAC) প্রদান করে, যা নিশ্চিত করে যে কোনো ডিভাইস স্পষ্টভাবে অথেন্টিকেট না হওয়া পর্যন্ত নেটওয়ার্কে যোগাযোগ করতে পারবে না। BYOD স্থাপনের জন্য, EAP-TLS (Transport Layer Security) হলো গোল্ড স্ট্যান্ডার্ড। EAP-TLS ক্লায়েন্ট-সাইড X.509 সার্টিফিকেটের ওপর নির্ভর করে, যা ক্রেডেনশিয়াল চুরি এবং ম্যান-ইন-দ্য-মিডল অ্যাটাকের ঝুঁকি দূর করে।

SCEP (Simple Certificate Enrollment Protocol)

বড় পরিসরে এই সার্টিফিকেটগুলো স্থাপন করতে, SCEP একটি পাবলিক কি ইনফ্রাস্ট্রাকচার (PKI)-এর মধ্যে সার্টিফিকেট ইস্যু এবং পরিচালনা স্বয়ংক্রিয় করে। একটি SCEP ওয়ার্কফ্লোতে, MDM সার্ভিস এন্ডপয়েন্টকে নিজস্ব প্রাইভেট/পাবলিক কি পেয়ার তৈরি করার নির্দেশ দেয়। ডিভাইসটি তখন একটি সার্টিফিকেট সাইনিং রিকোয়েস্ট (CSR) তৈরি করে এবং এটি একটি নেটওয়ার্ক ডিভাইস এনরোলমেন্ট সার্ভিস (NDES) সার্ভারের মাধ্যমে আপনার সার্টিফিকেট অথরিটি (CA)-এর কাছে পাঠায়।

SCEP-এর গুরুত্বপূর্ণ নিরাপত্তা সুবিধা হলো প্রাইভেট কি কখনোই ডিভাইস থেকে বাইরে যায় না। এটি স্থানীয়ভাবে তৈরি হয় এবং ডিভাইসের সিকিউর এনক্লেভে (যেমন উইন্ডোজে TPM বা iOS-এ সিকিউর এনক্লেভ) সংরক্ষিত হয়।

scep_architecture_overview.png

ইমপ্লিমেন্টেশন গাইড: ডেপ্লয়মেন্ট সিকোয়েন্স

802.1X-এর জন্য SCEP সফলভাবে কনফিগার করার জন্য একটি নির্দিষ্ট ডেপ্লয়মেন্ট সিকোয়েন্স কঠোরভাবে অনুসরণ করা প্রয়োজন। Intune প্রোফাইল ডিপেন্ডেন্সি নির্দেশ করে যে অথেন্টিকেশন কনফিগার করার আগে অবশ্যই ট্রাস্ট (trust) স্থাপন করতে হবে।

ধাপ ১: ট্রাস্টেড রুট সার্টিফিকেট প্রোফাইল স্থাপন করুন

যেকোনো ডিভাইস ক্লায়েন্ট সার্টিফিকেটের জন্য অনুরোধ করার বা আপনার RADIUS সার্ভারকে ট্রাস্ট করার আগে, তাকে অবশ্যই ইস্যুকারী সার্টিফিকেট অথরিটিকে ট্রাস্ট করতে হবে। আপনার রুট CA সার্টিফিকেটটি একটি .cer ফাইল হিসেবে এক্সপোর্ট করুন এবং এই প্রোফাইলটি আপনার টার্গেট ডিভাইস গ্রুপগুলোতে স্থাপন করুন।

ধাপ ২: SCEP সার্টিফিকেট প্রোফাইল কনফিগার করুন

ডিভাইসগুলো কীভাবে তাদের ক্লায়েন্ট সার্টিফিকেট পাবে তা নির্দেশ করতে SCEP প্রোফাইলটি কনফিগার করুন। এই প্রোফাইলটিকে ধাপ ১-এ তৈরি করা ট্রাস্টেড রুট সার্টিফিকেট প্রোফাইলের সাথে লিঙ্ক করুন এবং আপনার NDES সার্ভারের এক্সটার্নাল URL প্রদান করুন।

ধাপ ৩: 802.1X WiFi প্রোফাইল স্থাপন করুন

চূড়ান্ত ধাপ হলো WiFi কনফিগারেশন পুশ করা যা সার্টিফিকেটগুলোকে নেটওয়ার্ক SSID-এর সাথে যুক্ত করে। সিকিউরিটি টাইপ WPA2-Enterprise বা WPA3-Enterprise-এ সেট করুন, EAP টাইপ EAP-TLS-এ সেট করুন এবং ক্লায়েন্ট অথেন্টিকেশন সার্টিফিকেট হিসেবে ধাপ ২-এ তৈরি করা SCEP সার্টিফিকেট প্রোফাইলটি নির্বাচন করুন।

scep_vs_pkcs_comparison.png

বেস্ট প্র্যাকটিস এবং নেটওয়ার্ক সেগমেন্টেশন

SCEP সার্টিফিকেট স্থাপনের সময়, কমপ্লায়েন্স এবং নির্ভরযোগ্যতা নিশ্চিত করতে নিম্নলিখিত ভেন্ডর-নিরপেক্ষ বেস্ট প্র্যাকটিসগুলো মেনে চলুন।

কঠোর থ্রি-জোন আর্কিটেকচার

একটি ফ্ল্যাট নেটওয়ার্ক হলো একটি ঝুঁকিপূর্ণ নেটওয়ার্ক। কঠোর সেগমেন্টেশন বাস্তবায়ন করুন: ১. কর্পোরেট জোন: অভ্যন্তরীণ রিসোর্সে পূর্ণ অ্যাক্সেস সহ পরিচালিত, কোম্পানির মালিকানাধীন ডিভাইস। ২. BYOD জোন: ইন্টারনেট অ্যাক্সেস এবং নির্দিষ্ট অভ্যন্তরীণ অ্যাপ্লিকেশনগুলোতে সীমিত অ্যাক্সেস সহ কর্মচারীদের মালিকানাধীন ডিভাইস। ৩. গেস্ট জোন: শুধুমাত্র ইন্টারনেট অ্যাক্সেস এবং ক্লায়েন্ট আইসোলেশন সক্রিয় থাকা ভিজিটর ডিভাইস।

NDES সার্ভার প্লেসমেন্ট

Microsoft Entra ID অ্যাপ্লিকেশন প্রক্সি ব্যবহার করে NDES URL প্রকাশ করুন। এটি ইনবাউন্ড ফায়ারওয়াল পোর্ট না খুলেই নিরাপদ রিমোট অ্যাক্সেস প্রদান করে এবং আপনাকে এনরোলমেন্ট ফ্লোতে কন্ডিশনাল অ্যাক্সেস পলিসি প্রয়োগ করার অনুমতি দেয়।

WPA3-Enterprise এবং OpenRoaming

বাধ্যতামূলক প্রোটেক্টেড ম্যানেজমেন্ট ফ্রেম (PMF)-এর সুবিধা পেতে WPA2 থেকে WPA3-Enterprise-এ ট্রানজিশন করুন। বিভিন্ন ভেন্যু জুড়ে নির্বিঘ্ন, নিরাপদ কানেক্টিভিটির জন্য, OpenRoaming বাস্তবায়নের কথা বিবেচনা করুন। Purple কানেক্ট লাইসেন্সের অধীনে OpenRoaming-এর জন্য একটি ফ্রি আইডেন্টিটি প্রোভাইডার হিসেবে কাজ করে, যা ম্যানুয়াল অনবোর্ডিং ছাড়াই নিরাপদ অ্যাক্সেসকে সহজ করে তোলে।

ট্রাবলশুটিং এবং ঝুঁকি প্রশমন

অতি সতর্ক পরিকল্পনার পরেও, সার্টিফিকেট স্থাপনে সমস্যার সম্মুখীন হতে পারে।

গ্রুপ টার্গেটিং অমিল

যদি SCEP প্রোফাইলটি কোনো ইউজার গ্রুপে অ্যাসাইন করা হয়, কিন্তু WiFi প্রোফাইলটি কোনো ডিভাইস গ্রুপে অ্যাসাইন করা হয়, তবে MDM ডিপেন্ডেন্সি সমাধান করতে পারে না। নিশ্চিত করুন যে ট্রাস্টেড রুট, SCEP এবং WiFi প্রোফাইলগুলো সবই exএকই গ্রুপ হিসেবে কাজ করে।

RADIUS এবং CRL চেকিং

যদি কোনো ডিভাইসের সার্টিফিকেট বাতিল করা হয়, তবে RADIUS সার্ভারকে তা অবিলম্বে জানতে হবে। কঠোর Certificate Revocation List (CRL) চেকিং প্রয়োগ করতে আপনার Network Policy Server (NPS) বা RADIUS সার্ভার কনফিগার করুন। আপনার CRL Distribution Points (CDPs) অত্যন্ত সহজলভ্য হওয়া নিশ্চিত করুন।

ROI এবং ব্যবসায়িক প্রভাব

SCEP 802.1X সার্টিফিকেট স্থাপনে রূপান্তর নিরাপত্তা এবং অপারেশন জুড়ে পরিমাপযোগ্য রিটার্ন প্রদান করে।

  1. হেল্পডেস্ক টিকিট হ্রাস: পাসওয়ার্ড-ভিত্তিক WiFi প্রচুর পরিমাণে সাপোর্ট টিকিট তৈরি করে। সার্টিফিকেট-ভিত্তিক প্রমাণীকরণ ব্যবহারকারীর কাছে অদৃশ্য থাকে, যা সাধারণত WiFi-সম্পর্কিত হেল্পডেস্কের কাজের চাপ ৭০% কমিয়ে দেয়।
  2. উন্নত নিরাপত্তা ব্যবস্থা: EAP-TLS ক্রেডেনশিয়াল চুরির ঝুঁকি দূর করে। এটি PCI DSS এবং GDPR-এর মতো ফ্রেমওয়ার্কগুলোর কমপ্লায়েন্সের জন্য অত্যন্ত গুরুত্বপূর্ণ, বিশেষ করে হেলথকেয়ার এবং রিটেইল পরিবেশে।
  3. সহজ অনবোর্ডিং: বিদ্যমান MDM ওয়ার্কফ্লোর সাথে SCEP সংহত করা প্রথম দিন থেকেই একটি ইউনিফাইড, জিরো-টাচ প্রভিশনিং অভিজ্ঞতা নিশ্চিত করে।

সংশ্লিষ্ট বিষয়ে আরও পড়ার জন্য দেখুন গেস্ট WiFi , WiFi অ্যানালিটিক্স , এবং আমাদের এন্টারপ্রাইজ WiFi সিকিউরিটি: ২০২৬ সালের একটি সম্পূর্ণ গাইড

মূল সংজ্ঞাসমূহ

SCEP (Simple Certificate Enrollment Protocol)

A protocol that allows devices to request digital certificates from a Certificate Authority, where the private key is generated and stored securely on the device itself.

The recommended method for deploying WiFi authentication certificates due to its high security and scalability.

EAP-TLS (Extensible Authentication Protocol - Transport Layer Security)

The most secure 802.1X authentication method, requiring both the server and the client to present valid digital certificates.

The target authentication protocol that the MDM WiFi and certificate profiles are designed to enable.

802.1X

An IEEE standard for port-based Network Access Control (PNAC) that provides an authentication mechanism to devices wishing to attach to a LAN or WLAN.

The foundational framework that prevents unauthenticated devices from passing traffic on the enterprise network.

NDES (Network Device Enrollment Service)

A Microsoft Windows Server role that acts as a bridge, allowing devices without domain credentials to obtain certificates via SCEP.

A required infrastructure component when implementing on-premises SCEP certificate deployment.

PKCS (Public Key Cryptography Standards)

A set of standards where both the public and private keys are generated by the Certificate Authority and then securely delivered to the endpoint.

Often used for S/MIME email encryption, but less ideal for WiFi due to the network transmission of the private key.

CRL (Certificate Revocation List)

A list published by the Certificate Authority containing the serial numbers of certificates that have been revoked prior to their scheduled expiration date.

RADIUS servers must check this list to ensure compromised or lost devices are denied network access.

RADIUS (Remote Authentication Dial-In User Service)

A networking protocol that provides centralized Authentication, Authorization, and Accounting (AAA) management for users who connect and use a network service.

The server that validates the client certificate during the EAP-TLS handshake.

VLAN (Virtual Local Area Network)

A logical subnetwork that groups a collection of devices from different physical LANs.

Used to enforce strict network segmentation between Corporate, BYOD, and Guest devices.

সমাধানকৃত উদাহরণসমূহ

A 400-room hotel needs to secure its staff WiFi network for 150 employees bringing their own smartphones, replacing an old WPA2-PSK network.

The hotel deploys a cloud-based MDM (like Microsoft Intune). They broadcast a provisioning SSID that directs users to a captive portal. The portal prompts users to enroll their device in the MDM. Once enrolled, the MDM pushes a Trusted Root profile, a SCEP profile, and an 802.1X WiFi profile. The device silently generates a key pair, requests a certificate via the SCEP URL, and connects to the secure BYOD SSID using EAP-TLS. The provisioning SSID is then forgotten.

পরীক্ষকের মন্তব্য: This approach works because it eliminates the shared password entirely. By using SCEP, the private key remains on the employee's personal device, satisfying privacy concerns while cryptographically verifying identity to the RADIUS server.

A retail chain with 50 locations is experiencing mass authentication failures after migrating from PEAP to EAP-TLS using SCEP.

The IT team audits the RADIUS server logs and discovers that the CRL Distribution Point (CDP) is unreachable from the RADIUS server. Because strict CRL checking is enabled, the RADIUS server rejects all connection attempts when it cannot verify the revocation status. The team resolves this by publishing the CRL to a highly available internal web server and updating the CDP extension in the CA template.

পরীক্ষকের মন্তব্য: This highlights a critical dependency in certificate-based authentication. While EAP-TLS provides superior security, it requires the underlying PKI infrastructure to be highly available. If the RADIUS server cannot check the CRL, it must fail closed to maintain security.

অনুশীলনী প্রশ্নসমূহ

Q1. You are deploying Intune WiFi profiles for 802.1X. The devices receive the SCEP certificate successfully, but the WiFi profile fails to apply. What is the most likely cause?

ইঙ্গিত: Consider how Intune resolves dependencies between profiles.

মডেল উত্তর দেখুন

The most likely cause is a group targeting mismatch. The Trusted Root, SCEP, and WiFi profiles must all be assigned to the exact same Azure AD group (either all Users or all Devices). If assignments differ, Intune cannot resolve the dependency chain.

Q2. A hospital IT director wants to use PKCS instead of SCEP for their BYOD WiFi deployment because it requires less on-premises infrastructure. What security risk should you highlight?

ইঙ্গিত: Think about where the private key is generated.

মডেল উত্তর দেখুন

You should highlight that with PKCS, the private key is generated centrally by the CA and transmitted over the network to the device. For network authentication, SCEP is strongly recommended because the private key is generated locally on the device and never leaves the secure enclave.

Q3. During an EAP-TLS handshake, the client device rejects the connection to the RADIUS server, preventing a potential evil twin attack. Which configuration setting enables this protection?

ইঙ্গিত: What does the client check during mutual authentication?

মডেল উত্তর দেখুন

Enforcing server certificate validation on the client supplicant enables this protection. The MDM-deployed WiFi profile must specify the trusted CA and the expected RADIUS server name, ensuring the device only connects to the legitimate corporate RADIUS server.

এই সিরিজে পড়া চালিয়ে যান

এন্টারপ্রাইজ নেটওয়ার্ক কন্ট্রোলারে Captive Portal রিডাইরেকশন কনফিগার করা

এই নির্ভরযোগ্য নির্দেশিকাটি এন্টারপ্রাইজ নেটওয়ার্ক কন্ট্রোলারে Captive Portal রিডাইরেকশন বাস্তবায়নের জন্য প্রয়োজনীয় প্রযুক্তিগত আর্কিটেকচার এবং ভেন্ডর-নির্দিষ্ট কনফিগারেশন ধাপগুলো বিস্তারিতভাবে বর্ণনা করে। এটি আইটি (IT) টিমগুলোর জন্য ওয়াল্ড গার্ডেন (walled gardens) কনফিগার করা, RADIUS অথেন্টিকেশন একীভূত করা এবং GDPR ও PCI DSS-এর সাথে সম্মতি নিশ্চিত করার বিষয়ে কার্যকর নির্দেশনা প্রদান করে।

গাইডটি পড়ুন →

ধাপ-ভিত্তিক নির্দেশিকা: গেস্ট WiFi Captive Portals-এর জন্য Ruijie ওয়্যারলেস কন্ট্রোলার কনফিগার করা

এই নির্দেশিকাটি এন্টারপ্রাইজ-গ্রেড গেস্ট WiFi Captive Portals স্থাপন করার জন্য Ruijie ওয়্যারলেস কন্ট্রোলার এবং গেটওয়ে কনফিগার করার একটি সম্পূর্ণ প্রযুক্তিগত ওয়াকথ্রু প্রদান করে। এতে VLAN সেগমেন্টেশন, WISPr প্রোটোকলের মাধ্যমে এক্সটার্নাল RADIUS অথেনটিকেশন, ওয়াল্ড গার্ডেন কনফিগারেশন এবং ফার্স্ট-পার্টি ডেটা সংগ্রহ করতে ও হসপিটালিটি, রিটেইল এবং পাবলিক-সেক্টর পরিবেশে পরিমাপযোগ্য ব্যবসায়িক ভ্যালু তৈরি করতে Purple-এর আইডেন্টিটি-বেসড নেটওয়ার্ক প্ল্যাটফর্মের সাথে নির্বিঘ্ন ইন্টিগ্রেশন কভার করা হয়েছে।

গাইডটি পড়ুন →

এন্টারপ্রাইজ গেস্ট WiFi সেটআপ গাইড: VLAN সেগমেন্টেশন, সিকিউরিটি এবং Captive Portals

এই গাইডটি এন্টারপ্রাইজ গেস্ট WiFi স্থাপনের জন্য একটি প্রযুক্তিগত ব্লুপ্রিন্ট প্রদান করে, যা VLAN সেগমেন্টেশন, সিকিউরিটি প্রোটোকল এবং captive portal আর্কিটেকচারের উপর আলোকপাত করে। এটি কীভাবে ট্রাফিক আলাদা করতে হয়, এনক্রিপশন স্ট্যান্ডার্ড প্রয়োগ করতে হয় এবং জটিল ভেন্যু জুড়ে নিরাপদে ফার্স্ট-পার্টি ডেটা সংগ্রহ করতে হয় তা বিস্তারিতভাবে বর্ণনা করে।

গাইডটি পড়ুন →