- Linux 系统管理员教程
- 首页
- CentOS 概述
- 基本的 CentOS Linux 命令
- 文件/文件夹管理
- 用户管理
- 配额管理
- Systemd 服务启动和停止
- 使用 systemctl 进行资源管理
- 使用 crgoups 进行资源管理
- 进程管理
- 防火墙设置
- 在 CentOS Linux 中配置 PHP
- 在 CentOS Linux 中设置 Python
- 在 CentOS Linux 中配置 Ruby
- 为 CentOS Linux 设置 Perl
- 安装和配置 Open LDAP
- 创建 SSL 证书
- 在 CentOS 7 上安装 Apache Web 服务器
- 在 CentOS 7 上设置 MySQL
- 设置 Postfix MTA 和 IMAP/POP3
- 安装匿名 FTP
- 远程管理
- CentOS 中的流量监控
- 日志管理
- 备份和恢复
- 系统更新
- Shell 脚本
- 包管理
- 卷管理
- Linux 系统管理员有用资源
- Linux 系统管理员 - 快速指南
- Linux 系统管理员 - 有用资源
- Linux 系统管理员 - 讨论
Linux 系统管理员 - 创建 SSL 证书
TLS 和 SSL 背景
TLS 是套接字层安全的新标准,取代了 SSL。TLS 提供了更好的加密标准以及其他安全和协议包装功能,从而超越了 SSL。通常,TLS 和 SSL 术语可以互换使用。但是,作为一名专业的 CentOS 管理员,了解两者之间的区别和历史非常重要。
SSL 最高版本为 3.0。SSL 在 Netscape 的推动下成为行业标准。在 Netscape 被 AOL(90 年代流行的 ISP,即美国在线)收购后,AOL 从未真正推动 SSL 所需的安全改进。
在 3.1 版中,SSL 技术转移到开放系统标准并更改为 TLS。由于 SSL 的版权仍归 AOL 所有,因此创造了一个新术语:TLS - 传输层安全。因此,重要的是要认识到 TLS 实际上与 SSL 不同。特别是,由于旧版 SSL 技术存在已知的安全问题,并且某些技术如今已被视为过时。
注意 - 本教程在谈论 3.1 及更高版本的技术时将使用术语 TLS。然后在评论特定于 SSL 3.0 及更低版本的技术时使用 SSL。
SSL 与 TLS 版本
下表显示了 TLS 和 SSL 版本之间的关系。我听说过一些人用 SSL 3.2 版来表达。但是,他们可能是在阅读博客时获得了这种术语。作为一名专业管理员,我们始终希望使用标准术语。因此,在谈论 SSL 时,应将其作为对过去技术的参考。一些简单的事情可以让 CentOS 求职者看起来像一位经验丰富的计算机科学专业人士。
TLS | SSL |
---|---|
- | 3.0 |
1.0 | 3.1 |
1.1 | 3.2 |
1.2 | 3.3 |
TLS 执行了当今互联网用户重要的两个主要功能:第一,它验证一方的身份,称为身份验证。第二,它在传输层为缺乏此原生功能的上层协议(ftp、http、电子邮件协议等)提供端到端加密。
第一个,验证一方的身份,对于端到端加密的安全至关重要。如果消费者与未被授权接受付款的网站建立了加密连接,则财务数据仍然存在风险。这就是每个网络钓鱼网站都无法做到的:一个经过正确签名的 TLS 证书,验证网站运营商的身份,证明其来自受信任的 CA。
只有两种方法可以绕过没有正确签名证书的问题:诱骗用户允许网络浏览器信任自签名证书,或者希望用户不了解技术,并且不知道受信任的证书颁发机构 (或 CA) 的重要性。
在本教程中,我们将使用所谓的自签名证书。这意味着,如果没有在访问该网站的每个网络浏览器中明确授予此证书受信任状态,则会显示错误消息,阻止用户访问该网站。然后,它将使用户在访问具有自签名证书的网站之前执行一些操作。请记住,为了安全起见,这是一件好事。
安装和配置 openssl
openssl 是 TLS 开源实现的标准。openssl 用于 Linux、BSD 发行版、OS X 等系统,甚至支持 Windows。
openssl 很重要,因为它提供了传输层安全,并为开发人员抽象了身份验证和端到端加密的详细编程。这就是为什么 openssl 与几乎所有使用 TLS 的开源应用程序一起使用的原因。它也默认安装在每个现代 Linux 版本上。
默认情况下,openssl 应该从 CentOS 5 版开始就已安装。为了确保,让我们尝试通过 YUM 安装 openssl。只需运行安装,因为 YUM 足够智能,可以让我们知道某个包是否已安装。如果出于兼容性原因我们正在运行旧版 CentOS,则执行yum -y install 将确保 openssl 针对最近的 Heartbleed 漏洞进行更新。
运行安装程序时,发现实际上对 openssl 进行了更新。
[root@centos]# yum -y install openssl Resolving Dependencies --> Running transaction check ---> Package openssl.x86_64 1:1.0.1e-60.el7 will be updated ---> Package openssl.x86_64 1:1.0.1e-60.el7_3.1 will be an update --> Processing Dependency: openssl-libs(x86-64) = 1:1.0.1e-60.el7_3.1 for package: 1:openssl-1.0.1e-60.el7_3.1.x86_64 --> Running transaction check ---> Package openssl-libs.x86_64 1:1.0.1e-60.el7 will be updated ---> Package openssl-libs.x86_64 1:1.0.1e-60.el7_3.1 will be an update --> Finished Dependency Resolution Dependencies Resolved =============================================================================== =============================================================================== Package Arch Version Repository Size =============================================================================== =============================================================================== Updating: openssl x86_64 1:1.0.1e-60.el7_3.1 updates 713 k Updating for dependencies:
为 OpenLDAP 创建自签名证书
这是一种为我们之前的OpenLDAP安装创建自签名证书的方法。
创建 OpenLDAP 自签名证书。
openssl req -new -x509 -nodes -out /etc/openldap/certs/myldaplocal.pem -keyout /etc/openldap/certs/myldaplocal.pem -days 365 [root@centos]# openssl req -new -x509 -nodes -out /etc/openldap/certs/vmnet.pem -keyout /etc/openldap/certs/vmnet.pem -days 365 Generating a 2048 bit RSA private key .............................................+++ ................................................+++ writing new private key to '/etc/openldap/certs/vmnet.pem' ----- You are about to be asked to enter information that will be incorporated into your certificate request. What you are about to enter is what is called a Distinguished Name or a DN. There are quite a few fields but you can leave some blank For some fields there will be a default value, If you enter '.', the field will be left blank. ----- Country Name (2 letter code) [XX]:US State or Province Name (full name) []:Califonia Locality Name (eg, city) [Default City]:LA Organization Name (eg, company) [Default Company Ltd]:vmnet Organizational Unit Name (eg, section) []: Common Name (eg, your name or your server's hostname) []:centos Email Address []:[email protected] [root@centos]#
现在我们的 OpenLDAP 证书应该放在/etc/openldap/certs/中。
[root@centos]# ls /etc/openldap/certs/*.pem /etc/openldap/certs/vmnetcert.pem /etc/openldap/certs/vmnetkey.pem [root@centos]#
如您所见,我们在/etc/openldap/certs/目录中安装了证书和密钥。最后,我们需要更改每个文件的权限,因为它们当前归 root 用户所有。
[root@centos]# chown -R ldap:ldap /etc/openldap/certs/*.pem [root@centos]# ls -ld /etc/openldap/certs/*.pem -rw-r--r--. 1 ldap ldap 1395 Feb 20 10:00 /etc/openldap/certs/vmnetcert.pem -rw-r--r--. 1 ldap ldap 1704 Feb 20 10:00 /etc/openldap/certs/vmnetkey.pem [root@centos]#
为 Apache Web 服务器创建自签名证书
在本教程中,我们假设 Apache 已经安装。我们在另一个教程(配置 CentOS 防火墙)中安装了 Apache,并将深入介绍 Apache 的高级安装,以便在以后的教程中进行。因此,如果您尚未安装 Apache,请继续学习。
一旦 Apache HTTPd 可以使用以下步骤安装 -
步骤 1 - 为 Apache httpd 服务器安装 mod_ssl。
首先,我们需要使用 mod_ssl 配置 Apache。使用 YUM 包管理器,这非常简单 -
[root@centos]# yum -y install mod_ssl
然后重新加载 Apache 守护程序以确保 Apache 使用新配置。
[root@centos]# systemctl reload httpd
此时,Apache 已配置为支持本地主机上的 TLS 连接。
步骤 2 - 创建自签名 ssl 证书。
首先,让我们配置我们的私有 TLS 密钥目录。
[root@centos]# mkdir /etc/ssl/private [root@centos]# chmod 700 /etc/ssl/private/
注意 - 请确保只有 root 用户才能读取/写入此目录。如果世界可读/写,则可以使用您的私钥解密嗅探到的流量。
生成证书和密钥文件。
[root@centos]# sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/ssl/private/self-gen-apache.key -out /etc/ssl/certs/self-sign-apache.crt Generating a 2048 bit RSA private key ..........+++ ....+++ ----- Country Name (2 letter code) [XX]:US State or Province Name (full name) []:xx Locality Name (eg, city) [Default City]:xxxx Organization Name (eg, company) [Default Company Ltd]:VMNET Organizational Unit Name (eg, section) []: Common Name (eg, your name or your server's hostname) []:centos.vmnet.local Email Address []: [root@centos]#
注意 - 如果您没有注册域名,则可以使用服务器的公共 IP 地址。
让我们看看我们的证书 -
[root@centos]# openssl x509 -in self-sign-apache.crt -text -noout Certificate: Data: Version: 3 (0x2) Serial Number: 17620849408802622302 (0xf489d52d94550b5e) Signature Algorithm: sha256WithRSAEncryption Issuer: C=US, ST=UT, L=xxxx, O=VMNET, CN=centos.vmnet.local Validity Not Before: Feb 24 07:07:55 2017 GMT Not After : Feb 24 07:07:55 2018 GMT Subject: C=US, ST=UT, L=xxxx, O=VMNET, CN=centos.vmnet.local Subject Public Key Info: Public Key Algorithm: rsaEncryption Public-Key: (2048 bit) Modulus: 00:c1:74:3e:fc:03:ca:06:95:8d:3a:0b:7e:1a:56: f3:8d:de:c4:7e:ee:f9:fa:79:82:bf:db:a9:6d:2a: 57:e5:4c:31:83:cf:92:c4:e7:16:57:59:02:9e:38: 47:00:cd:b8:31:b8:34:55:1c:a3:5d:cd:b4:8c:b0: 66:0c:0c:81:8b:7e:65:26:50:9d:b7:ab:78:95:a5: 31:5e:87:81:cd:43:fc:4d:00:47:5e:06:d0:cb:71: 9b:2a:ab:f0:90:ce:81:45:0d:ae:a8:84:80:c5:0e: 79:8a:c1:9b:f4:38:5d:9e:94:4e:3a:3f:bd:cc:89: e5:96:4a:44:f5:3d:13:20:3d:6a:c6:4d:91:be:aa: ef:2e:d5:81:ea:82:c6:09:4f:40:74:c1:b1:37:6c: ff:50:08:dc:c8:f0:67:75:12:ab:cd:8d:3e:7b:59: e0:83:64:5d:0c:ab:93:e2:1c:78:f0:f4:80:9e:42: 7d:49:57:71:a2:96:c6:b8:44:16:93:6c:62:87:0f: 5c:fe:df:29:89:03:6e:e5:6d:db:0a:65:b2:5e:1d: c8:07:3d:8a:f0:6c:7f:f3:b9:32:b4:97:f6:71:81: 6b:97:e3:08:bd:d6:f8:19:40:f1:15:7e:f2:fd:a5: 12:24:08:39:fa:b6:cc:69:4e:53:1d:7e:9a:be:4b:
以下是我们对openssl命令使用的每个选项的说明 -
命令 | 操作 |
---|---|
req -X509 | 使用 X.509 CSR 管理 PKI 标准进行密钥管理。 |
-nodes | 不要使用密码保护我们的证书。Apache 必须能够在不中断密码的情况下使用证书。 |
-days 2555 | 将证书的有效期设置为 7 年或 2555 天。时间段可以根据需要调整。 |
-newkey rsa:2048 | 指定使用 RSA 以 2048 位长度生成密钥和证书。 |
接下来,我们希望为与客户端协商 PFS 创建一个 Diffie-Hellman 组。
[centos#] openssl dhparam -out /etc/ssl/certs/dhparam.pem 2048
这将花费 5 到 15 分钟。
完美前向保密 - 用于在私钥遭到泄露的情况下保护会话数据。这将生成一个在客户端和服务器之间使用的密钥,该密钥对于每个会话都是唯一的。
现在,将完美前向保密配置添加到我们的证书中。
[root@centos]# cat /etc/ssl/certs/dhparam.pem | tee -a /etc/ssl/certs/self-sign-apache.crt
配置 Apache 使用密钥和证书文件
我们将对/etc/httpd/conf.d/ssl.conf进行更改 -
我们将对ssl.conf进行以下更改。但是,在执行此操作之前,我们应该备份原始文件。在使用vi或emacs等高级文本编辑器对生产服务器进行更改时,最佳实践是在进行编辑之前始终备份配置文件。
[root@centos]# cp /etc/httpd/conf.d/ssl.conf ~/
现在,在将已知正常工作的 ssl.conf 副本复制到我们的主文件夹的根目录后,让我们继续进行编辑。
- 查找
- 按如下方式编辑 DocumentRoot 和 ServerName。
\\# General setup for the virtual host, inherited from global configuration DocumentRoot "/var/www/html" ServerName centos.vmnet.local:443
DocumentRoot 这是您默认 apache 目录的路径。在此文件夹中应该有一个默认页面,该页面将显示一个 HTTP 请求,请求您的 Web 服务器或站点的默认页面。
ServerName 是服务器名称,可以是 IP 地址或服务器的主机名。对于 TLS,最佳实践是使用主机名创建证书。在我们的 OpenLdap 教程中,我们在本地企业域中创建了一个名为 centos 的主机名:vmnet.local
现在我们要注释掉以下行。
SSLProtocol
# SSL Protocol support: # List the enable protocol levels with which clients will be able to # connect. Disable SSLv2 access by default: ~~~~> #SSLProtocol all -SSLv2 # SSL Cipher Suite: # List the ciphers that the client is permitted to negotiate. # See the mod_ssl documentation for a complete list. ~~~~> #SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5:!SEED:!IDEA
然后让 Apache 知道在哪里找到我们的证书和私钥/公钥对。
指定我们自签名证书文件的路径
# Server Certificate: # Point SSLCertificateFile at a PEM encoded certificate. If # the certificate is encrypted, then you will be prompted for a # pass phrase. Note that a kill -HUP will prompt again. A new # certificate can be generated using the genkey(1) command. ~~~~> SSLCertificateFile /etc/ssl/certs/self-sign-apache.crt specify path to our private key file # Server Private Key: # If the key is not combined with the certificate, use this # directive to point at the key file. Keep in mind that if # you've both a RSA and a DSA private key you can configure # both in parallel (to also allow the use of DSA ciphers, etc.) ~~~~> SSLCertificateKeyFile /etc/ssl/private/self-gen-apache.key
最后,我们需要允许传入连接通过端口 443 到https。