{"id":2422,"date":"2025-08-15T12:30:00","date_gmt":"2025-08-15T17:30:00","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=2422"},"modified":"2025-06-17T05:21:58","modified_gmt":"2025-06-17T10:21:58","slug":"how-to-configure-a-static-ip-address-on-almalinux-10","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/","title":{"rendered":"How to configure a Static IP Address on AlmaLinux 10"},"content":{"rendered":"\n<p>In this tutorial we are going to explain how to configure a static IP address on AlmaLinux 10 OS. A static IP address is a unique numerical identifier assigned to a server that remains constant over time. A machine uses an IP address to locate and communicate with other machines (servers or computers) over the Internet. IP addresses are numerical identifiers that enable packets to be sent and received between one network device and another. The tutorial will cover identifying the network interface on your server, editing, and restarting the network service. Configuring a static IP Address on AlmaLinux 10 is a straightforward process that takes a couple of minutes. Let&#8217;s get started!<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\" target=\"_blank\" rel=\"noreferrer noopener\">server running AlmaLinux 10<\/a> OS<\/li>\n\n\n\n<li>User privileges: root or non-root user with sudo privileges<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Update the system<\/h2>\n\n\n\n<p>Before we start with the configuration process of the static IP address, it is recommended to update the system packages to their latest available versions. To do that, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo dnf update -y &amp;&amp; sudo dnf upgrade -y<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Identify the Network Interface<\/h2>\n\n\n\n<p>A network interface is the connection between the device (server in this case) and a network. The network interface can be a physical hardware component or a software-based interface. The common names for network interface are <strong>eth0<\/strong>, <strong>eth1<\/strong>, <strong>ens3<\/strong>, <strong>enp3s0<\/strong> etc.<\/p>\n\n\n\n<p>To detect the network interface execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">ip a<\/pre>\n\n\n\n<p>The output on the server we were using for this blog post was the following one:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@host ~]# ip a\n1: lo:  mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000\n    link\/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00\n    inet 127.0.0.1\/8 scope host lo\n       valid_lft forever preferred_lft forever\n    inet6 ::1\/128 scope host noprefixroute \n       valid_lft forever preferred_lft forever\n2: <strong>eth0<\/strong>:  mtu 1500 qdisc mq state UP group default qlen 1000\n    link\/ether 00:16:3e:79:35:ec brd ff:ff:ff:ff:ff:ff\n    altname enp0s3\n    altname ens3\n    inet <strong>192.168.0.26<\/strong>\/21 brd <strong>192.168.0.255<\/strong> scope global dynamic noprefixroute eth0\n       valid_lft 21556665sec preferred_lft 21556665sec\n    inet6 fe80::69e9:637a:c215:f5d2\/64 scope link noprefixroute \n       valid_lft forever preferred_lft forever\n<\/pre>\n\n\n\n<p>As we can see from the output above, the network interface is <strong>eth0<\/strong> on our system. The IPv4 address is <strong>192.168.0.26<\/strong>. Save your interface name, as you\u2019ll need to know it when following the steps below.<\/p>\n\n\n\n<p>Now, let&#8217;s check for the gateway:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">route -n<\/pre>\n\n\n\n<p>You should get output similar to this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@host etc]# route -n\nKernel IP routing table\nDestination     Gateway         Genmask         Flags Metric Ref    Use Iface\n0.0.0.0         <strong>192.168.0.1<\/strong>     0.0.0.0         UG    100    0        0 eth0\n192.168.0.0   0.0.0.0         255.255.255.0   U     100    0        0 eth0\n<\/pre>\n\n\n\n<p>The gateway is <strong>192.168.0.1<\/strong>.<\/p>\n\n\n\n<p>Last is to check the DNS servers:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cat \/etc\/resolv.conf<\/pre>\n\n\n\n<p>You should get the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@host etc]# cat \/etc\/resolv.conf \n# Generated by NetworkManager\nsearch test.vps\nnameserver 1.1.1.1\nnameserver 8.8.8.8\n<\/pre>\n\n\n\n<p>So we have all the data we need, and now we can proceed to the next paragraph on how to configure a static IP Address on AlmaLinux 10.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Configure static IP address<\/h2>\n\n\n\n<p>From the previous paragraph we have the following information:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Network Interface: <strong>eth0<\/strong>\nIPv4 Address: <strong>192.168.0.26\/21<\/strong>\nGateway: <strong>192.168.0.1<\/strong>\nPreferred DNS: <strong>1.1.1.1<\/strong>, <strong>8.8.8.8<\/strong>\n<\/pre>\n\n\n\n<p>Now, let&#8217;s make the following IP address static using the <strong>nmcli<\/strong>. Nmcli is a command line tool used to control NetworkManager used to change network settings for a specific interface. In the following commands, we use the nmcli utility to set an IP address, default gateway, and DNS server on our <strong>eth0<\/strong> interface.<\/p>\n\n\n\n<p>To set up the IP address use the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nmcli connection modify eth0 IPv4.address 192.168.0.26\/21<\/pre>\n\n\n\n<p>You might get the following output about the <strong>eth0<\/strong> connection not know.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@host ~]# nmcli connection modify eth0 IPv4.address 192.168.0.26\/21\n<strong>Error: unknown connection 'eth0'.<\/strong>\n<\/pre>\n\n\n\n<p>Do not worry about that, because the <strong>eth0<\/strong> is still the network interface, just the name is different and in the nmcli command, we must specify the name of the connection. To check the name of the connection execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nmcli conn show<\/pre>\n\n\n\n<p>You should get output similar to this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">NAME                UUID                                  TYPE      DEVICE <br><strong>Wired connection 1  <\/strong>a6eeb5f0-c075-3ff3-82fb-db1bc39e092e  ethernet  eth0  <br>lo                  cb71db2a-9ecc-419b-86de-d051d81f4e74  loopback  lo     <br>ens3                27196f18-07c8-3029-9af8-e083aada8a3b  ethernet  -<br><\/pre>\n\n\n\n<p>So the name of the <strong>eth0<\/strong> network interface is <strong>Wired connection 1<\/strong> and that is the name we should use in the nmcli command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nmcli connection modify \"Wired connection 1\" IPv4.address 192.168.0.26\/21<\/pre>\n\n\n\n<p>With this command we set the IPv4 address to be 192.168.0.26\/21. Now, let&#8217;s setup the gateway:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nmcli connection modify \"Wired connection 1\" IPv4.gateway 192.168.0.1<\/pre>\n\n\n\n<p>After this we need to set the preffered DNS:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nmcli connection modify \"Wired connection 1\" IPv4.dns \"1.1.1.1 8.8.8.8\"<\/pre>\n\n\n\n<p>And finally we set the method to manual to avoid using any other boot protocol for the interface. The command sets the BOOTPROTO option to none in the interface configuration file.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nmcli connection modify \"Wired connection 1\" IPv4.method manual<\/pre>\n\n\n\n<p>For the changes to take effect we need to restart the network using the device name <strong>eth0<\/strong> now:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nmcli device disconnect eth0 &amp;&amp; nmcli device connect eth0\n<\/pre>\n\n\n\n<p>If everything is OK, we can check the network configuration again with the <strong>nmcli<\/strong> command executed on the command line:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@host ~]# nmcli\neth0: connected to Wired connection 1\n        \"Red Hat Virtio\"\n        ethernet (virtio_net), 00:16:3E:79:35:EC, hw, mtu 1500\n        ip4 default\n        inet4 <strong>192.168.0.26\/21<\/strong>\n        route4 default via <strong>192.168.0.1<\/strong> metric 100\n        route4 192.168.0.0\/21 metric 100\n        inet6 fe80::69e9:637a:c215:f5d2\/64\n        route6 fe80::\/64 metric 1024\n\nlo: connected (externally) to lo\n        \"lo\"\n        loopback (unknown), 00:00:00:00:00:00, sw, mtu 65536\n        inet4 127.0.0.1\/8\n        inet6 ::1\/128\n\nDNS configuration:\n        <strong>servers: 1.1.1.1 8.8.8.8<\/strong>\n        interface: eth0\n<\/pre>\n\n\n\n<p>That&#8217;s it. You successfully configured a static IP address on AlmaLinux 10 OS.<\/p>\n\n\n\n<p>If you liked this post about configuring a static IP address on AlmaLinux 10, please share it with your friends or leave a comment down below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial we are going to explain how to configure a static IP address on AlmaLinux 10 OS. A static IP address is a unique numerical identifier assigned to a server that remains constant over time. A machine uses an IP address to locate and communicate with other machines (servers or computers) over the &#8230; <a title=\"How to configure a Static IP Address on AlmaLinux 10\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/\" aria-label=\"More on How to configure a Static IP Address on AlmaLinux 10\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":2426,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[352],"tags":[351,118,356],"class_list":["post-2422","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-almalinux","tag-almalinux-10","tag-how-to","tag-static-ip-address"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Static IP Address on AlmaLinux 10: Installation and Configuration | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"Learn how to set up and configure a Static IP Address on AlmaLinux 10 using our latest easy-to-follow guide.\" \/>\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.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Static IP Address on AlmaLinux 10: Installation and Configuration | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"Learn how to set up and configure a Static IP Address on AlmaLinux 10 using our latest easy-to-follow guide.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-15T17:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/08\/how-to-configure-a-static-ip-address-on-almalinux-10.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\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\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to configure a Static IP Address on AlmaLinux 10\",\"datePublished\":\"2025-08-15T17:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/\"},\"wordCount\":628,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/08\/how-to-configure-a-static-ip-address-on-almalinux-10.webp\",\"keywords\":[\"almalinux 10\",\"how to\",\"static ip address\"],\"articleSection\":[\"AlmaLinux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/\",\"name\":\"Static IP Address on AlmaLinux 10: Installation and Configuration | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/08\/how-to-configure-a-static-ip-address-on-almalinux-10.webp\",\"datePublished\":\"2025-08-15T17:30:00+00:00\",\"description\":\"Learn how to set up and configure a Static IP Address on AlmaLinux 10 using our latest easy-to-follow guide.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/#primaryimage\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/08\/how-to-configure-a-static-ip-address-on-almalinux-10.webp\",\"contentUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/08\/how-to-configure-a-static-ip-address-on-almalinux-10.webp\",\"width\":742,\"height\":410,\"caption\":\"How to Configure a Static IP Address on AlmaLinux 10\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.linuxcloudvps.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to configure a Static IP Address on AlmaLinux 10\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#website\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png\",\"contentUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"http:\/\/www.facebook.com\/LinuxCloudVPS\",\"https:\/\/x.com\/LinuxCloudVPS\",\"http:\/\/www.linkedin.com\/company\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\/\/www.linuxcloudvps.com\/\"],\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Static IP Address on AlmaLinux 10: Installation and Configuration | LinuxCloudVPS Blog","description":"Learn how to set up and configure a Static IP Address on AlmaLinux 10 using our latest easy-to-follow guide.","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.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/","og_locale":"en_US","og_type":"article","og_title":"Static IP Address on AlmaLinux 10: Installation and Configuration | LinuxCloudVPS Blog","og_description":"Learn how to set up and configure a Static IP Address on AlmaLinux 10 using our latest easy-to-follow guide.","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2025-08-15T17:30:00+00:00","og_image":[{"width":742,"height":410,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/08\/how-to-configure-a-static-ip-address-on-almalinux-10.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to configure a Static IP Address on AlmaLinux 10","datePublished":"2025-08-15T17:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/"},"wordCount":628,"commentCount":0,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/08\/how-to-configure-a-static-ip-address-on-almalinux-10.webp","keywords":["almalinux 10","how to","static ip address"],"articleSection":["AlmaLinux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/","name":"Static IP Address on AlmaLinux 10: Installation and Configuration | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/08\/how-to-configure-a-static-ip-address-on-almalinux-10.webp","datePublished":"2025-08-15T17:30:00+00:00","description":"Learn how to set up and configure a Static IP Address on AlmaLinux 10 using our latest easy-to-follow guide.","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/08\/how-to-configure-a-static-ip-address-on-almalinux-10.webp","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/08\/how-to-configure-a-static-ip-address-on-almalinux-10.webp","width":742,"height":410,"caption":"How to Configure a Static IP Address on AlmaLinux 10"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-configure-a-static-ip-address-on-almalinux-10\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to configure a Static IP Address on AlmaLinux 10"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/2422","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=2422"}],"version-history":[{"count":3,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/2422\/revisions"}],"predecessor-version":[{"id":2425,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/2422\/revisions\/2425"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/2426"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=2422"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=2422"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=2422"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}