Skip to content

Latest commit

 

History

History
54 lines (46 loc) · 1.63 KB

8.7.Monitor-host-linux-via-SNMP.md

File metadata and controls

54 lines (46 loc) · 1.63 KB

Giám sát máy chủ Linux thông qua SNMP với check_mk.

1. Cài đặt và cấu hình SNMP trên máy agent.

  • Cài đặt SNMP :

    yum install net-snmp net-snmp-ultils
  • Tạo user và group để cấu hình riêng cho snmp :

    groupadd snmp
    useradd snmp –g snmp

Cấu hình SNMP trên máy agent.

  • Dùng trình soạn thảo vi để mở file /etc/snmp/snmpd.conf :
    vi /etc/snmp/snmpd.conf

Tìm và sửa các thông số như sau :

  • Thứ nhất :
    # First, map the community name "public" into a "security name"
    #       sec.name  source          community
    com2sec snmp  localhost       public

Trong đó : snmp là tên user, localhost là máy agent, public là chuỗi community string chúng ta lên thay đổi chuỗi này để bảo mật hơn.

  • Thứ 2 :

    # Second, map the security name into a group name:
    #       groupName      securityModel securityName
    group   snmp v1           snmp
    group   snmp v2c           snmp
  • Cuối cùng :

    # Finally, grant the group read-only access to the systemview view.
    #       group          context sec.model sec.level prefix read   write  notif
    access  snmp ""      any       noauth    exact  systemview none none
  • Sau khi cấu hình xong chúng ta sẽ start snmp lên :

    systemctl restart snmpd
  • Cấu hình khởi động cùng hệ thống :

    systemctl enable snmpd

2. Cấu hình trên WATO.