Dell EMC Isilon NAS 로그 수집
이 문서에서는 Bindplane을 사용하여 Dell EMC Isilon NAS 로그를 Google Security Operations로 처리하는 방법을 설명합니다. Logstash 파서 코드는 먼저 grok
패턴을 사용하여 DELL_EMC_NAS syslog 메시지에서 타임스탬프, IP 주소, 사용자 이름, 파일 경로와 같은 다양한 필드를 추출합니다. 그런 다음 추출된 필드를 통합 데이터 모델(UDM) 스키마 내의 해당 속성에 매핑하여 원시 로그 데이터를 분석을 위한 구조화된 형식으로 효과적으로 변환합니다.
시작하기 전에
다음 기본 요건이 충족되었는지 확인합니다.
- Google SecOps 인스턴스
- Windows 2016 이상 또는
systemd
가 있는 Linux 호스트 - 프록시 뒤에서 실행되는 경우 방화벽 포트가 열려 있습니다.
- Dell EMC Isilon에 대한 액세스 권한 관리
Google SecOps 처리 인증 파일 가져오기
- Google SecOps 콘솔에 로그인합니다.
- SIEM 설정 > 수집 에이전트로 이동합니다.
- 처리 인증 파일을 다운로드합니다. Bindplane가 설치될 시스템에 파일을 안전하게 저장합니다.
Google SecOps 고객 ID 가져오기
- Google SecOps 콘솔에 로그인합니다.
- SIEM 설정 > 프로필로 이동합니다.
- 조직 세부정보 섹션에서 고객 ID를 복사하여 저장합니다.
Bindplane 에이전트 설치
다음 안내에 따라 Windows 또는 Linux 운영체제에 Bindplane 에이전트를 설치합니다.
Windows 설치
- 관리자 권한으로 명령 프롬프트 또는 PowerShell을 엽니다.
다음 명령어를 실행합니다.
msiexec /i "https://github.com/observIQ/bindplane-agent/releases/latest/download/observiq-otel-collector.msi" /quiet
Linux 설치
- 루트 또는 sudo 권한으로 터미널을 엽니다.
다음 명령어를 실행합니다.
sudo sh -c "$(curl -fsSlL https://github.com/observiq/bindplane-agent/releases/latest/download/install_unix.sh)" install_unix.sh
추가 설치 리소스
추가 설치 옵션은 설치 가이드를 참고하세요.
Syslog를 수집하고 Google SecOps로 전송하도록 Bindplane 에이전트 구성
- 구성 파일에 액세스합니다.
config.yaml
파일을 찾습니다. 일반적으로 Linux의/etc/bindplane-agent/
디렉터리 또는 Windows의 설치 디렉터리에 있습니다.- 텍스트 편집기 (예:
nano
,vi
, 메모장)를 사용하여 파일을 엽니다.
다음과 같이
config.yaml
파일을 수정합니다.receivers: udplog: # Replace the port and IP address as required listen_address: "0.0.0.0:514" exporters: chronicle/chronicle_w_labels: compression: gzip # Adjust the path to the credentials file you downloaded in Step 1 creds_file_path: '/path/to/ingestion-authentication-file.json' # Replace with your actual customer ID from Step 2 customer_id: <customer_id> endpoint: malachiteingestion-pa.googleapis.com # Add optional ingestion labels for better organization ingestion_labels: log_type: 'DELL_EMC_NAS' raw_log_field: body service: pipelines: logs/source0__chronicle_w_labels-0: receivers: - udplog exporters: - chronicle/chronicle_w_labels
인프라에서 필요에 따라 포트와 IP 주소를 바꿉니다.
<customer_id>
를 실제 고객 ID로 바꿉니다./path/to/ingestion-authentication-file.json
를 1단계에서 인증 파일이 저장된 경로로 업데이트합니다.
Bindplane 에이전트를 다시 시작하여 변경사항 적용
Linux에서 Bindplane 에이전트를 다시 시작하려면 다음 명령어를 실행합니다.
sudo systemctl restart bindplane-agent
Windows에서 Bindplane 에이전트를 다시 시작하려면 서비스 콘솔을 사용하거나 다음 명령어를 입력하면 됩니다.
net stop BindPlaneAgent && net start BindPlaneAgent
OneFS 버전 7.x의 syslog를 구성합니다.
- CLI를 사용하여 Dell Isilon에 로그인합니다.
다음 명령어를 사용하여 감사를 사용 설정합니다 (
zone_name
를 실제 호스트로 바꿈).isi audit settings modify --protocol-auditing-enabled yes --audited-zones <zone_names> isi zone zones modify <zone_name> --audit-success create,delete,read,rename,set_security,write isi zone zones modify <zone_name> --audit-failure create,delete,read,rename,set_security,write isi zone zones modify <zone_name> --syslog-audit-events create,delete,read,rename,set_security,write
다음 명령어를 사용하여 syslog 전달을 사용 설정합니다.
isi zone zones modify <zone_name> --syslog-forwarding-enabled=yes
SSH 클라이언트를 사용하여 Isilon 노드에 연결합니다.
/etc/mcp/templates
디렉터리에 있는vi
를 사용하여syslog.conf
파일을 엽니다.vi syslog.conf
!audit_protocol
줄을 찾아 다음 줄을 추가하고<bindplane-ip>
를 실제 Bindplane 에이전트 IP 주소로 바꿉니다.*.* @<bindplane-ip>
syslog.conf
파일을 저장합니다.```bash :wq ```
OneFS 버전 8.0 및 8.1의 Syslog 구성:
- CLI를 사용하여 Dell Isilon에 로그인합니다.
다음 명령어를 사용하여 감사를 사용 설정합니다 (
zone_name
를 실제 호스트로 바꿈).isi audit settings global modify --protocol-auditing-enabled yes --audited-zones <zone_names> isi audit settings modify --zone <zone_name> --audit-success create,delete,read,rename,set_security,write isi audit settings modify --zone <zone_name> --audit-failure create,delete,read,rename,set_security,write isi audit settings modify --zone <zone_name> --syslog-audit-events create,delete,read,rename,set_security,write
다음 명령어를 사용하여 syslog 전달을 사용 설정합니다.
isi audit settings modify --syslog-forwarding-enabled=yes --zone=<zone_name>
SSH 클라이언트를 사용하여 Isilon 노드에 연결합니다.
/etc/mcp/templates
디렉터리에 있는vi
를 사용하여syslog.conf
파일을 엽니다.vi syslog.conf
!audit_protocol
줄을 찾아 다음 줄을 추가하고<bindplane-ip>
를 실제 Bindplane 에이전트 IP 주소로 바꿉니다.*.* @<bindplane-ip>
syslog.conf
파일을 저장합니다.:wq
OneFS 버전 8.2~9.4의 Syslog 구성:
다음 명령어를 사용하여 감사를 사용 설정합니다 (
<bindplane-ip
를 Bindplane 에이전트 IP 주소로,zone_name
를 실제 호스트로 바꿉니다).isi audit settings global modify --protocol-auditing-enabled yes --audited-zones <zone_name> --protocol-syslog-servers <bindplane-ip> isi audit settings modify --zone <zone_name> --audit-success create,delete,read,renam,set_security,write isi audit settings modify --zone <zone_name> --audit-failure create,delete,read,rename,set_security,write isi audit settings modify --zone <zone_name> --syslog-audit-events create,delete,read,rename,set_security,write
다음 명령어를 사용하여 syslog 전달을 사용 설정합니다.
isi audit settings modify --syslog-forwarding-enabled yes --zone <zone_name>
UDM 매핑 표
로그 필드 | UDM 매핑 | 논리 |
---|---|---|
COMMAND | target.process.command_line | 원시 로그 필드 COMMAND 가 이 UDM 필드에 매핑됩니다. |
PWD | target.file.full_path | message 에 command not allowed 가 포함되지 않은 경우 원시 로그 필드 PWD 가 이 UDM 필드에 매핑됩니다. |
사용자 | principal.user.userid | 원시 로그 필드 USER 가 이 UDM 필드에 매핑됩니다. |
action_done | 파싱 로직에 사용되는 임시 변수입니다. | |
애플리케이션 | target.application | 원시 로그 필드 application 가 이 UDM 필드에 매핑됩니다. |
데이터 | 이 필드는 UDM에 매핑되지 않습니다. | |
description | metadata.description | 원시 로그 필드 description 가 이 UDM 필드에 매핑됩니다. 또한 message 에 command not allowed 가 포함된 경우 command not allowed 가 이 필드에 매핑됩니다. |
file_name | target.file.full_path | 원시 로그 필드 file_name 는 ' |
intermediary_ip | intermediary.ip | 원시 로그 필드 intermediary_ip 가 이 UDM 필드에 매핑됩니다. |
kv_data | 파싱 로직에 사용되는 임시 변수입니다. | |
method | 파싱 로직에 사용되는 임시 변수입니다. | |
pid | target.process.pid | 원시 로그 필드 pid 가 비어 있지 않거나 - 가 아닌 경우 이 UDM 필드에 매핑됩니다. |
resource_type | target.resource.type | 원시 로그 필드 resource_type 가 이 UDM 필드에 매핑됩니다. |
src_host | principal.hostname | 원시 로그 필드 src_host 가 이 UDM 필드에 매핑됩니다. |
src_ip | principal.ip | 원시 로그 필드 src_ip 가 이 UDM 필드에 매핑됩니다. Grok 패턴을 사용하여 description 필드에서 추출할 수도 있습니다. |
상태 | 파싱 로직에 사용되는 임시 변수입니다. | |
ts | metadata.event_timestamp.seconds | 원시 로그 필드 ts 가 파싱되고 그 초 값이 이 UDM 필드에 매핑됩니다. |
사용자 | principal.user.userid | USER 가 비어 있으면 원시 로그 필드 user 가 이 UDM 필드에 매핑됩니다. |
wsid | principal.user.windows_sid | 원시 로그 필드 wsid 는 ` |
해당 사항 없음 | metadata.event_type | 이 UDM 필드는 action_done , method , PWD 값을 기반으로 파서 로직에서 파생됩니다. PROCESS_UNCATEGORIZED , PROCESS_OPEN , FILE_CREATION , FILE_OPEN , FILE_DELETION , FILE_MODIFICATION , FILE_UNCATEGORIZED , STATUS_SHUTDOWN (기본값) 중 하나일 수 있습니다. |
해당 사항 없음 | security_result.action | 이 UDM 필드는 status 값을 기반으로 파서 로직에서 파생됩니다. ALLOW 또는 BLOCK 이 될 수 있습니다. |
해당 사항 없음 | security_result.summary | 이 UDM 필드는 파서 로직에서 파생되며 action_done 값으로 채워집니다. |
해당 사항 없음 | security_result.description | 이 UDM 필드는 method 및 status 값을 - 구분자로 연결하여 파서 로직에서 파생됩니다. |
해당 사항 없음 | metadata.vendor_name | 이 UDM 필드는 DELL 로 하드코딩되어 있습니다. |
해당 사항 없음 | metadata.product_name | 이 UDM 필드는 DELL_EMC_NAS 로 하드코딩되어 있습니다. |
해당 사항 없음 | metadata.log_type | 이 UDM 필드는 DELL_EMC_NAS 로 하드코딩되어 있습니다. |
도움이 더 필요하신가요? 커뮤니티 회원 및 Google SecOps 전문가의 답변을 받아 보세요.