Avigilon Access Control Manager 로그 수집

파서 버전: 1.0

다음에서 지원:

이 문서에서는 Bindplane 에이전트를 사용하여 Avigilon Access Control Manager 로그를 Google Security Operations로 수집하는 방법을 설명합니다.

Avigilon Access Control Manager (ACM)는 문 액세스 이벤트, 알람, 사용자 인증 정보 활동, 시스템 작업에 대한 XML 형식 이벤트 로그를 생성하는 물리적 액세스 제어 시스템입니다.

시작하기 전에

다음 기본 요건이 충족되었는지 확인합니다.

  • Google SecOps 인스턴스
  • Windows Server 2016 이상 또는 systemd가 설치된 Linux 호스트
  • Bindplane 에이전트와 Avigilon ACM 서버 간의 네트워크 연결
  • 프록시 뒤에서 실행하는 경우 Bindplane 에이전트 요구사항에 따라 방화벽 포트가 열려 있는지 확인합니다.
  • Avigilon Access Control Manager 6.38 이상
  • Avigilon Access Control Manager 웹 콘솔에 대한 권한이 있는 액세스

Google SecOps 수집 인증 파일 가져오기

  1. Google SecOps 콘솔에 로그인합니다.
  2. SIEM 설정 > 수집 에이전트로 이동합니다.
  3. 데이터 수집 인증 파일 다운로드
  4. Bindplane 에이전트가 설치될 시스템에 파일을 안전하게 저장합니다.

Google SecOps 고객 ID 가져오기

  1. Google SecOps 콘솔에 로그인합니다.
  2. SIEM 설정 > 프로필로 이동합니다.
  3. 조직 세부정보 섹션에서 고객 ID를 복사하여 저장합니다.

Bindplane 에이전트 설치

다음 안내에 따라 Windows 또는 Linux 운영체제에 Bindplane 에이전트를 설치합니다.

Windows 설치

  1. 명령 프롬프트 또는 PowerShell을 관리자로 엽니다.
  2. 다음 명령어를 실행합니다.

    msiexec /i "https://github.com/observIQ/bindplane-agent/releases/latest/download/observiq-otel-collector.msi" /quiet
    
  3. 설치가 완료될 때까지 기다립니다.

  4. 다음을 실행하여 설치를 확인합니다.

    sc query observiq-otel-collector
    

    서비스가 실행 중으로 표시되어야 합니다.

Linux 설치

  1. 루트 또는 sudo 권한으로 터미널을 엽니다.
  2. 다음 명령어를 실행합니다.

    sudo sh -c "$(curl -fsSlL https://github.com/observiq/bindplane-agent/releases/latest/download/install_unix.sh)" install_unix.sh
    
  3. 설치가 완료될 때까지 기다립니다.

  4. 다음을 실행하여 설치를 확인합니다.

    sudo systemctl status observiq-otel-collector
    

    서비스가 active (running)으로 표시되어야 합니다.

추가 설치 리소스

추가 설치 옵션 및 문제 해결은 Bindplane 에이전트 설치 가이드를 참고하세요.

syslog를 수집하여 Google SecOps로 전송하도록 Bindplane 에이전트 구성

구성 파일 찾기

  • Linux:

    sudo nano /etc/bindplane-agent/config.yaml
    
  • Windows:

    notepad "C:\Program Files\observIQ OpenTelemetry Collector\config.yaml"
    

구성 파일 설정

  • config.yaml의 전체 내용을 다음 구성으로 바꿉니다.

    receivers:
        tcplog:
            listen_address: "0.0.0.0:514"
    
    exporters:
        chronicle/avigilon_access_logs:
            compression: gzip
            creds_file_path: '/etc/bindplane-agent/ingestion-auth.json'
            customer_id: '<customer_id>'
            endpoint: malachiteingestion-pa.googleapis.com
            log_type: AVIGILON_ACCESS_LOGS
            raw_log_field: body
    
    service:
        pipelines:
            logs/avigilon_to_chronicle:
                receivers:
                    - tcplog
                exporters:
                    - chronicle/avigilon_access_logs
    

구성 매개변수

다음 자리표시자를 바꿉니다.

  • 수신기 구성:

    • listen_address: 리슨할 IP 주소 및 포트입니다.
      • 0.0.0.0: 모든 인터페이스에서 수신 대기 (권장)
      • 포트 514는 일반적인 syslog 포트입니다 (Linux에서 루트 필요, 루트가 아닌 경우 1514 사용).
  • 내보내기 도구 구성:

    • creds_file_path: 수집 인증 파일의 전체 경로입니다.
      • Linux: /etc/bindplane-agent/ingestion-auth.json
      • Windows: C:\Program Files\observIQ OpenTelemetry Collector\ingestion-auth.json
    • customer_id: Google SecOps 콘솔에서 복사한 고객 ID
    • endpoint: 지역 엔드포인트 URL:
      • 미국: malachiteingestion-pa.googleapis.com
      • 유럽: europe-malachiteingestion-pa.googleapis.com
      • 아시아: asia-southeast1-malachiteingestion-pa.googleapis.com
      • 전체 목록은 리전 엔드포인트를 참고하세요.

구성 파일 저장

  • 수정 후 파일을 저장합니다.
    • Linux: Ctrl+O, Enter, Ctrl+X 순서로 누릅니다.
    • Windows: 파일 > 저장을 클릭합니다.

