在系統server0和desktop0上配置郵件服務,滿足以下要求:- 這些系統不接收外部傳送來的郵件
- 這些系統上本地傳送的任何郵件都會自動路由到classroom.example.com
- 從這些系統上傳送的郵件都顯示來自example.com
- 你可以通過傳送郵件到本地使用者student來測試你的配置,
classroom.example.com已經配置好。把此使用者的郵件轉到下列url
使用postfix
服務完成上述題目。一般都預設安裝了這個服務,並處於預設開機啟動狀態。但是建議還是檢查一下。server0和desktop0配置一致,僅用server0做演示。
這是專門用來檢視postfix配置和修改postfix配置的工具。個人也是推薦這種做法。
[root@server0 ~]# postconf -e 'inet_inte***ces=loopback-only'
[root@server0 ~]# postconf -e 'myorigin=example.com'
[root@server0 ~]# postconf -e 'relayhost=[classroom.example.com]'
[root@server0 ~]# postconf -e 'mydestination='
[root@server0 ~]# postconf -e 'mynetworks=127.0.0.0/8, [::1]/128'
[root@server0 ~]# postconf -e 'local_transport=error: local delivery disabled'
[root@server0 ~]# systemctl restart postfix
[root@server0 ~]# mail -s 'fuxk' [email protected]
erwerwr
.eot
[root@server0 ~]# curl
from [email protected] tue jan 3 14:43:46 2017
return-path:
x-original-to: [email protected]
delivered-to: [email protected]
received: from server0.example.com (server0.example.com [172.25.0.11])
by classroom.example.com (postfix) with esmtp id 1bb802acc19
for ; tue, 3 jan 2017 14:43:46 +0800 (cst)
received: by server0.example.com (postfix, from userid 0)
id d05feeaeea; tue, 3 jan 2017 14:43:44 +0800 (cst)
date: tue, 03 jan 2017 14:43:44 +0800
subject: fuxk
user-agent: heirloom mailx 12.5 7/5/10
mime-version: 1.0
content-type: text/plain; charset=us-ascii
content-transfer-encoding: 7bit
message-id: <[email protected]>
from: [email protected] (root)
erwerwr
RHCE練習題 1 配置SeLinux
環境說明 您有三颱虛擬機器,分別是classroom rh254,server rh254,desktop rh254。三颱虛擬主機的網路和主機名已經配置好,均位於example.com 172.25.0.0 24 域中。另外my133t.org 172.17.10.0 24 作為非信任域。除了考試...
練習題目6
1.寫乙個函式返回引數二進位制中 1 的個數 比如 15 00001111 4 個 1 思路 先將此數和1進行按位與運算,若結果非0,計數器加一。然後每次讓1左移,然後和此數相與,結果非0,計數器加加。如下 2.獲取乙個數二進位制序列中所有的偶數字和奇數字,分別輸出二進位制序列。思路 求奇數字序列 ...
C語言練習題 6
1 寫一函式int fun char p 判斷一字串是否為回文,是返回1,不是返回0,出錯返回 1.例如 字串 123454321 就是回文字串 include 寫一函式int fun char p 判斷一字串是否為回文,是返回1,不是返回0,出錯返回 1.例如 字串 123454321 就是回文字...