centos7下使用mail傳送郵件
[root@proxyserver ~]# rpm -qa|grep mail
libreport-plugin-mailx-2.0.9-19.el6.x86_64
mailx-12.4-7.el6.x86_64
procmail-3.22-25.1.el6.x86_64
mailcap-2.1.31-2.el6.noarch
sendmail-8.14.4-8.el6.x86_64
[root@proxyserver ~]# yum install sendmail
[root@proxyserver ~]# yum install mailx –y
[root@proxyserver ~]# yum update libreport-plugin-mailx
[root@proxyserver ~]# yum -y install sharutils
[root@proxyserver ~]# yum install mutt
[root@proxyserver ~]# vi /etc/mail.rc
set [email protected] #之前設定好的郵箱位址
set smtp=smtp.163.com #郵件伺服器
set [email protected] #之前設定好的郵箱位址
set smtp-auth-password=lvyf0802 #授權碼
set smtp-auth=login #預設login
//使用上面的命令就可把mail.txt檔案的內容發給 [email protected](-s 「theme」 為郵件的主題)
生成金鑰
[root@proxyserver ~]mkdir -p /root/.certs/
echo -n | openssl s_client -connect smtp.163.com:465 | sed -ne '/-begin certificate-/,/-end certificate-/p' > ~/.certs/163.crt
certutil -a -n "geotrust ssl ca" -t "c,," -d ~/.certs -i ~/.certs/163.crt
certutil -a -n "geotrust global ca" -t "c,," -d ~/.certs -i ~/.certs/163.crt
certutil -a -n "geotrust ssl ca - g3" -t "pu,pu,pu" -d ~/.certs/./ -i 163.crt
certutil -l -d /root/.certs
2.配置金鑰(紅色代表修改內容)
[root@proxyserver ~]# vi /etc/mail.rc
set bsdcompat
set [email protected] #之前設定好的郵箱位址
set smtp=smtps: #郵件伺服器
set [email protected] #之前設定好的郵箱位址
set smtp-auth-password=lvyf0802 #授權碼
set smtp-auth=login #預設login
set ssl-verify=ignore #ssl
認證方式
set nss-config-dir=/root/.certs #
證書所在目錄
CentOS 7下FirewallD使用簡介
學習apache安裝的時候需要開啟80埠,由於centos 7版本以後預設使用firewalld後,網上關於iptables的設定方法已經不管用了,想著反正iptable也不會用,索性直接搬官方文件,學習firewalld了,好像比iptables要簡單點了。1 firewalld簡介 firewa...
centos7下Firewall使用詳解
安裝它,只需 yum install firewalld 如果需要圖形介面的話,則再安裝 yum install firewall config 一 介紹 防火牆守護 firewalld 服務引入了乙個信任級別的概念來管理與之相關聯的連線與介面。它支援 ipv4 與 ipv6,並支援網橋,採用 fi...
CentOS 7 下使用 Firewall 防火牆
日期 2018 03 06 字型 大 中 小 在 centos 7 中,引入了乙個新的服務,firewalld,下面一張圖,讓大家明確的了解防火牆 firewall 與 iptables 之間的關係與區別。安裝它,只需 yum install firewalld 如果需要圖形介面的話,則再安裝 yu...