변경사항을 적용하려면 Bindplane 에이전트를 다시 시작하세요.

  • Linux에서 Bindplane 에이전트를 다시 시작하려면 다음 명령어를 실행합니다.

    sudo systemctl restart observiq-otel-collector
    
    1. 서비스가 실행 중인지 확인합니다.

      sudo systemctl status observiq-otel-collector
      
    2. 로그에서 오류를 확인합니다.

      sudo journalctl -u observiq-otel-collector -f
      
  • Windows에서 Bindplane 에이전트를 다시 시작하려면 다음 옵션 중 하나를 선택하세요.

    • 명령 프롬프트 또는 PowerShell(관리자 권한)

      net stop observiq-otel-collector && net start observiq-otel-collector
      
    • 서비스 콘솔:

      1. Win+R 키를 누르고 services.msc를 입력한 다음 Enter 키를 누릅니다.
      2. observIQ OpenTelemetry Collector를 찾습니다.
      3. 마우스 오른쪽 버튼을 클릭하고 다시 시작을 선택합니다.
      4. 서비스가 실행 중인지 확인합니다.

        sc query observiq-otel-collector
        
      5. 로그에서 오류를 확인합니다.

        type "C:\Program Files\observIQ OpenTelemetry Collector\log\collector.log"
        

Avigilon Access Manager의 이벤트 XML 구성

  1. Avigilon ACM 웹 UI에 로그인합니다.
  2. 설정 > 공동작업 > 공동작업 추가로 이동합니다.
  3. 해당 어플라이언스를 선택합니다.
  4. 유형이벤트 - 일반 XML로 설정합니다.
  5. 다음 구성 세부정보를 제공합니다.
    • 이름: 이 공동작업의 고유한 이름을 입력합니다.
    • 호스트: Bindplane 에이전트 IP 주소를 입력합니다.
    • 포트 번호: Bindplane 에이전트 포트 번호를 입력합니다.
    • 설치됨 체크박스를 선택하여 이 구성을 사용 설정합니다.
    • TCP 필요 체크박스를 선택합니다.
  6. 저장을 클릭합니다.
  7. 이벤트 탭을 선택합니다.
  8. XML 이벤트 공동작업이 활성화될 일정을 선택합니다.
  9. 확인 전송 체크박스를 선택하여 확인을 포함합니다.
  10. Send Clears 체크박스를 선택하여 클리어를 포함합니다.
  11. 회원 섹션에서 내보낼 이벤트 카테고리를 선택합니다.
  12. 저장을 클릭합니다.

UDM 매핑 테이블

로그 필드 UDM 매핑 논리
cn_label additional.fields 병합됨
plasectrxActivdat_label additional.fields 병합됨
plasectrxBackgroundColor_label additional.fields 병합됨
plasectrxCardno_label additional.fields 병합됨
plasectrxEvtypeaddress_label additional.fields 병합됨
plasectrxEvtypename_label additional.fields 병합됨
plasectrxExpiredat_label additional.fields 병합됨
plasectrxFacilityCode_label additional.fields 병합됨
plasectrxForegroundColor_label additional.fields 병합됨
plasectrxGatewayDN_label additional.fields 병합됨
plasectrxHasCamera_label additional.fields 병합됨
plasectrxHasNotes_label additional.fields 병합됨
plasectrxHasSoftTriggerSet_label additional.fields 병합됨
plasectrxIdentityDN_label additional.fields 병합됨
plasectrxIdentityUUID_label additional.fields 병합됨
plasectrxIssuedat_label additional.fields 병합됨
plasectrxLastacc_label additional.fields 병합됨
plasectrxPaneldateUTC_label additional.fields 병합됨
plasectrxPaneldate_label additional.fields 병합됨
plasectrxPanelname_label additional.fields 병합됨
plasectrxPointDN_label additional.fields 병합됨
plasectrxPointaddress_label additional.fields 병합됨
plasectrxPri_label additional.fields 병합됨
plasectrxRecdateUTC_label additional.fields 병합됨
plasectrxRecdate_label additional.fields 병합됨
plasectrxSeqno_label additional.fields 병합됨
plasectrxShowVideo_label additional.fields 병합됨
plasectrxSourceDN_label additional.fields 병합됨
plasectrxSourcename_label additional.fields 병합됨
plasectrxSourcetype_label additional.fields 병합됨
has_principal metadata.event_type 매핑됨: trueSTATUS_UPDATE
has_user metadata.event_type 매핑됨: trueUSER_UNCATEGORIZED
plasectrxEventname metadata.product_event_type 직접 매핑됨
plasectrxSourceUUID metadata.product_log_id 직접 매핑됨
plasectrxSourcelocation principal.location.name 직접 매핑됨
plasectrxMi principal.user.email_addresses 병합됨
plasectrxFname principal.user.first_name 직접 매핑됨
plasectrxLname principal.user.last_name 직접 매핑됨
plasectrxIdentityExtSysId src.group.product_object_id 직접 매핑됨
해당 사항 없음 metadata.event_type 상수: GENERIC_EVENT
해당 사항 없음 metadata.product_name 상수: AVIGILON_ACCESS_LOGS
해당 사항 없음 metadata.vendor_name 상수: AVIGILON_ACCESS_LOGS

변경 로그

이 파서의 변경 로그 보기

도움이 더 필요하신가요? 커뮤니티 회원 및 Google SecOps 전문가에게 문의하여 답변을 받으세요.