You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/_posts/2012-11-27-DMVPN-Lab.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,8 @@ date: 2012-11-27 00:00:00 -0500
4
4
categories: IT
5
5
---
6
6
7
+
> **⚠️ Historical lab (2012) — not current crypto guidance.** This walkthrough uses cryptography that is no longer acceptable: RSA-1536 keys, SHA-1 hashing, MD5 certificate fingerprints, and Diffie-Hellman group 5. Do **not** copy these values into production. Use RSA ≥ 2048 (or ECDSA), SHA-256+, and modern DH/ECDH groups. See [Certificate Management](../security/certificates/index.md) for current standards.
8
+
7
9
Some time ago I had to teach myself DMVPN so that I could troubleshoot and manager the current system. If I remember right, I got a lot of the information and text from somewhere. I'm just not sure where I got it from and what I wrote myself.
8
10
9
11
***Preparation***
@@ -40,6 +42,7 @@ speed auto
40
42
41
43
***R3******
42
44
***interface FastEthernet1/0
45
+
43
46
```console
44
47
ip address 10.10.0.3 255.255.255.0
45
48
duplex auto
@@ -239,7 +242,7 @@ network 192.168.251.1 0.0.0.0
239
242
no auto-summary
240
243
```
241
244
242
-
Configure Branch routers to use R1 as the primary DMVPN hub by adding ***delay 100***to the ***tunnel1*** interfaces
245
+
Configure Branch routers to use R1 as the primary DMVPN hub by adding ***delay 100***to the ***tunnel1*** interfaces
Copy file name to clipboardExpand all lines: docs/_posts/2013-08-13-Disable-SSLv2-on-Windows-Server-2008-Domain-Controllers.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,9 @@ date: 2013-08-13 00:00:00 -0500
4
4
categories: IT
5
5
---
6
6
7
-
Using LDAP over SSL is a good step towards security. Improve security just a little bit more by disabling SSLv2 and forcing your clients to use SSLv3
7
+
> **⚠️ Historical post — do not follow as written.** This 2013 article predates the POODLE attack (2014) and targets Windows Server 2008 (end-of-life). **SSLv3 is now insecure and must also be disabled**, along with TLS 1.0 and TLS 1.1. Configure clients and servers for **TLS 1.2 (minimum) and TLS 1.3**. See the current guidance in [SSL vs TLS](../security/certificates/sslvstls.md) and [Certificate Management](../security/certificates/index.md).
8
+
9
+
Using LDAP over SSL is a good step towards security. The original advice below disabled SSLv2 and fell back to SSLv3 — that is no longer safe. Disable **SSLv2, SSLv3, TLS 1.0, and TLS 1.1**, and require **TLS 1.2 or higher** on all domain controllers.
8
10
9
11
On each of your domain controllers create the following registry key:
Copy file name to clipboardExpand all lines: docs/_posts/2013-09-24-Create-and-Install-a-Self-Signed-SSL-Certificate-on-Apache-CentOS-6.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,9 @@ date: 2013-09-24 00:00:00 -0500
4
4
categories: IT
5
5
---
6
6
7
-
SSL is a great way to protect traffic to your website. These are the steps to create a self-signed certificate and install it on an apache web server. It is self-signed, so the user's browser will throw an error because it doesn't trust the certificate. It's a start though....
7
+
> **⚠️ Historical post (2013) — outdated.** CentOS 6 is end-of-life, and its OpenSSL defaulted to SHA-1 signatures. The command below also sets only a Common Name (no SAN), which modern browsers reject. **For a public website, use a free, automatically renewed certificate from a trusted CA** — see the [ACME / Certbot guide](../security/certificates/acme/certbot.md). Reserve self-signed certificates for development or internal use, and always include Subject Alternative Names — see [Self-Signed Certificates](../security/certificates/self-signed.md).
8
+
9
+
SSL is a great way to protect traffic to your website. These are the steps to create a self-signed certificate and install it on an apache web server. It is self-signed, so the user's browser will throw an error because it doesn't trust the certificate. It's a start for development and internal use only.
Copy file name to clipboardExpand all lines: docs/infrastructure/containers/kubernetes/certmanage.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -141,7 +141,7 @@ spec:
141
141
142
142
### Creating Self-Signed Certificates
143
143
144
-
For development or internal services:
144
+
For development or internal services only. For the full self-signed and OpenSSL reference (formats, key types, validation), see [Self-Signed Certificates](../../../security/certificates/self-signed.md) and the [OpenSSL Guide](../../../security/certificates/openssl/index.md). In production, prefer cert-manager with an ACME or CA issuer (below).
> The certificate-generation steps below are a convenience for development/mTLS setup. For the authoritative guide to OpenSSL, self-signed certificates, key types, and formats, see [Self-Signed Certificates](../../../security/certificates/self-signed.md) and the [OpenSSL Guide](../../../security/certificates/openssl/index.md). Use publicly trusted or internal-CA certificates (not self-signed) for production monitoring endpoints.
|**Centralized Management**| Single point of authentication control | Large deployments, compliance requirements |
@@ -412,7 +412,7 @@ Dynamic_VLAN_Configuration:
412
412
- Generate intermediate CA for device certificates
413
413
- Configure certificate templates for devices and users
414
414
415
-
2. **Device Certificate Generation**
415
+
2. **Device Certificate Generation** (for the full OpenSSL/CSR reference, see [Certificate Management](../../../security/certificates/index.md) and the [OpenSSL Guide](../../../security/certificates/openssl/index.md))
0 commit comments