{"id":5698,"date":"2023-06-15T09:21:59","date_gmt":"2023-06-15T09:21:59","guid":{"rendered":"https:\/\/www.webhi.com\/how-to\/?p=5698"},"modified":"2023-06-15T09:26:32","modified_gmt":"2023-06-15T09:26:32","slug":"how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat","status":"publish","type":"post","link":"https:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/","title":{"rendered":"How to setup a Firewall using FirewallD on CentOS and Almalinux"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"675\" src=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/06\/firwalld_centos_en.jpg\" alt=\"install cong configure Firewall Using FirewallD on CentOS 7 and Almalinux\" class=\"wp-image-5739\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/06\/firwalld_centos_en.jpg 1200w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/06\/firwalld_centos_en-300x169.jpg 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/06\/firwalld_centos_en-1024x576.jpg 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/06\/firwalld_centos_en-768x432.jpg 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/06\/firwalld_centos_en-150x84.jpg 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"introduction\">Introduction<\/h2>\n\n\n\n<p>In the modern digital landscape, ensuring the security of your systems and networks is of paramount importance. One of the key tools in safeguarding your CentOS 7 server is <strong>FirewallD<\/strong>, a dynamic firewall management utility. FirewallD provides an easy-to-use interface for configuring and managing firewalls, allowing you to control incoming and outgoing network traffic. In this article, we will guide you through the process of setting up a firewall using FirewallD on CentOS 7, Alma Linux or Redhat (RHLE), enabling you to strengthen the security of your server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-1-installing-firewalld\">Step 1: Installing FirewallD<\/h2>\n\n\n\n<p>Before diving into the firewall configuration, ensure that FirewallD is installed on your CentOS 7 system. By default, CentOS 7 ships with FirewallD, but if it is not installed, you can install it using the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo yum install firewalld<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-2-starting-and-enabling-firewalld\">Step 2: Starting and Enabling FirewallD<\/h2>\n\n\n\n<p>Once FirewallD is installed, start the service and enable it to start at boot by executing the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo systemctl start firewalld\n$ sudo systemctl enable firewalld<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-3-understanding-firewalld-concepts\">Step 3: Understanding FirewallD Concepts<\/h2>\n\n\n\n<p>Before we proceed with firewall configuration, it is essential to understand a few key concepts of FirewallD:<\/p>\n\n\n\n<ul>\n<li>Zones: FirewallD uses zones to define the level of trust for different network connections. By assigning interfaces to zones, you can apply specific rules to control access.<\/li>\n\n\n\n<li>Services: Services are predefined sets of rules that allow or block specific types of traffic. FirewallD provides a range of predefined services for common services such as HTTP, HTTPS, SSH, etc.<\/li>\n\n\n\n<li>Ports: Ports are associated with specific network services or applications. Opening or closing ports allows or blocks traffic for those services.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-4-configuring-firewalld-zones\">Step 4: Configuring FirewallD Zones<\/h2>\n\n\n\n<p>By default, FirewallD comes with several predefined zones, including &#8220;public,&#8221; &#8220;work,&#8221; and &#8220;home.&#8221; To view the available zones, use the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo firewall-cmd --get-zones<\/code><\/pre>\n\n\n\n<p>To assign an interface to a specific zone, use the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo firewall-cmd --zone=zone_name --add-interface=interface_name --permanent<\/code><\/pre>\n\n\n\n<p>Replace&nbsp;<code>zone_name<\/code>&nbsp;with the desired zone and&nbsp;<code>interface_name<\/code>&nbsp;with the name of the interface you wish to assign.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-5-opening-ports-and-allowing-services\">Step 5: Opening Ports and Allowing Services<\/h2>\n\n\n\n<p>To enable specific services or open ports, you can use the following commands:<\/p>\n\n\n\n<p>To allow a service:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo firewall-cmd --zone=zone_name --add-service=service_name --permanent<\/code><\/pre>\n\n\n\n<p>To open a port:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo firewall-cmd --zone=zone_name --add-port=port_number\/tcp --permanent<\/code><\/pre>\n\n\n\n<p>Remember to replace&nbsp;<code>zone_name<\/code>,&nbsp;<code>service_name<\/code>, and&nbsp;<code>port_number<\/code>&nbsp;with the appropriate values.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-6-applying-changes-and-reloading-firewalld\">Step 6: Applying Changes and Reloading FirewallD<\/h2>\n\n\n\n<p>After making any changes to the firewall configuration, apply the changes and reload FirewallD using the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo firewall-cmd --reload\n$ sudo systemctl restart firewalld<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-7-verifying-the-firewall-configuration\">Step 7: Verifying the Firewall Configuration<\/h2>\n\n\n\n<p>To verify that the firewall configuration is applied correctly, you can use various commands, such as:<\/p>\n\n\n\n<p>To view the active zones:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo firewall-cmd --get-active-zones<\/code><\/pre>\n\n\n\n<p>To list all the services allowed in a specific zone:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo firewall-cmd --zone=zone_name --list-services<\/code><\/pre>\n\n\n\n<p>To check the open ports in a specific zone:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo firewall-cmd --zone=zone_name --list-ports<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2>\n\n\n\n<p>By following the steps outlined in this article, you can easily set up a firewall using FirewallD on CentOS 7. Taking the time to configure and manage your firewall is a crucial step in ensuring the security and integrity of your server. FirewallD provides a user-friendly interface for controlling network traffic and allows you to define rules based on zones, services, and ports. By actively monitoring and updating your firewall configuration, you can protect your CentOS 7 server from unauthorized access and potential security threats.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction In the modern digital landscape, ensuring the security of your systems and networks is of paramount importance. One of the key tools in safeguarding your CentOS 7 server is FirewallD, a dynamic firewall management utility. FirewallD provides an easy-to-use interface for configuring and managing firewalls, allowing you to control incoming and outgoing network traffic. ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/\" title=\"read more...\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[69,3],"tags":[],"yoast_head":"\n<title>How to setup a Firewall using FirewallD on CentOS and Almalinux - WebHi Tutorials &amp; Documentations<\/title>\n<meta name=\"description\" content=\"Learn how to strengthen the security of your CentOS 7, AlmaLinux or RedHat server by setting up a firewall using FirewallD. This step-by-step guide covers the installation, configuration, and management of FirewallD, allowing you to control incoming and outgoing network traffic effectively.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to setup a Firewall using FirewallD on CentOS and Almalinux - WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"og:description\" content=\"Learn how to strengthen the security of your CentOS 7, AlmaLinux or RedHat server by setting up a firewall using FirewallD. This step-by-step guide covers the installation, configuration, and management of FirewallD, allowing you to control incoming and outgoing network traffic effectively.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/\" \/>\n<meta property=\"og:site_name\" content=\"WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webhi.technology\" \/>\n<meta property=\"article:published_time\" content=\"2023-06-15T09:21:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-15T09:26:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/06\/firwalld_centos_en.jpg\" \/>\n<meta name=\"author\" content=\"webhi\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:site\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"webhi\" \/>\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\":\"TechArticle\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/\"},\"author\":{\"name\":\"webhi\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\"},\"headline\":\"How to setup a Firewall using FirewallD on CentOS and Almalinux\",\"datePublished\":\"2023-06-15T09:21:59+00:00\",\"dateModified\":\"2023-06-15T09:26:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/\"},\"wordCount\":510,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"articleSection\":[\"Linux system administration\",\"Security\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/\",\"name\":\"How to setup a Firewall using FirewallD on CentOS and Almalinux - WebHi Tutorials &amp; Documentations\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\"},\"datePublished\":\"2023-06-15T09:21:59+00:00\",\"dateModified\":\"2023-06-15T09:26:32+00:00\",\"description\":\"Learn how to strengthen the security of your CentOS 7, AlmaLinux or RedHat server by setting up a firewall using FirewallD. This step-by-step guide covers the installation, configuration, and management of FirewallD, allowing you to control incoming and outgoing network traffic effectively.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webhi.com\/how-to\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to setup a Firewall using FirewallD on CentOS and Almalinux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"name\":\"WebHi Tutorials &amp; Documentations\",\"description\":\"System administration and knowledge base\",\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\",\"name\":\"WebHi Technology\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"width\":288,\"height\":95,\"caption\":\"WebHi Technology\"},\"image\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webhi.technology\",\"https:\/\/twitter.com\/WebHiTechnology\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\",\"name\":\"webhi\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781819544\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781819544\",\"caption\":\"webhi\"},\"sameAs\":[\"https:\/\/www.webhi.com\/how-to\"],\"url\":\"https:\/\/www.webhi.com\/how-to\/author\/webhi\/\"}]}<\/script>\n","yoast_head_json":{"title":"How to setup a Firewall using FirewallD on CentOS and Almalinux - WebHi Tutorials &amp; Documentations","description":"Learn how to strengthen the security of your CentOS 7, AlmaLinux or RedHat server by setting up a firewall using FirewallD. This step-by-step guide covers the installation, configuration, and management of FirewallD, allowing you to control incoming and outgoing network traffic effectively.","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:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/","og_locale":"en_US","og_type":"article","og_title":"How to setup a Firewall using FirewallD on CentOS and Almalinux - WebHi Tutorials &amp; Documentations","og_description":"Learn how to strengthen the security of your CentOS 7, AlmaLinux or RedHat server by setting up a firewall using FirewallD. This step-by-step guide covers the installation, configuration, and management of FirewallD, allowing you to control incoming and outgoing network traffic effectively.","og_url":"https:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/","og_site_name":"WebHi Tutorials &amp; Documentations","article_publisher":"https:\/\/www.facebook.com\/webhi.technology","article_published_time":"2023-06-15T09:21:59+00:00","article_modified_time":"2023-06-15T09:26:32+00:00","og_image":[{"url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/06\/firwalld_centos_en.jpg"}],"author":"webhi","twitter_card":"summary_large_image","twitter_creator":"@WebHiTechnology","twitter_site":"@WebHiTechnology","twitter_misc":{"Written by":"webhi","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/#article","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/"},"author":{"name":"webhi","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54"},"headline":"How to setup a Firewall using FirewallD on CentOS and Almalinux","datePublished":"2023-06-15T09:21:59+00:00","dateModified":"2023-06-15T09:26:32+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/"},"wordCount":510,"commentCount":0,"publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"articleSection":["Linux system administration","Security"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/","url":"https:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/","name":"How to setup a Firewall using FirewallD on CentOS and Almalinux - WebHi Tutorials &amp; Documentations","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/#website"},"datePublished":"2023-06-15T09:21:59+00:00","dateModified":"2023-06-15T09:26:32+00:00","description":"Learn how to strengthen the security of your CentOS 7, AlmaLinux or RedHat server by setting up a firewall using FirewallD. This step-by-step guide covers the installation, configuration, and management of FirewallD, allowing you to control incoming and outgoing network traffic effectively.","breadcrumb":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhi.com\/how-to\/how-to-setup-a-firewall-using-firewalld-on-centos-almalinux-redhat\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhi.com\/how-to\/"},{"@type":"ListItem","position":2,"name":"How to setup a Firewall using FirewallD on CentOS and Almalinux"}]},{"@type":"WebSite","@id":"https:\/\/www.webhi.com\/how-to\/#website","url":"https:\/\/www.webhi.com\/how-to\/","name":"WebHi Tutorials &amp; Documentations","description":"System administration and knowledge base","publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webhi.com\/how-to\/#organization","name":"WebHi Technology","url":"https:\/\/www.webhi.com\/how-to\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/","url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","contentUrl":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","width":288,"height":95,"caption":"WebHi Technology"},"image":{"@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webhi.technology","https:\/\/twitter.com\/WebHiTechnology"]},{"@type":"Person","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54","name":"webhi","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/","url":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781819544","contentUrl":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781819544","caption":"webhi"},"sameAs":["https:\/\/www.webhi.com\/how-to"],"url":"https:\/\/www.webhi.com\/how-to\/author\/webhi\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/5698"}],"collection":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/comments?post=5698"}],"version-history":[{"count":8,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/5698\/revisions"}],"predecessor-version":[{"id":5747,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/5698\/revisions\/5747"}],"wp:attachment":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/media?parent=5698"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/categories?post=5698"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/tags?post=5698"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}