{"id":8655,"date":"2026-01-12T10:10:22","date_gmt":"2026-01-12T09:10:22","guid":{"rendered":"https:\/\/www.credativ.de\/?p=8655"},"modified":"2026-01-06T12:09:30","modified_gmt":"2026-01-06T11:09:30","slug":"foreman-in-ipv6-mostly-and-ipv6-only-environments","status":"publish","type":"post","link":"https:\/\/www.credativ.de\/en\/blog\/credativ-inside\/foreman-in-ipv6-mostly-and-ipv6-only-environments\/","title":{"rendered":"Foreman in IPv6-mostly and IPv6-only environments"},"content":{"rendered":"<p>Foreman is clearly rooted in an IPv4 world. You can see it everywhere. Like it does not want to give you a host without IPv4, but without IPv6 is fine. But it does not have to be this way, so let&#8217;s go together on a journey to bring Foreman and the things around it into the present.<br \/>\n<!--more--><\/p>\n<h2>Background<\/h2>\n<p>We start with a typical Foreman installation, used to bootstrap new system installations. This Foreman uses a ISC DHCP server and a TFTP server to provide systems with boot information. It uses a <a href=\"https:\/\/www.credativ.de\/en\/portfolio\/solutions\/automation\/\">Foreman<\/a>-Proxy to configure those DHCP and TFTP servers.<\/p>\n<p>The DHCP server stores leases for every system. For each mac address the DHCP server stores the host name, IPv4 address and the boot file, pointing to a standard PXELinux. The leases are setup by Foreman on every change to its internal state.<\/p>\n<p>The TFTP server stores all files required for booting. The TFTP server serves the static PXELinux binaries. It also stores PXELinux config files for each mac address separately. Those configs tell each system if it should boot an installer or the system on the local storage. Foreman modifies those config files all the time, depending on the internal state.<\/p>\n<p>This means that we have a lot of locations to store data. Not only does Foreman store all information in its own database. But also the DHCP and TFTP server need to store information for normal operation of the overall system. We can restore this information if lost, but this process is manual.<\/p>\n<h2>Booting via iPXE and IPv6<\/h2>\n<p>qemu uses iPXE as the standard PXE loader. libvirt for example uses qemu. iPXE is powerful, it includes its own scripting language. Also it implements IPv6 an a useful state.<\/p>\n<p>iPXE supports scripts. Foreman uses that in the <a href=\"https:\/\/github.com\/theforeman\/foreman\/blob\/develop\/app\/views\/unattended\/provisioning_templates\/iPXE\/ipxe_intermediate_script.erb\">iPXE intermediate script<\/a>, which shows up as &#8220;PXE Loader&#8221; on the &#8220;Operation System&#8221; tab. This script tries the <code>dhcp<\/code> iPXE command on many network devices, which then tries both IPv4 and IPv6 configuration. If iPXE finds some configuration, it asks Foreman for the next boot loader stage, which is also a script that either run an installer or the installed system.<\/p>\n<p>iPXE supports IPv6 in a useful state. iPXE can receive IPv6 Router Advertisements and uses them to set its own host address and gateway. Also it uses the &#8220;other information&#8221; flag to enable the DHCPv6 client on request. It then asks via DHCPv6 for additional config, like the boot file. The boot file points to the next stage loader, so is a critical piece of information.<\/p>\n<p><code>dnsmasq<\/code> can provide both Router Advertisements and stateless DHCPv6.<\/p>\n<figure><figcaption>Listing: dnsmasq config to enable Router Advertisements, stateless DHCPv6 and iPXE bootstrap<\/figcaption><code><\/code><\/p>\n<pre>dhcp-range=2001:db8::,ra-stateless\r\ndhcp-option=option6:bootfile-url,http:\/\/foreman.example.com\/unattended\/iPXE?bootstrap=1\r\n<\/pre>\n<\/figure>\n<h2>Booting via UEFI and IPv6<\/h2>\n<p>If you have a current iPXE, the whole thing is easy. But now UEFI comes into play. UEFI also needs a network stack and qemu provides iPXE for that. But iPXE provides only network access, UEFI itself does the communication. But UEFI would not be UEFI if it would do things sensibly. This means at least the reference implementation EDK2 does not support Router Advertisements, just stateful DHCPv6.<\/p>\n<p>But the lack of the iPXE core functionality also means we loose an important feature we leveraged above, the scripting language. So even with DHCPv6 providing addresses, the only thing this setup can now do is loading UEFI binaries.<\/p>\n<p>But we still have a full iPXE for EFI, just as standalone binary. We can load this binary via TFTP and then reuse the same boot chain as without UEFI. Just be aware it is much slower, as UEFI takes minutes trying to boot via IPv4.<\/p>\n<figure><figcaption>Listing: dnsmasq config to enable stateful DHCPv6 and TFTP chain loading<\/figcaption><code><\/code><\/p>\n<pre>dhcp-range=2001:db8::1,2001:db8::ffff\r\ndhcp-option=option6:dns-server,[2001:db8::]\r\ndhcp-option=tag:pxe-amd64,option6:bootfile-url,tftp:\/\/2001:db8::\/ipxe-amd64.efi\r\ndhcp-vendorclass=set:pxe-amd64,enterprise:343,PXEClient:Arch:00007:UNDI:003001\r\nenable-tftp\r\ntftp-root=\/usr\/lib\/ipxe\/\r\n<\/pre>\n<p>&nbsp;<\/figure>\n<h2>Bugs<\/h2>\n<p>Of cause we found bugs, but for all of them we have workarounds.<\/p>\n<h3>Foreman and IPv6-only<\/h3>\n<p>Foreman does not really like the IPv4 network to be empty. If you try to unset the IPv4 network in the interface config, it just adds one back. I did not write a bug report for this yet.<\/p>\n<p>A workaround I found is:<\/p>\n<ul>\n<li>Create a subnet using the IPv4 link-local range <code>169.254.0.0\/16<\/code>.<\/li>\n<li>Assign this network to the interface.<\/li>\n<\/ul>\n<p>The network information vanishes then and only the IPv6 network remains.<\/p>\n<h3>iPXE provides bogus parameter to preseed<\/h3>\n<p>The &#8220;preseed_kernel_options&#8221; template snippet adds to the command line for preseed (aka Debian) <code>netcfg\/get_ipaddress=${netX\/ip}<\/code>. This uses internal iPXE variables, which are empty if no DHCPv4 exists. Filed as <a href=\"https:\/\/projects.theforeman.org\/issues\/38536\">issue #38536<\/a>.<\/p>\n<figure><figcaption>Listing: workaround for &#8220;Preseed default iPXE&#8221; template<\/figcaption><code><\/code><\/p>\n<pre>--- a\/app\/views\/unattended\/provisioning_templates\/iPXE\/preseed_default_ipxe.erb\r\n+++ b\/app\/views\/unattended\/provisioning_templates\/iPXE\/preseed_default_ipxe.erb\r\n@@ -36,7 +36,7 @@ ping --count 1 ${netX\/dns} || echo Ping to DNS failed or ping command not availa\r\n &lt;% kernel = boot_files_uris[0] -%&gt;\r\n &lt;% initrd = boot_files_uris[1] -%&gt;\r\n \r\n-kernel &lt;%= kernel %&gt; initrd=initrd.img interface=auto url=&lt;%= url %&gt; ramdisk_size=10800 root=\/dev\/rd\/0 rw auto &lt;%= snippet(\"preseed_kernel_options\", variables: {ipxe_net: true}).strip %&gt;\r\n+kernel &lt;%= kernel %&gt; initrd=initrd.img interface=auto url=&lt;%= url %&gt; ramdisk_size=10800 root=\/dev\/rd\/0 rw auto &lt;%= snippet(\"preseed_kernel_options\").strip %&gt;\r\n \r\n initrd &lt;%= initrd %&gt;\r\n \r\n<\/pre>\n<\/figure>\n<h2>Conclusion<\/h2>\n<p>It needs a bit of work, but Foreman can work both in IPv6-mostly and IPv6-only environments. All communication between managed systems and Foreman including support services uses IPv6 if configured this way.<\/p>\n<p>We also removed multiple services that store data. Like the ISC DHCP server and the TFTP server. The replacement is mostly stateless.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Foreman is clearly rooted in an IPv4 world. You can see it everywhere. Like it does not want to give you a host without IPv4, but without IPv6 is fine. But it does not have to be this way, so let&#8217;s go together on a journey to bring Foreman and the things around it into [&hellip;]<\/p>\n","protected":false},"author":13,"featured_media":9282,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_improvement_type_select":"improve_an_existing","_thumb_yes_seoaic":false,"_frame_yes_seoaic":false,"seoaic_generate_description":"","seoaic_improve_instructions_prompt":"","seoaic_rollback_content_improvement":"","seoaic_idea_thumbnail_generator":"","thumbnail_generated":false,"thumbnail_generate_prompt":"","seoaic_article_description":"","seoaic_article_subtitles":[],"footnotes":""},"categories":[2053,3,1885],"tags":[1775,2175,1741],"class_list":["post-8655","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-automation","category-credativ-inside","category-howtos-en","tag-debian-en","tag-devops","tag-foreman-en"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Foreman in IPv6-mostly and IPv6-only environments - credativ\u00ae<\/title>\n<meta name=\"description\" content=\"Bring Foreman into the present with an ipv6-only configuration for an effective and future-proof system.\" \/>\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.credativ.de\/en\/blog\/credativ-inside\/foreman-in-ipv6-mostly-and-ipv6-only-environments\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Foreman in IPv6-mostly and IPv6-only environments\" \/>\n<meta property=\"og:description\" content=\"Bring Foreman into the present with an ipv6-only configuration for an effective and future-proof system.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.credativ.de\/en\/blog\/credativ-inside\/foreman-in-ipv6-mostly-and-ipv6-only-environments\/\" \/>\n<meta property=\"og:site_name\" content=\"credativ\u00ae\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/credativDE\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-12T09:10:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/07\/foreman_host_statuses.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2134\" \/>\n\t<meta property=\"og:image:height\" content=\"310\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Bastian\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@credativde\" \/>\n<meta name=\"twitter:site\" content=\"@credativde\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Bastian\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/credativ-inside\\\/foreman-in-ipv6-mostly-and-ipv6-only-environments\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/credativ-inside\\\/foreman-in-ipv6-mostly-and-ipv6-only-environments\\\/\"},\"author\":{\"name\":\"Bastian\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#\\\/schema\\\/person\\\/d3926a0efd1be59d4f649dc11e7d45f2\"},\"headline\":\"Foreman in IPv6-mostly and IPv6-only environments\",\"datePublished\":\"2026-01-12T09:10:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/credativ-inside\\\/foreman-in-ipv6-mostly-and-ipv6-only-environments\\\/\"},\"wordCount\":808,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/credativ-inside\\\/foreman-in-ipv6-mostly-and-ipv6-only-environments\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.credativ.de\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/foreman_host_statuses.png\",\"keywords\":[\"Debian\",\"DevOps\",\"Foreman\"],\"articleSection\":[\"Automation\",\"credativ\u00ae Inside\",\"HowTos\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/credativ-inside\\\/foreman-in-ipv6-mostly-and-ipv6-only-environments\\\/#respond\"]}],\"copyrightYear\":\"2026\",\"copyrightHolder\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/credativ-inside\\\/foreman-in-ipv6-mostly-and-ipv6-only-environments\\\/\",\"url\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/credativ-inside\\\/foreman-in-ipv6-mostly-and-ipv6-only-environments\\\/\",\"name\":\"Foreman in IPv6-mostly and IPv6-only environments - credativ\u00ae\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/credativ-inside\\\/foreman-in-ipv6-mostly-and-ipv6-only-environments\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/credativ-inside\\\/foreman-in-ipv6-mostly-and-ipv6-only-environments\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.credativ.de\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/foreman_host_statuses.png\",\"datePublished\":\"2026-01-12T09:10:22+00:00\",\"description\":\"Bring Foreman into the present with an ipv6-only configuration for an effective and future-proof system.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/credativ-inside\\\/foreman-in-ipv6-mostly-and-ipv6-only-environments\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/credativ-inside\\\/foreman-in-ipv6-mostly-and-ipv6-only-environments\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/credativ-inside\\\/foreman-in-ipv6-mostly-and-ipv6-only-environments\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.credativ.de\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/foreman_host_statuses.png\",\"contentUrl\":\"https:\\\/\\\/www.credativ.de\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/foreman_host_statuses.png\",\"width\":2134,\"height\":310},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/credativ-inside\\\/foreman-in-ipv6-mostly-and-ipv6-only-environments\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Foreman in IPv6-mostly and IPv6-only environments\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/\",\"name\":\"credativ GmbH\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Organization\",\"Place\"],\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#organization\",\"name\":\"credativ\u00ae\",\"url\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/\",\"logo\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/credativ-inside\\\/foreman-in-ipv6-mostly-and-ipv6-only-environments\\\/#local-main-organization-logo\"},\"image\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/credativ-inside\\\/foreman-in-ipv6-mostly-and-ipv6-only-environments\\\/#local-main-organization-logo\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/credativDE\\\/\",\"https:\\\/\\\/x.com\\\/credativde\",\"https:\\\/\\\/mastodon.social\\\/@credativde\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/credativ-gmbh\",\"https:\\\/\\\/www.instagram.com\\\/credativ\\\/\"],\"description\":\"Die credativ GmbH ist ein f\u00fchrendes, auf Open Source Software spezialisiertes IT-Dienstleistungs- und Beratungsunternehmen. Wir bieten umfassende und professionelle Services, von Beratung und Infrastruktur-Betrieb \u00fcber 24\\\/7 Support bis hin zu individuellen L\u00f6sungen und Schulungen. Unser Fokus liegt auf dem ganzheitlichen Management von gesch\u00e4ftskritischen Open-Source-Systemen, darunter Betriebssysteme (z.B. Linux), Datenbanken (z.B. PostgreSQL), Konfigurationsmanagement (z.B. Ansible, Puppet) und Virtualisierung. Als engagierter Teil der Open-Source-Community unterst\u00fctzen wir unsere Kunden dabei, die Vorteile freier Software sicher, stabil und effizient in ihrer IT-Umgebung zu nutzen.\",\"legalName\":\"credativ GmbH\",\"foundingDate\":\"2025-03-01\",\"duns\":\"316387060\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"},\"address\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/credativ-inside\\\/foreman-in-ipv6-mostly-and-ipv6-only-environments\\\/#local-main-place-address\"},\"geo\":{\"@type\":\"GeoCoordinates\",\"latitude\":\"51.1732374\",\"longitude\":\"6.392010099999999\"},\"telephone\":[\"+4921619174200\",\"08002733284\"],\"contactPoint\":{\"@type\":\"ContactPoint\",\"telephone\":\"08002733284\",\"email\":\"vertrieb@credativ.de\"},\"openingHoursSpecification\":[{\"@type\":\"OpeningHoursSpecification\",\"dayOfWeek\":[\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\"],\"opens\":\"09:00\",\"closes\":\"17:00\"},{\"@type\":\"OpeningHoursSpecification\",\"dayOfWeek\":[\"Saturday\",\"Sunday\"],\"opens\":\"00:00\",\"closes\":\"00:00\"}],\"email\":\"info@credativ.de\",\"areaServed\":\"D-A-CH\",\"vatID\":\"DE452151696\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#\\\/schema\\\/person\\\/d3926a0efd1be59d4f649dc11e7d45f2\",\"name\":\"Bastian\"},{\"@type\":\"PostalAddress\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/credativ-inside\\\/foreman-in-ipv6-mostly-and-ipv6-only-environments\\\/#local-main-place-address\",\"streetAddress\":\"Hennes-Weisweiler-Allee 23\",\"addressLocality\":\"M\u00f6nchengladbach\",\"postalCode\":\"41179\",\"addressRegion\":\"Deutschland\",\"addressCountry\":\"DE\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/credativ-inside\\\/foreman-in-ipv6-mostly-and-ipv6-only-environments\\\/#local-main-organization-logo\",\"url\":\"https:\\\/\\\/www.credativ.de\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/credativ-logo-right.svg\",\"contentUrl\":\"https:\\\/\\\/www.credativ.de\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/credativ-logo-right.svg\",\"caption\":\"credativ\u00ae\"}]}<\/script>\n<meta name=\"geo.placename\" content=\"M\u00f6nchengladbach\" \/>\n<meta name=\"geo.position\" content=\"51.1732374;6.392010099999999\" \/>\n<meta name=\"geo.region\" content=\"Germany\" \/>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Foreman in IPv6-mostly and IPv6-only environments - credativ\u00ae","description":"Bring Foreman into the present with an ipv6-only configuration for an effective and future-proof system.","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.credativ.de\/en\/blog\/credativ-inside\/foreman-in-ipv6-mostly-and-ipv6-only-environments\/","og_locale":"en_US","og_type":"article","og_title":"Foreman in IPv6-mostly and IPv6-only environments","og_description":"Bring Foreman into the present with an ipv6-only configuration for an effective and future-proof system.","og_url":"https:\/\/www.credativ.de\/en\/blog\/credativ-inside\/foreman-in-ipv6-mostly-and-ipv6-only-environments\/","og_site_name":"credativ\u00ae","article_publisher":"https:\/\/www.facebook.com\/credativDE\/","article_published_time":"2026-01-12T09:10:22+00:00","og_image":[{"width":2134,"height":310,"url":"https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/07\/foreman_host_statuses.png","type":"image\/png"}],"author":"Bastian","twitter_card":"summary_large_image","twitter_creator":"@credativde","twitter_site":"@credativde","twitter_misc":{"Written by":"Bastian","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.credativ.de\/en\/blog\/credativ-inside\/foreman-in-ipv6-mostly-and-ipv6-only-environments\/#article","isPartOf":{"@id":"https:\/\/www.credativ.de\/en\/blog\/credativ-inside\/foreman-in-ipv6-mostly-and-ipv6-only-environments\/"},"author":{"name":"Bastian","@id":"https:\/\/www.credativ.de\/en\/#\/schema\/person\/d3926a0efd1be59d4f649dc11e7d45f2"},"headline":"Foreman in IPv6-mostly and IPv6-only environments","datePublished":"2026-01-12T09:10:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.credativ.de\/en\/blog\/credativ-inside\/foreman-in-ipv6-mostly-and-ipv6-only-environments\/"},"wordCount":808,"commentCount":0,"publisher":{"@id":"https:\/\/www.credativ.de\/en\/#organization"},"image":{"@id":"https:\/\/www.credativ.de\/en\/blog\/credativ-inside\/foreman-in-ipv6-mostly-and-ipv6-only-environments\/#primaryimage"},"thumbnailUrl":"https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/07\/foreman_host_statuses.png","keywords":["Debian","DevOps","Foreman"],"articleSection":["Automation","credativ\u00ae Inside","HowTos"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.credativ.de\/en\/blog\/credativ-inside\/foreman-in-ipv6-mostly-and-ipv6-only-environments\/#respond"]}],"copyrightYear":"2026","copyrightHolder":{"@id":"https:\/\/www.credativ.de\/#organization"}},{"@type":"WebPage","@id":"https:\/\/www.credativ.de\/en\/blog\/credativ-inside\/foreman-in-ipv6-mostly-and-ipv6-only-environments\/","url":"https:\/\/www.credativ.de\/en\/blog\/credativ-inside\/foreman-in-ipv6-mostly-and-ipv6-only-environments\/","name":"Foreman in IPv6-mostly and IPv6-only environments - credativ\u00ae","isPartOf":{"@id":"https:\/\/www.credativ.de\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.credativ.de\/en\/blog\/credativ-inside\/foreman-in-ipv6-mostly-and-ipv6-only-environments\/#primaryimage"},"image":{"@id":"https:\/\/www.credativ.de\/en\/blog\/credativ-inside\/foreman-in-ipv6-mostly-and-ipv6-only-environments\/#primaryimage"},"thumbnailUrl":"https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/07\/foreman_host_statuses.png","datePublished":"2026-01-12T09:10:22+00:00","description":"Bring Foreman into the present with an ipv6-only configuration for an effective and future-proof system.","breadcrumb":{"@id":"https:\/\/www.credativ.de\/en\/blog\/credativ-inside\/foreman-in-ipv6-mostly-and-ipv6-only-environments\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.credativ.de\/en\/blog\/credativ-inside\/foreman-in-ipv6-mostly-and-ipv6-only-environments\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.credativ.de\/en\/blog\/credativ-inside\/foreman-in-ipv6-mostly-and-ipv6-only-environments\/#primaryimage","url":"https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/07\/foreman_host_statuses.png","contentUrl":"https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/07\/foreman_host_statuses.png","width":2134,"height":310},{"@type":"BreadcrumbList","@id":"https:\/\/www.credativ.de\/en\/blog\/credativ-inside\/foreman-in-ipv6-mostly-and-ipv6-only-environments\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.credativ.de\/en\/"},{"@type":"ListItem","position":2,"name":"Foreman in IPv6-mostly and IPv6-only environments"}]},{"@type":"WebSite","@id":"https:\/\/www.credativ.de\/en\/#website","url":"https:\/\/www.credativ.de\/en\/","name":"credativ GmbH","description":"","publisher":{"@id":"https:\/\/www.credativ.de\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.credativ.de\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Organization","Place"],"@id":"https:\/\/www.credativ.de\/en\/#organization","name":"credativ\u00ae","url":"https:\/\/www.credativ.de\/en\/","logo":{"@id":"https:\/\/www.credativ.de\/en\/blog\/credativ-inside\/foreman-in-ipv6-mostly-and-ipv6-only-environments\/#local-main-organization-logo"},"image":{"@id":"https:\/\/www.credativ.de\/en\/blog\/credativ-inside\/foreman-in-ipv6-mostly-and-ipv6-only-environments\/#local-main-organization-logo"},"sameAs":["https:\/\/www.facebook.com\/credativDE\/","https:\/\/x.com\/credativde","https:\/\/mastodon.social\/@credativde","https:\/\/www.linkedin.com\/company\/credativ-gmbh","https:\/\/www.instagram.com\/credativ\/"],"description":"Die credativ GmbH ist ein f\u00fchrendes, auf Open Source Software spezialisiertes IT-Dienstleistungs- und Beratungsunternehmen. Wir bieten umfassende und professionelle Services, von Beratung und Infrastruktur-Betrieb \u00fcber 24\/7 Support bis hin zu individuellen L\u00f6sungen und Schulungen. Unser Fokus liegt auf dem ganzheitlichen Management von gesch\u00e4ftskritischen Open-Source-Systemen, darunter Betriebssysteme (z.B. Linux), Datenbanken (z.B. PostgreSQL), Konfigurationsmanagement (z.B. Ansible, Puppet) und Virtualisierung. Als engagierter Teil der Open-Source-Community unterst\u00fctzen wir unsere Kunden dabei, die Vorteile freier Software sicher, stabil und effizient in ihrer IT-Umgebung zu nutzen.","legalName":"credativ GmbH","foundingDate":"2025-03-01","duns":"316387060","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"},"address":{"@id":"https:\/\/www.credativ.de\/en\/blog\/credativ-inside\/foreman-in-ipv6-mostly-and-ipv6-only-environments\/#local-main-place-address"},"geo":{"@type":"GeoCoordinates","latitude":"51.1732374","longitude":"6.392010099999999"},"telephone":["+4921619174200","08002733284"],"contactPoint":{"@type":"ContactPoint","telephone":"08002733284","email":"vertrieb@credativ.de"},"openingHoursSpecification":[{"@type":"OpeningHoursSpecification","dayOfWeek":["Monday","Tuesday","Wednesday","Thursday","Friday"],"opens":"09:00","closes":"17:00"},{"@type":"OpeningHoursSpecification","dayOfWeek":["Saturday","Sunday"],"opens":"00:00","closes":"00:00"}],"email":"info@credativ.de","areaServed":"D-A-CH","vatID":"DE452151696"},{"@type":"Person","@id":"https:\/\/www.credativ.de\/en\/#\/schema\/person\/d3926a0efd1be59d4f649dc11e7d45f2","name":"Bastian"},{"@type":"PostalAddress","@id":"https:\/\/www.credativ.de\/en\/blog\/credativ-inside\/foreman-in-ipv6-mostly-and-ipv6-only-environments\/#local-main-place-address","streetAddress":"Hennes-Weisweiler-Allee 23","addressLocality":"M\u00f6nchengladbach","postalCode":"41179","addressRegion":"Deutschland","addressCountry":"DE"},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.credativ.de\/en\/blog\/credativ-inside\/foreman-in-ipv6-mostly-and-ipv6-only-environments\/#local-main-organization-logo","url":"https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/04\/credativ-logo-right.svg","contentUrl":"https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/04\/credativ-logo-right.svg","caption":"credativ\u00ae"}]},"geo.placename":"M\u00f6nchengladbach","geo.position":{"lat":"51.1732374","long":"6.392010099999999"},"geo.region":"Germany"},"_links":{"self":[{"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/posts\/8655","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/users\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/comments?post=8655"}],"version-history":[{"count":28,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/posts\/8655\/revisions"}],"predecessor-version":[{"id":10624,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/posts\/8655\/revisions\/10624"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/media\/9282"}],"wp:attachment":[{"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/media?parent=8655"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/categories?post=8655"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/tags?post=8655"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}