<link href="/user/plugins/datatables/assets/datatables.min.css" type="text/css" rel="stylesheet"> <link href="/user/plugins/markdown-notices/assets/notices.css" type="text/css" rel="stylesheet"> <link href="/user/plugins/form/assets/form-styles.css" type="text/css" rel="stylesheet"> <link href="/user/plugins/simplesearch/css/simplesearch.css" type="text/css" rel="stylesheet"> <link href="/user/plugins/highlight/css/default.css" type="text/css" rel="stylesheet"> <link href="/user/plugins/login/css/login.css" type="text/css" rel="stylesheet"> <link href="/user/themes/imagefactory/css/components.min.css" type="text/css" rel="stylesheet"> <link href="/user/themes/imagefactory/css/otc.css" type="text/css" rel="stylesheet"> <script src="/user/themes/imagefactory/js/jquery.min.js"></script> <script src="/user/plugins/datatables/assets/datatables.min.js"></script> <script src="/user/plugins/highlight/js/highlight.pack.js"></script> <script src="/user/themes/imagefactory/js/components.min.js"></script> <script src="/user/themes/imagefactory/js/totop.js"></script> <script> hljs.initHighlightingOnLoad(); </script>
Brand Claim Brand Claim
by Mushtaq, Obaid

SLES Private Image Creation

<h2>Background</h2> <p>Some customers encountered network issues after creating private images based on our latest SLES 15 SP6 image. The problem was related to DHCP lease files not being properly cleaned up. </p> <p>To prevent this, in addition to using <code>sysprep</code> or a custom cleanup script before creating a private image from an OTC instance, the DHCP lease information must be cleared. Otherwise, it can cause DHCP-related issues. </p> <h2>Solution</h2> <p>The issue was caused by leftover lease files from <code>wicked</code>. To resolve this, delete the lease files before creating an image from the instance: </p> <pre><code class="language-bash"> ls -l /var/lib/wicked/duid.xml ls -l /var/lib/wicked/lease* rm /var/lib/wicked/duid.xml /var/lib/wicked/lease*</code></pre>