본문 바로가기

Zabbix

Zabbix-mail 연동

설정

sendmail 패키지 설치

조회 : rpm -qa | grep sendmail
없으면 설치

 yum install sendmail sendmail-cf sendmail-devel
 or
 dnf -y install sendmail sendmail-cf
 dnf -y install dovecot

vi /etc/mail/sendmail.mc

아래 56,57 라인 주석 제거 (주석= dnl #)

sendmail.cf 파일생성(덮어쓰기)

m4 sendmail.mc > sendmail.cf

메일서버 호스트명 추가

vi /etc/mail/local-host-names 호스트명 추가

 

서비스 활성 및 시작

systemctl restart sendmail
systemctl enable sendmail
systemctl status sendmail

vi /etc/mail/access 메일 접속 대역 추가

# Check the /usr/share/doc/sendmail/README.cf file for a description
# of the format of this file. (search for access_db in that file)
# The /usr/share/doc/sendmail/README.cf is part of the sendmail-doc
# package.
#
# If you want to use AuthInfo with "M:PLAIN LOGIN", make sure to have the
# cyrus-sasl-plain package installed.
#
# By default we allow relaying from localhost...
Connect:localhost.localdomain           RELAY
Connect:localhost                       RELAY
Connect:127.0.0.1                       RELAY
Connect:10.100                          RELAY

access ip 적용 (뭔지 모름)

cd /etc/mail
makemap hash access < access

테스트

telnet bsg-gz-test 25

발신메일 입력 = MAIL <FROM:example@test.com>
수신메일 입력 = RCPT <TO:jinhong.park@bsgone.com>
내용입력 =  DATA 엔터 후 내용입력 마지막 . 로 마무리
나가기 = quit 

 

 

'Zabbix' 카테고리의 다른 글

Zabbix-mail template  (0) 2024.10.25
zabbix-slack 연동  (1) 2024.10.25
Zabbix 세팅  (0) 2024.10.25