<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Security &amp; SSL Certificates &#8211; Edgenexus Knowledge Base</title>
	<atom:link href="https://kb.edgenexus.io/kb/category/security-ssl/feed/" rel="self" type="application/rss+xml" />
	<link>https://kb.edgenexus.io</link>
	<description></description>
	<lastBuildDate>Wed, 05 Feb 2025 11:12:36 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>

<image>
	<url>https://kb.edgenexus.io/wp-content/uploads/2024/09/cropped-Edgenexus-KB-Icon-3webp-32x32.png</url>
	<title>Security &amp; SSL Certificates &#8211; Edgenexus Knowledge Base</title>
	<link>https://kb.edgenexus.io</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Anatomy of a custom cipher jetPACK, and some examples</title>
		<link>https://kb.edgenexus.io/kb/anatomy-of-a-custom-cipher-jetpack-and-some-examples/</link>
		
		<dc:creator><![CDATA[jsavoor@edgenexus.io]]></dc:creator>
		<pubDate>Wed, 05 Feb 2025 11:09:40 +0000</pubDate>
				<guid isPermaLink="false">https://kb.edgenexus.io/?post_type=epkb_post_type_1&#038;p=585</guid>

					<description><![CDATA[What is a Cipher jetPACK? A jetPACK is a small text file comprising configuration instructions for the EdgeADC. A jetPACK could be anything from a Cipher to a configuration setting. jetPACKS are very easy to create, but please ensure you know what you are doing when you create one. If in any doubt, please email [&#8230;]]]></description>
										<content:encoded><![CDATA[<h3 class="wp-block-heading">What is a Cipher jetPACK?</h3>
<p>A jetPACK is a small text file comprising configuration instructions for the EdgeADC. A jetPACK could be anything from a Cipher to a configuration setting. jetPACKS are very easy to create, but please ensure you know what you are doing when you create one. If in any doubt, please email Edgenexus Support.</p>
<h3 class="wp-block-heading">Anatomy of a Cipher jetPACK</h3>
<p>Let&#8217;s take a look at a jetPACK.</p>
<pre class="wp-block-code"><code>#!jetpack
&#91;jetnexusdaemon-cipher-No_SSLv3_No_TLSv1_No_TLSv1.1_No_RC4_No_CBC-strong]
Cipher="ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:RSA+AESGCM:RSA+AES:HIGH:!3DES:!aNULL:!MD5:!DSS:!MD5:!aNULL:!EDH:!RC4:!SHA1:!SHA256:!SHA384"
Cipher1=""
Cipher2=""
CipherOptions="NO_SSLv3,NO_TLSv1,NO_TLSv1.1,CIPHER_SERVER_PREFERENCE"
Description="No-TLSv1 No-TLSv1.1 No-SSLv3 No-RC4 No-CBC strong"</code></pre>
<h3 class="wp-block-heading">jetPACK examples</h3>
<h4 class="wp-block-heading">Strong Ciphers</h4>
<p>This will add the ability to choose “Strong Ciphers” from the Cipher options list.<br>Cipher = ALL:RC4+RSA:+RC4:+HIGH:!DES-CBC3-SHA:!SSLv2:!ADH:!EXP:!ADHexport:!MD5</p>
<pre class="wp-block-preformatted">#!jetpack
[jetnexusdaemon-cipher-No_SSLv3_No_TLSv1_No_RC4_stronger]
Cipher="ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:RSA+AESGCM:RSA+AES:HIGH:!3DES:!aNULL:!MD5:!DSS:!MD5:!aNULL:!EDH:!RC4"
Cipher1=""
Cipher2=""
CipherOptions="NO_SSLv3,NO_TLSv1,CIPHER_SERVER_PREFERENCE"
Description="No-TLSv1 No-SSLv3 No-RC4-stronger"</pre>
<h4 class="wp-block-heading">Anti-Beast</h4>
<p>This will add the ability to choose “Anti Beast” from the Cipher Options list.<br>Cipher = ECDHE-RSA-AES128-SHA256:AES128-GCM-SHA256:RC4:HIGH:!MD5:!aNULL:!EDH</p>
<pre class="wp-block-preformatted">#!update<br><br>[jetnexusdaemon-cipher-antiBEAST]<br>Cipher="ECDHE-RSA-AES128-SHA256:AES128-GCM-SHA256:RC4:HIGH:!MD5:!aNULL:!EDH"<br>CipherOptions="CIPHER_SERVER_PREFERENCE"<br>CipherSuppressVersionAll=<br>Description="Anti Beast"</pre>
<h4 class="wp-block-heading">No SSLv3</h4>
<p>This will add the ability to choose “No SSLv3” from the Cipher Options list.<br>Cipher =  ECDHE-RSA-AES128-SHA256:AES128-GCM-SHA256:HIGH:!MD5:!aNULL:!EDH:!RC4</p>
<pre class="wp-block-preformatted">#!update

[jetnexusdaemon-cipher-NOSSLv3]
Cipher="ECDHE-RSA-AES128-SHA256:AES128-GCM-SHA256:HIGH:!MD5:!aNULL:!EDH:!RC4"
Cipher1=""
Cipher2=""
CipherOptions="NO_SSLv3,CIPHER_SERVER_PREFERENCE"
Description="No SSLv3"</pre>
<h4 class="wp-block-heading">No SSLv3 No TLSv1 No RC4</h4>
<p>This will add the ability to choose “No-TLSv1 No-SSLv3 No-RC4” from the Cipher Options list.<br>Cipher =  ECDHE-RSA-AES128-SHA256:AES128-GCM-SHA256:HIGH:!MD5:!aNULL:!EDH:!RC4</p>
<pre class="wp-block-preformatted">#!update

[jetnexusdaemon-cipher-No-SSLv3-No-TLSv1-No-RC4]
Cipher="ECDHE-RSA-AES128-SHA256:AES128-GCM-SHA256:HIGH:!MD5:!aNULL:!EDH:!RC4"
Cipher1=""
Cipher2=""
CipherOptions="NO_SSLv3,NO_TLSv1,CIPHER_SERVER_PREFERENCE"
Description="No-TLSv1 No-SSLv3 No-RC4"</pre>
<h4 class="wp-block-heading">No TLSv1</h4>
<p>This will add the ability to choose “NO_TLSv1.1” from the Cipher Options list.<br>Cipher= ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128: DH+AES:RSA+AESGCM:RSA+AES:HIGH:!3DES:!aNULL:!MD5:!DSS:!MD5:!aNULL:!EDH:!RC4</p>
<pre class="wp-block-preformatted">#!jetpack

[cipher-No-SSLv3-No-TLSv1.0-v1.1-No-RC4-strong] 
Cipher="ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:RSA+AESGCM:RSA+AES:HIGH:!3DES:!aNULL:!MD5:!DSS:!MD5:!aNULL:!EDH:!RC4" 
Cipher1="" 
Cipher2="" 
CipherOptions="NO_SSLv3,NO_TLSv1,NO_TLSv1.1,CIPHER_SERVER_PREFERENCE" 
Description="No-TLSv1 v1.1 No-SSLv3 No-RC4-strong"</pre>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Enabling, Disabling and Adding Ciphers on the EdgeADC</title>
		<link>https://kb.edgenexus.io/kb/enabling-disabling-and-adding-ciphers-on-the-edgeadc/</link>
		
		<dc:creator><![CDATA[jsavoor@edgenexus.io]]></dc:creator>
		<pubDate>Wed, 05 Feb 2025 10:28:11 +0000</pubDate>
				<guid isPermaLink="false">https://kb.edgenexus.io/?post_type=epkb_post_type_1&#038;p=579</guid>

					<description><![CDATA[There are occasions when you may wish to enable or disable, or even add new ciphers in the EdgeADC. Below is a list of Ciphers and the method for uploading what we refer to as jetPACK. Each Cipher is a text module and must be saved to your local computer as a text file using [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>There are occasions when you may wish to enable or disable, or even add new ciphers in the EdgeADC.</p>
<p>Below is a list of Ciphers and the method for uploading what we refer to as jetPACK. Each Cipher is a text module and must be saved to your local computer as a text file using a plain text editor such as Notepad or Visual Code Editor. Do not use editors such as Word, etc., to do this, as they add hidden characters that will disrupt the ADC and may require advanced support. Remember to give it an appropriate name when you save it with an extension of .txt.</p>
<h3 class="wp-block-heading">Uploading a jetPACK</h3>
<p>Please follow the instructions below to upload the jetPACK.</p>
<ul class="wp-block-list">
<li>Log into the ADC using admin credentials.</li>
<li>Navigate to Advanced &gt; Configuration.</li>
</ul>
<figure class="wp-block-image size-full is-resized"><img fetchpriority="high" decoding="async" width="975" height="340" src="https://kb.edgenexus.io/wp-content/uploads/2025/02/image.png" alt="" class="wp-image-580" style="width:583px;height:auto" srcset="https://kb.edgenexus.io/wp-content/uploads/2025/02/image.png 975w, https://kb.edgenexus.io/wp-content/uploads/2025/02/image-300x105.png 300w, https://kb.edgenexus.io/wp-content/uploads/2025/02/image-768x268.png 768w" sizes="(max-width: 975px) 100vw, 975px" /></figure>
<ul class="wp-block-list">
<li>Click the Browse button.</li>
<li>Navigate to, and open the jetPACK you need.</li>
<li>Click the Upload Config or jetPACK button.</li>
<li>The jetPACK will now be uploaded and available from the IP Services &gt; Real Servers &gt; Advanced Tab</li>
</ul>
<figure class="wp-block-image size-full"><img decoding="async" width="2552" height="1240" src="https://kb.edgenexus.io/wp-content/uploads/2025/02/2025-02-05_10-16-27.gif" alt="" class="wp-image-581"/></figure>
<p>You can find more information in the <a href="https://kb.edgenexus.io/kb/anatomy-of-a-custom-cipher-jetpack-and-some-examples/" data-type="epkb_post_type_1" data-id="585">jetPACKs article</a>.</p></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Updating an existing SSL certificate that is in use</title>
		<link>https://kb.edgenexus.io/kb/updating-an-existing-ssl-certificate-that-is-in-use/</link>
		
		<dc:creator><![CDATA[jsavoor@edgenexus.io]]></dc:creator>
		<pubDate>Fri, 24 Jan 2025 15:07:43 +0000</pubDate>
				<guid isPermaLink="false">https://kb.edgenexus.io/?post_type=epkb_post_type_1&#038;p=571</guid>

					<description><![CDATA[If you are using SSL Offload or SSL re-encryption for your Layer 7 connections, there will come a time when you need to renew the SSL certificate. Importing a brand new SSL certificate manually ordered Please follow the steps below to import the new SSL certificate that you have received from the Trusted Authority. IMPORTANT [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>If you are using SSL Offload or SSL re-encryption for your Layer 7 connections, there will come a time when you need to renew the SSL certificate.</p>
<ul class="wp-block-list">
<li>This process must be planned and take great care when acting, or it can lead to unplanned downtime and error messages being shown to the user.</li>
<li>Let&#8217;s assume you have an SSL certificate that you have created or imported in that you have named &#8220;Web_Certificate&#8221;, and it is nearing its expiry date.</li>
</ul>
<h3 class="wp-block-heading">Importing a brand new SSL certificate manually ordered</h3>
<p>Please follow the steps below to import the new SSL certificate that you have received from the Trusted Authority.</p>
<ul class="wp-block-list">
<li>In version 4.x of the ADC we only support import of PFX format certificates. If your certificate authority has provided you a certificate in any other format, please make sure you convert it to PFX format. You can do this by using tools found online, such as <a href="https://www.thesslstore.com/knowledgebase/ssl-support/convert-ssl-certificate-to-pfx-sslshopper/" data-type="link" data-id="https://www.thesslstore.com/knowledgebase/ssl-support/convert-ssl-certificate-to-pfx-sslshopper/">The SSL Store</a>, or using an OpenSSL commands depending on what format your certificate is. See <a href="https://knowledge.digicert.com/solution/how-to-convert-a-certificate-into-the-appropriate-format" target="_blank" rel="noreferrer noopener">Digicert</a>.</li>
<li>Select your existing SSL Certificate from the list of certificates.</li>
<li>This is VERY IMPORTANT.</li>
<li class="has-vivid-red-color has-text-color has-link-color wp-elements-d8097f92f2fc1c64f3a66839710f50a5"><strong>DO NOT CLICK THE RENEW BUTTON</strong> after selecting your existing certificate from the list.</li>
</ul>
<figure class="wp-block-image size-full is-resized"><img decoding="async" width="973" height="507" src="https://kb.edgenexus.io/wp-content/uploads/2025/01/2025-01-24_12-03-53.png" alt="" class="wp-image-573" style="width:526px;height:auto" srcset="https://kb.edgenexus.io/wp-content/uploads/2025/01/2025-01-24_12-03-53.png 973w, https://kb.edgenexus.io/wp-content/uploads/2025/01/2025-01-24_12-03-53-300x156.png 300w, https://kb.edgenexus.io/wp-content/uploads/2025/01/2025-01-24_12-03-53-768x400.png 768w" sizes="(max-width: 973px) 100vw, 973px" /><figcaption class="wp-element-caption"><em>SSL Section in EdgeADC v4.x</em></figcaption></figure>
<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="1600" height="967" src="https://kb.edgenexus.io/wp-content/uploads/2025/01/2025-01-24_12-40-57.png" alt="" class="wp-image-574" style="width:651px;height:auto" srcset="https://kb.edgenexus.io/wp-content/uploads/2025/01/2025-01-24_12-40-57.png 1600w, https://kb.edgenexus.io/wp-content/uploads/2025/01/2025-01-24_12-40-57-300x181.png 300w, https://kb.edgenexus.io/wp-content/uploads/2025/01/2025-01-24_12-40-57-1024x619.png 1024w, https://kb.edgenexus.io/wp-content/uploads/2025/01/2025-01-24_12-40-57-768x464.png 768w, https://kb.edgenexus.io/wp-content/uploads/2025/01/2025-01-24_12-40-57-1536x928.png 1536w" sizes="auto, (max-width: 1600px) 100vw, 1600px" /><figcaption class="wp-element-caption"><em>SSL Section in EdgeADC v5</em></figcaption></figure>
<p class="has-vivid-red-color has-text-color has-link-color wp-elements-66c57394cfb9c5e3832e3af05375ba65"><strong>IMPORTANT &#8211; WHEN IMPORTING THE NEW SSL REMEMBER TO GIVE A NEW NAME.</strong></p>
<ul class="wp-block-list">
<li>Import the new SSL certificate and give it a new name, say Web_Certificate_2</li>
<li>The next stage is to replace the existing SSL certificate attached to the Virtual Service.</li>
</ul>
<p>At this stage you will need to plan for some short amount downtime as you perform the replacement,</p>
<ul class="wp-block-list">
<li>Click on the Virtual Service you wish to change.</li>
<li>Navigate to the Basic tab</li>
<li>Select the new SSL certificate you just imported in for either the Virtual Service or Real Server, or both.</li>
<li>Click update and test.</li>
<li>If all works as expected, you can now open the Virtual Service for use.</li>
</ul>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Why does the AppStore ask for a Machine ID when making App downloads?</title>
		<link>https://kb.edgenexus.io/kb/why-does-the-appstore-ask-for-a-machine-id-when-making-app-downloads/</link>
		
		<dc:creator><![CDATA[jsavoor@edgenexus.io]]></dc:creator>
		<pubDate>Fri, 12 Apr 2024 13:04:13 +0000</pubDate>
				<guid isPermaLink="false">https://kb.edgenexus.io/?post_type=epkb_post_type_1&#038;p=399</guid>

					<description><![CDATA[The EdgeADC is a secure and hardened appliance, and as such, Edgenexus takes every opportunity to ensure that it is safe, and remains secured. All Apps and software updates downloaded are secured through industry-grade encryption and are relevant to the particular ADC whose Machine ID has been provided. As such, potential threat players cannot deliver [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>The EdgeADC is a secure and hardened appliance, and as such, Edgenexus takes every opportunity to ensure that it is safe, and remains secured.</p>
<p>All Apps and software updates downloaded are secured through industry-grade encryption and are relevant to the particular ADC whose Machine ID has been provided.</p>
<p>As such, potential threat players cannot deliver compromised Apps to the user for integration into the ADC.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>I have my an existing SSL certificate &#8211; can i import it into the ADC?</title>
		<link>https://kb.edgenexus.io/kb/i-have-my-an-existing-ssl-certificate-can-i-import-it-into-the-adc/</link>
		
		<dc:creator><![CDATA[jsavoor@edgenexus.io]]></dc:creator>
		<pubDate>Thu, 11 Apr 2024 13:59:32 +0000</pubDate>
				<guid isPermaLink="false">https://kb.edgenexus.io/?post_type=epkb_post_type_1&#038;p=379</guid>

					<description><![CDATA[Yes. The EdgeADC allows import of SSL certificates and intermediates in order to form a secure transport to your servers. For versions prior to 4.3.x For versions after 4.3.x]]></description>
										<content:encoded><![CDATA[<p>Yes. The EdgeADC allows import of SSL certificates and intermediates in order to form a secure transport to your servers.</p>
<h3 class="wp-block-heading">For versions prior to 4.3.x</h3>
<figure data-wp-context="{&quot;imageId&quot;:&quot;68a81b8d404d0&quot;}" data-wp-interactive="core/image" class="wp-block-image size-full wp-lightbox-container"><img loading="lazy" decoding="async" width="707" height="271" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" src="https://kb.edgenexus.io/wp-content/uploads/2024/04/image-14.png" alt="" class="wp-image-380" srcset="https://kb.edgenexus.io/wp-content/uploads/2024/04/image-14.png 707w, https://kb.edgenexus.io/wp-content/uploads/2024/04/image-14-300x115.png 300w" sizes="auto, (max-width: 707px) 100vw, 707px" /><button
			class="lightbox-trigger"
			type="button"
			aria-haspopup="dialog"
			aria-label="Enlarge"
			data-wp-init="callbacks.initTriggerButton"
			data-wp-on-async--click="actions.showLightbox"
			data-wp-style--right="state.imageButtonRight"
			data-wp-style--top="state.imageButtonTop"
		>
			<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">
				<path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />
			</svg>
		</button></figure>
<ul class="wp-block-list">
<li>Navigate to Library &gt; SSL Certificates</li>
<li>Scroll down to Import Single Certificate</li>
<li><strong>NOTE</strong>: In all versions prior to 4.3.x, the EdgeADC only supports PFX import.</li>
<li>Provide a name for the certificate &#8211; this is only for use in the ADC for selection and listing.</li>
<li>Click Browse and locate the PFX file.</li>
<li>Provide the password for the PFX certificate.</li>
<li>Click Import.</li>
<li>The certificate will be imported and stored in the ADC.</li>
</ul>
<h3 class="wp-block-heading">For versions after 4.3.x</h3>
<figure data-wp-context="{&quot;imageId&quot;:&quot;68a81b8d408e1&quot;}" data-wp-interactive="core/image" class="wp-block-image size-full wp-lightbox-container"><img loading="lazy" decoding="async" width="2213" height="687" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" src="https://kb.edgenexus.io/wp-content/uploads/2024/04/image-15.png" alt="" class="wp-image-382" srcset="https://kb.edgenexus.io/wp-content/uploads/2024/04/image-15.png 2213w, https://kb.edgenexus.io/wp-content/uploads/2024/04/image-15-300x93.png 300w, https://kb.edgenexus.io/wp-content/uploads/2024/04/image-15-1024x318.png 1024w, https://kb.edgenexus.io/wp-content/uploads/2024/04/image-15-768x238.png 768w, https://kb.edgenexus.io/wp-content/uploads/2024/04/image-15-1536x477.png 1536w, https://kb.edgenexus.io/wp-content/uploads/2024/04/image-15-2048x636.png 2048w" sizes="auto, (max-width: 2213px) 100vw, 2213px" /><button
			class="lightbox-trigger"
			type="button"
			aria-haspopup="dialog"
			aria-label="Enlarge"
			data-wp-init="callbacks.initTriggerButton"
			data-wp-on-async--click="actions.showLightbox"
			data-wp-style--right="state.imageButtonRight"
			data-wp-style--top="state.imageButtonTop"
		>
			<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">
				<path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />
			</svg>
		</button></figure>
<ul class="wp-block-list">
<li>Navigate to Library > SSL Certificates.</li>
<li>Click on the Import button.</li>
<li>This will bring up a form similar to the one shown in the image above.</li>
<li><strong>NOTE: </strong>Certificate formats supported are now: .CER, .PFX, .PEM and .DER.</li>
<li>Click browse, and locate the certificate file.</li>
<li>In the case of a PFX file, provide the certificate password.</li>
<li>You can also provide a Secret Key file should it be needed.</li>
<li>Click the Import button.</li>
<li>The certificate will be imported and stored in the ADC.</li>
</ul>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Can I generate my own self signed SSL certificate or CSR?</title>
		<link>https://kb.edgenexus.io/kb/can-i-generate-my-own-self-signed-ssl-certificate-or-csr/</link>
		
		<dc:creator><![CDATA[jsavoor@edgenexus.io]]></dc:creator>
		<pubDate>Thu, 11 Apr 2024 08:41:57 +0000</pubDate>
				<guid isPermaLink="false">https://kb.edgenexus.io/?post_type=epkb_post_type_1&#038;p=369</guid>

					<description><![CDATA[Absolutely. The EdgeADC has full capabilities for creating CSRs and self-signed SSL certificates. Navigate to Library &#62; SSL Certificates and you will see the SSL Manager. Version below 4.3 In versions prior to 4.3.x the ability to create a CSR or self-signed certificate looked something like the image below: Follow the simple steps to create [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Absolutely. The EdgeADC has full capabilities for creating CSRs and self-signed SSL certificates.</p>
<p>Navigate to Library &gt; SSL Certificates and you will see the SSL Manager.</p>
<h3 class="wp-block-heading">Version below 4.3</h3>
<p>In versions prior to 4.3.x the ability to create a CSR or self-signed certificate looked something like the image below:</p>
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="728" height="540" src="https://kb.edgenexus.io/wp-content/uploads/2024/04/image-10.png" alt="" class="wp-image-370" srcset="https://kb.edgenexus.io/wp-content/uploads/2024/04/image-10.png 728w, https://kb.edgenexus.io/wp-content/uploads/2024/04/image-10-300x223.png 300w" sizes="auto, (max-width: 728px) 100vw, 728px" /></figure>
<p>Follow the simple steps to create your own self-signed SSL certificate:</p>
<ol class="wp-block-list">
<li>Fill in the details in the form.</li>
<li>Remember that CSRs do not have a Period of validity</li>
<li>Click Create Local Certificate or Create Certificate request.</li>
<li>A The appropriate certificate or CSR will be created and be available in the certificate store, or for download.</li>
<li>You can put it to use immediately.</li>
</ol>
<h3 class="wp-block-heading">Version 4.3 and above</h3>
<p>In versions and later, the SSL management has been much improved. For the best information read the appropriate administrator guide.</p>
<p>The new SSL Manager looks something like the image below.</p>
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="2222" height="1062" src="https://kb.edgenexus.io/wp-content/uploads/2024/04/image-11.png" alt="" class="wp-image-371" srcset="https://kb.edgenexus.io/wp-content/uploads/2024/04/image-11.png 2222w, https://kb.edgenexus.io/wp-content/uploads/2024/04/image-11-300x143.png 300w, https://kb.edgenexus.io/wp-content/uploads/2024/04/image-11-1024x489.png 1024w, https://kb.edgenexus.io/wp-content/uploads/2024/04/image-11-768x367.png 768w, https://kb.edgenexus.io/wp-content/uploads/2024/04/image-11-1536x734.png 1536w, https://kb.edgenexus.io/wp-content/uploads/2024/04/image-11-2048x979.png 2048w" sizes="auto, (max-width: 2222px) 100vw, 2222px" /></figure>
<p>Creation of a self-signed SSL is almost the same.</p>
<ul class="wp-block-list">
<li>Click the Create Request button</li>
<li>The form for the Self-Signed Certificate/CSR is displayed in the lower panel.</li>
</ul>
<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="821" height="752" src="https://kb.edgenexus.io/wp-content/uploads/2024/04/image-13.png" alt="" class="wp-image-376" style="width:668px;height:auto" srcset="https://kb.edgenexus.io/wp-content/uploads/2024/04/image-13.png 821w, https://kb.edgenexus.io/wp-content/uploads/2024/04/image-13-300x275.png 300w, https://kb.edgenexus.io/wp-content/uploads/2024/04/image-13-768x703.png 768w" sizes="auto, (max-width: 821px) 100vw, 821px" /></figure>
<ul class="wp-block-list">
<li>Fill out the form and click Create Certificate or Create CSR.</li>
<li>As in the earlier versions, the CSR or Certificate is created.</li>
</ul>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Can I use multiple hostnames with SSL on a single VIP/VS?</title>
		<link>https://kb.edgenexus.io/kb/can-i-use-multiple-hostnames-with-ssl-on-a-single-vip-vs/</link>
		
		<dc:creator><![CDATA[jsavoor@edgenexus.io]]></dc:creator>
		<pubDate>Wed, 10 Apr 2024 14:16:19 +0000</pubDate>
				<guid isPermaLink="false">https://kb.edgenexus.io/?post_type=epkb_post_type_1&#038;p=359</guid>

					<description><![CDATA[Yes. This is referred to as SNI, or Server Name Indication. Imagine a traffic dispatcher with a multilingual megaphone. Clients (cars) shout their destination (website) when they arrive. The dispatcher (load balancer) listens for a hidden code (SNI) whispered within that shout. Based on this code, the dispatcher directs each car (client) to the correct [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Yes. This is referred to as SNI, or Server Name Indication.</p>
<p>Imagine a traffic dispatcher with a multilingual megaphone. Clients (cars) shout their destination (website) when they arrive. The dispatcher (load balancer) listens for a hidden code (SNI) whispered within that shout. Based on this code, the dispatcher directs each car (client) to the correct lane (web server) with the matching sign (certificate), ensuring a smooth, secure journey.</p>
<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="1067" height="906" src="https://kb.edgenexus.io/wp-content/uploads/2024/04/image-8.png" alt="" class="wp-image-364" style="width:613px;height:auto" srcset="https://kb.edgenexus.io/wp-content/uploads/2024/04/image-8.png 1067w, https://kb.edgenexus.io/wp-content/uploads/2024/04/image-8-300x255.png 300w, https://kb.edgenexus.io/wp-content/uploads/2024/04/image-8-1024x869.png 1024w, https://kb.edgenexus.io/wp-content/uploads/2024/04/image-8-768x652.png 768w" sizes="auto, (max-width: 1067px) 100vw, 1067px" /></figure>
<p>In the example above:</p>
<ol class="wp-block-list">
<li>The <strong>Client</strong> initiates an HTTPS connection to a domain name, like &#8220;test.com&#8221;.</li>
<li>The <strong>Load Balancer</strong> receives the request and examines the <strong>SNI header</strong>. This header contains the hostname (take <strong>crm</strong> in our diagram) the client is trying to reach.</li>
<li>Based on the hostname in the SNI header, the load balancer selects the corresponding <strong>server certificate</strong>. It has certificates for multiple web servers behind it (Server 1, Server 2, etc.).</li>
<li>The load balancer then forwards the request to the appropriate server. The server presents the client with the matching certificate to establish a secure connection.</li>
</ol>
<p>See an example setting below:</p>
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="678" height="97" src="https://kb.edgenexus.io/wp-content/uploads/2024/04/image-9.png" alt="" class="wp-image-367" srcset="https://kb.edgenexus.io/wp-content/uploads/2024/04/image-9.png 678w, https://kb.edgenexus.io/wp-content/uploads/2024/04/image-9-300x43.png 300w" sizes="auto, (max-width: 678px) 100vw, 678px" /></figure>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Does the EdgeADC support SSL Re-encrypt?</title>
		<link>https://kb.edgenexus.io/kb/does-the-edgeadc-support-ssl-re-encrypt/</link>
		
		<dc:creator><![CDATA[jsavoor@edgenexus.io]]></dc:creator>
		<pubDate>Wed, 10 Apr 2024 13:59:38 +0000</pubDate>
				<guid isPermaLink="false">https://kb.edgenexus.io/?post_type=epkb_post_type_1&#038;p=357</guid>

					<description><![CDATA[The EdgeADC fully supports SSL Re-encrypt. This function is configurable via the Basic tab in the Real Servers section. NOTE: The Service Type should be set to Layer 7. There are two SSL settings available within the tab. The Virtual Service SSL Certificate menu allows you to select the certificate that will be used for [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>The EdgeADC fully supports SSL Re-encrypt. This function is configurable via the Basic tab in the Real Servers section.</p>
<p><strong>NOTE: The Service Type should be set to Layer 7.</strong></p>
<p>There are two SSL settings available within the tab.</p>
<ol class="wp-block-list">
<li>Virtual Service SSL Certificate</li>
<li>Real Server SSL Certificate</li>
</ol>
<p>The Virtual Service SSL Certificate menu allows you to select the certificate that will be used for the Virtual Service. This is a multi-selection menu, allowing you to select multiple SSL certificates for the same Virtual Service.</p>
<p>The Real Server SSL Certificate menu allows you to select the certificate that you want to use for the Real servers. When Re-Encrypting you will need to set the Real Server SSL Certificate to an appropriate value. This could be the same SSL certificate that was selected for the Virtual Service, or it could be something different.</p>
<p>The setting may look something like the one below:</p>
<figure class="wp-block-image"><img decoding="async" src="https://lh7-us.googleusercontent.com/7Fr1bOGXmYg12PkBq0xe3tDdsZYI_8B0aGaDGDN_npnWkgF87WaPbx3SLu5c7pYaW6j23nHKcfRt1sc2P32o0_bQ9Ejyox5aeqIeRzAMkkxJLWh0uED5QcEu6DUwpBb2t57CPPLCtV74wuvoQmhwy8I" alt=""/></figure>
<p>When you use a different certificate for the Virtual Service and Real Servers, it could look like this:</p>
<figure class="wp-block-image"><img decoding="async" src="https://lh7-us.googleusercontent.com/IVh3bzH3IJ5WqXsP-KNJtI4OggKCYGY5xWZz9c5u6963eUyOlZSYYKjn2uQyFqNrxCSqIVE5aIlnQWqGHbmNCEDeRV88w2J3HHWwHCwcYZjiPFzTs2Dd254NKGSdZ0higCZ1DwyZUAYiu4TU-Y7JyYo" alt=""/></figure>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Does the EdgeADC support SSL Offload?</title>
		<link>https://kb.edgenexus.io/kb/does-the-edgeadc-support-ssl-offload/</link>
		
		<dc:creator><![CDATA[jsavoor@edgenexus.io]]></dc:creator>
		<pubDate>Wed, 10 Apr 2024 13:47:06 +0000</pubDate>
				<guid isPermaLink="false">https://kb.edgenexus.io/?post_type=epkb_post_type_1&#038;p=355</guid>

					<description><![CDATA[The EdgeADC fully supports SSL offload, which can be done on a per Virtual Service basis. To do this, you need to configure it in the Basic Tab of the Virtual Service. This is located in the Real Servers section. NOTE: The Service Type should be set to Layer 7. There are two SSL settings [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>The EdgeADC fully supports SSL offload, which can be done on a per Virtual Service basis.</p>
<p>To do this, you need to configure it in the Basic Tab of the Virtual Service. This is located in the Real Servers section.</p>
<p><strong>NOTE: The Service Type should be set to Layer 7.</strong></p>
<p>There are two SSL settings available within the tab.</p>
<ol class="wp-block-list">
<li>Virtual Service SSL Certificate</li>
<li>Real Server SSL Certificate</li>
</ol>
<p>The Virtual Service SSL Certificate menu allows you to select the certificate that will be used for the Virtual Service. This is a multi-selection menu, allowing you to select multiple SSL certificates for the same Virtual Service.</p>
<p>The Real Server SSL Certificate menu allows you to select the certificate that you want to use for the Real servers. You will note that there is a built-in value of No SSL. This is used when you wish to offload.</p>
<p>The setting may look something like the image below.</p>
<figure class="wp-block-image"><img decoding="async" src="https://lh7-us.googleusercontent.com/XpfnYprcudMfmPHGPXDfkpHz7I4tL64M1okGY8zg9EzJy-Nn4XVbKheLD--6f5Y3fDVlsScj6dMGziBGVRrGPHgcU9vfHbaCJctZs-6cPMHIQSvq-1Nqm-VFqXB18pVh2eEqmq6U9wOvgsZ32p2DccY" alt=""/></figure>
<p>Setting the Real Server SSL Certificate menu to No SSL will enable SSL Offload.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
