{"id":2821,"date":"2025-06-21T08:57:32","date_gmt":"2025-06-21T05:57:32","guid":{"rendered":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\/"},"modified":"2025-06-21T08:57:32","modified_gmt":"2025-06-21T05:57:32","slug":"securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users","status":"publish","type":"post","link":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\/","title":{"rendered":"Securing Linux Servers: A Guide to Configuring MFA for Privileged Users"},"content":{"rendered":"<p><br \/>\n<\/p>\n<p>In the evolving landscape of cybersecurity threats, securing Linux servers is paramount. With privileged users often bearing the keys to the kingdom, implementing Multi-Factor Authentication (MFA) is a vital measure for enhancing security. This article aims to guide you through configuring MFA for privileged users on Linux servers, ensuring an extra layer of protection against unauthorized access.<\/p>\n<p><\/p>\n<h2>Why Use MFA?<\/h2>\n<p><\/p>\n<ol><\/p>\n<li><strong>Enhanced Security:<\/strong> MFA adds an additional layer of security by requiring more than just a password.<\/li>\n<p><\/p>\n<li><strong>Reduced Risk of Breaches:<\/strong> Even if a password is compromised, unauthorized access can be mitigated through MFA.<\/li>\n<p><\/p>\n<li><strong>Compliance Requirements:<\/strong> Many regulations require multi-factor authentication for critical systems.<\/li>\n<p>\n<\/ol>\n<p><\/p>\n<h2>Prerequisites<\/h2>\n<p><\/p>\n<p>Before diving into the MFA setup, ensure you have:<\/p>\n<p><\/p>\n<ul><\/p>\n<li>A Linux server (preferably Ubuntu, CentOS, or Debian).<\/li>\n<p><\/p>\n<li>Root or sudo access.<\/li>\n<p><\/p>\n<li>A mobile device with a compatible authenticator app (Google Authenticator, Authy, etc.).<\/li>\n<p><\/p>\n<li>Internet connectivity for software installation.<\/li>\n<p>\n<\/ul>\n<p><\/p>\n<h2>Step-by-Step Guide to Configuring MFA<\/h2>\n<p><\/p>\n<h3>Step 1: Install Required Packages<\/h3>\n<p><\/p>\n<p>For this guide, we will use <code>libpam-google-authenticator<\/code>, a widely used PAM (Pluggable Authentication Module) for implementing MFA. To install it, execute the following commands according to your Linux distribution:<\/p>\n<p><\/p>\n<p><strong>For Debian\/Ubuntu:<\/strong><br \/>\nbash<br \/>\nsudo apt update<br \/>\nsudo apt install libpam-google-authenticator<\/p>\n<p><\/p>\n<p><strong>For CentOS\/RHEL:<\/strong><br \/>\nbash<br \/>\nsudo yum install epel-release<br \/>\nsudo yum install google-authenticator<\/p>\n<p><\/p>\n<h3>Step 2: Configure Google Authenticator<\/h3>\n<p><\/p>\n<p>Each user who needs MFA should set up their own Google Authenticator. Have the user run the following command:<\/p>\n<p><\/p>\n<p>bash<br \/>\ngoogle-authenticator<\/p>\n<p><\/p>\n<p>During the setup, the user will be presented with several prompts:<\/p>\n<p><\/p>\n<ul><\/p>\n<li><strong>Y\/n<\/strong>: Answer &quot;Y&quot; to enable time-based tokens.<\/li>\n<p><\/p>\n<li><strong>Secret Key<\/strong>: A unique secret key will be displayed. It can be scanned using an authenticator app.<\/li>\n<p><\/p>\n<li><strong>Backup Codes<\/strong>: Note these down for emergency access.<\/li>\n<p><\/p>\n<li><strong>Update the <code>~\/.google_authenticator<\/code> file<\/strong>: When prompted, choose to make the file inaccessible to others.<\/li>\n<p>\n<\/ul>\n<p><\/p>\n<h3>Step 3: Configure PAM for SSH<\/h3>\n<p><\/p>\n<p>To enforce MFA on SSH access, modify the PAM configuration. Edit the SSH PAM file using your preferred text editor:<\/p>\n<p><\/p>\n<p>bash<br \/>\nsudo nano \/etc\/pam.d\/sshd<\/p>\n<p><\/p>\n<p>Add the following line at the top of the file:<\/p>\n<p><\/p>\n<p>plaintext<br \/>\nauth required pam_google_authenticator.so<\/p>\n<p><\/p>\n<h3>Step 4: Update SSH Configuration<\/h3>\n<p><\/p>\n<p>Next, edit the SSH daemon configuration file:<\/p>\n<p><\/p>\n<p>bash<br \/>\nsudo nano \/etc\/ssh\/sshd_config<\/p>\n<p><\/p>\n<p>Find and modify (or add) the following lines to ensure password authentication is enabled and to allow PAM:<\/p>\n<p><\/p>\n<p>plaintext<br \/>\nChallengeResponseAuthentication yes<br \/>\nUsePAM yes<\/p>\n<p><\/p>\n<h3>Step 5: Restart SSH Daemon<\/h3>\n<p><\/p>\n<p>For the changes to take effect, you&#8217;ll need to restart the SSH service:<\/p>\n<p><\/p>\n<p>bash<br \/>\nsudo systemctl restart sshd<\/p>\n<p><\/p>\n<h3>Step 6: Testing the MFA Setup<\/h3>\n<p><\/p>\n<ol><\/p>\n<li><strong>Open a new terminal window<\/strong> and attempt to SSH into the server.<\/li>\n<p><\/p>\n<li>After entering your username and password, you should be prompted for the token from your Google Authenticator app.<\/li>\n<p><\/p>\n<li>Enter the token. If configured correctly, you will gain access, reinforcing that MFA has been activated.<\/li>\n<p>\n<\/ol>\n<p><\/p>\n<h3>Step 7: Additional Security Measures<\/h3>\n<p><\/p>\n<p>While MFA significantly increases your server\u2019s security, consider these best practices:<\/p>\n<p><\/p>\n<ul><\/p>\n<li><strong>Regularly Update Software:<\/strong> Ensure your Linux distribution and installed packages are up-to-date.<\/li>\n<p><\/p>\n<li><strong>Limit User Privileges:<\/strong> Only provide administrative access to those who strictly require it.<\/li>\n<p><\/p>\n<li><strong>Enable Firewall:<\/strong> Use <code>ufw<\/code> or <code>iptables<\/code> to restrict unwanted traffic.<\/li>\n<p><\/p>\n<li><strong>Use Secure Passwords:<\/strong> Enforce strong password policies.<\/li>\n<p>\n<\/ul>\n<p><\/p>\n<h2>Conclusion<\/h2>\n<p><\/p>\n<p>Implementing Multi-Factor Authentication for privileged users is a deceptively straightforward yet potent way to bolster your Linux server security. By combining something you know (password) with something you possess (MFA token), you create a formidable barrier against unauthorized access. Following the steps outlined in this guide, you can significantly enhance the security posture of your Linux-based environments. <\/p>\n<p><\/p>\n<p>By taking proactive measures like this, you are investing in a more secure digital future for your organization. If you need further assistance or want to stay updated on the latest security practices, keep following WafaTech for more insightful articles!<\/p>\n<p><\/p>\n<hr \/>\n<p><\/p>\n<p>Feel free to experiment and tweak this article as necessary for your blog. Happy securing!<\/p>\n\n","protected":false},"excerpt":{"rendered":"<p>In the evolving landscape of cybersecurity threats, securing Linux servers is paramount. With privileged users often bearing the keys to the kingdom, implementing Multi-Factor Authentication (MFA) is a vital measure for enhancing security. This article aims to guide you through configuring MFA for privileged users on Linux servers, ensuring an extra layer of protection against [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":2822,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","inline_featured_image":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[22],"tags":[391,233,265,1421,1529,264,302,871],"class_list":["post-2821","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux-security","tag-configuring","tag-guide","tag-linux","tag-mfa","tag-privileged","tag-securing","tag-servers","tag-users","et-has-post-format-content","et_post_format-et-post-format-standard"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.5 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Securing Linux Servers: A Guide to Configuring MFA for Privileged Users - WafaTech Blogs<\/title>\n<meta name=\"description\" content=\"Securing Linux Servers: A Guide to Configuring MFA for Privileged Users %\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Securing Linux Servers: A Guide to Configuring MFA for Privileged Users\" \/>\n<meta property=\"og:description\" content=\"Securing Linux Servers: A Guide to Configuring MFA for Privileged Users %\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\/\" \/>\n<meta property=\"og:site_name\" content=\"WafaTech Blogs\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/people\/WafaTech\/61560546351289\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-21T05:57:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/06\/logo_big.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"2221\" \/>\n\t<meta property=\"og:image:height\" content=\"482\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"WafaTech SA\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@wafatech_sa\" \/>\n<meta name=\"twitter:site\" content=\"@wafatech_sa\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"WafaTech SA\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\\\/\"},\"author\":{\"name\":\"WafaTech SA\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/person\\\/1a5761fc0feb63ab59d295d7c2648f06\"},\"headline\":\"Securing Linux Servers: A Guide to Configuring MFA for Privileged Users\",\"datePublished\":\"2025-06-21T05:57:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\\\/\"},\"wordCount\":632,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/Securing-Linux-Servers-A-Guide-to-Configuring-MFA-for-Privileged.png\",\"keywords\":[\"Configuring\",\"Guide\",\"Linux\",\"MFA\",\"Privileged\",\"Securing\",\"Servers\",\"Users\"],\"articleSection\":[\"Linux Security\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\\\/\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\\\/\",\"name\":\"Securing Linux Servers: A Guide to Configuring MFA for Privileged Users - WafaTech Blogs\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/Securing-Linux-Servers-A-Guide-to-Configuring-MFA-for-Privileged.png\",\"datePublished\":\"2025-06-21T05:57:32+00:00\",\"description\":\"Securing Linux Servers: A Guide to Configuring MFA for Privileged Users %\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\\\/#primaryimage\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/Securing-Linux-Servers-A-Guide-to-Configuring-MFA-for-Privileged.png\",\"contentUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/Securing-Linux-Servers-A-Guide-to-Configuring-MFA-for-Privileged.png\",\"width\":1024,\"height\":1024,\"caption\":\"linux server configuring MFA for privileged users\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Securing Linux Servers: A Guide to Configuring MFA for Privileged Users\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/\",\"name\":\"WafaTech Blogs\",\"description\":\"Smart Technologies\",\"publisher\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#organization\"},\"alternateName\":\"WafaTech\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#organization\",\"name\":\"WafaTech Blogs\",\"alternateName\":\"WafaTech\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/logo_big.webp\",\"contentUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/logo_big.webp\",\"width\":2221,\"height\":482,\"caption\":\"WafaTech Blogs\"},\"image\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/people\\\/WafaTech\\\/61560546351289\\\/\",\"https:\\\/\\\/x.com\\\/wafatech_sa\",\"https:\\\/\\\/www.youtube.com\\\/@wafatech-sa\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/wafatech\\\/\"],\"description\":\"WafaTech, a leading Saudi IT services provider, specializes in cloud solutions, connectivity, and ICT services. Offering secure cloud infrastructure, high-speed internet, and ICT solutions like hosting, backup, and disaster recovery, WafaTech operates a Tier 3 data center at KAUST with ISO certifications. Regulated by CST, the company is committed to innovation, security, and customer satisfaction, empowering businesses in the digital age.\",\"email\":\"sales@wafatech.sa\",\"legalName\":\"Al-Wafa Al-Dhakia For Information Technology LLC\",\"foundingDate\":\"2013-01-08\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/person\\\/1a5761fc0feb63ab59d295d7c2648f06\",\"name\":\"WafaTech SA\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g\",\"caption\":\"WafaTech SA\"},\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/author\\\/omer-yaseen\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Securing Linux Servers: A Guide to Configuring MFA for Privileged Users - WafaTech Blogs","description":"Securing Linux Servers: A Guide to Configuring MFA for Privileged Users %","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\/","og_locale":"en_US","og_type":"article","og_title":"Securing Linux Servers: A Guide to Configuring MFA for Privileged Users","og_description":"Securing Linux Servers: A Guide to Configuring MFA for Privileged Users %","og_url":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\/","og_site_name":"WafaTech Blogs","article_publisher":"https:\/\/www.facebook.com\/people\/WafaTech\/61560546351289\/","article_published_time":"2025-06-21T05:57:32+00:00","og_image":[{"width":2221,"height":482,"url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/06\/logo_big.webp","type":"image\/webp"}],"author":"WafaTech SA","twitter_card":"summary_large_image","twitter_creator":"@wafatech_sa","twitter_site":"@wafatech_sa","twitter_misc":{"Written by":"WafaTech SA","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\/#article","isPartOf":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\/"},"author":{"name":"WafaTech SA","@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/person\/1a5761fc0feb63ab59d295d7c2648f06"},"headline":"Securing Linux Servers: A Guide to Configuring MFA for Privileged Users","datePublished":"2025-06-21T05:57:32+00:00","mainEntityOfPage":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\/"},"wordCount":632,"commentCount":0,"publisher":{"@id":"https:\/\/wafatech.sa\/blog\/#organization"},"image":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\/#primaryimage"},"thumbnailUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/06\/Securing-Linux-Servers-A-Guide-to-Configuring-MFA-for-Privileged.png","keywords":["Configuring","Guide","Linux","MFA","Privileged","Securing","Servers","Users"],"articleSection":["Linux Security"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\/","url":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\/","name":"Securing Linux Servers: A Guide to Configuring MFA for Privileged Users - WafaTech Blogs","isPartOf":{"@id":"https:\/\/wafatech.sa\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\/#primaryimage"},"image":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\/#primaryimage"},"thumbnailUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/06\/Securing-Linux-Servers-A-Guide-to-Configuring-MFA-for-Privileged.png","datePublished":"2025-06-21T05:57:32+00:00","description":"Securing Linux Servers: A Guide to Configuring MFA for Privileged Users %","breadcrumb":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\/#primaryimage","url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/06\/Securing-Linux-Servers-A-Guide-to-Configuring-MFA-for-Privileged.png","contentUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/06\/Securing-Linux-Servers-A-Guide-to-Configuring-MFA-for-Privileged.png","width":1024,"height":1024,"caption":"linux server configuring MFA for privileged users"},{"@type":"BreadcrumbList","@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-a-guide-to-configuring-mfa-for-privileged-users\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wafatech.sa\/blog\/"},{"@type":"ListItem","position":2,"name":"Securing Linux Servers: A Guide to Configuring MFA for Privileged Users"}]},{"@type":"WebSite","@id":"https:\/\/wafatech.sa\/blog\/#website","url":"https:\/\/wafatech.sa\/blog\/","name":"WafaTech Blogs","description":"Smart Technologies","publisher":{"@id":"https:\/\/wafatech.sa\/blog\/#organization"},"alternateName":"WafaTech","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wafatech.sa\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/wafatech.sa\/blog\/#organization","name":"WafaTech Blogs","alternateName":"WafaTech","url":"https:\/\/wafatech.sa\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/06\/logo_big.webp","contentUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/06\/logo_big.webp","width":2221,"height":482,"caption":"WafaTech Blogs"},"image":{"@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/people\/WafaTech\/61560546351289\/","https:\/\/x.com\/wafatech_sa","https:\/\/www.youtube.com\/@wafatech-sa","https:\/\/www.linkedin.com\/company\/wafatech\/"],"description":"WafaTech, a leading Saudi IT services provider, specializes in cloud solutions, connectivity, and ICT services. Offering secure cloud infrastructure, high-speed internet, and ICT solutions like hosting, backup, and disaster recovery, WafaTech operates a Tier 3 data center at KAUST with ISO certifications. Regulated by CST, the company is committed to innovation, security, and customer satisfaction, empowering businesses in the digital age.","email":"sales@wafatech.sa","legalName":"Al-Wafa Al-Dhakia For Information Technology LLC","foundingDate":"2013-01-08","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/person\/1a5761fc0feb63ab59d295d7c2648f06","name":"WafaTech SA","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g","caption":"WafaTech SA"},"url":"https:\/\/wafatech.sa\/blog\/author\/omer-yaseen\/"}]}},"jetpack_featured_media_url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/06\/Securing-Linux-Servers-A-Guide-to-Configuring-MFA-for-Privileged.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/posts\/2821","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/comments?post=2821"}],"version-history":[{"count":0,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/posts\/2821\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/media\/2822"}],"wp:attachment":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/media?parent=2821"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/categories?post=2821"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/tags?post=2821"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}