> For the complete documentation index, see [llms.txt](https://docs.panther.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.panther.com/ko/data-onboarding/supported-logs/syslog.md).

# Syslog 로그

## 개요

Panther는 일반적인 방법을 통해 Syslog 로그 수집을 지원합니다 [데이터 전송](/ko/data-onboarding/data-transports.md) 옵션: Amazon Web Services(AWS) S3, SQS 및 CloudWatch.

## Panther에 Syslog 로그를 온보딩하는 방법

이 로그를 Panther에 연결하려면:

1. Panther Console의 왼쪽 탐색 모음에서 **로그 소스**.
2. 클릭합니다 **새로 만들기**.
3. 온보딩하려는 로그 유형을 검색한 다음 해당 타일을 클릭합니다.
4. 이 통합에 사용할 데이터 전송 방법을 선택한 다음, Panther의 해당 방법 구성 지침을 따르세요:
   * [AWS CloudWatch](/ko/data-onboarding/data-transports/aws/cloudwatch.md)
   * [AWS SQS](/ko/data-onboarding/data-transports/aws/sqs.md)
   * [AWS S3 버킷](/ko/data-onboarding/data-transports/aws/s3.md)
5. Syslog를 구성하여 로그를 Data Transport 소스로 푸시합니다.
   * 선택한 Data Transport 소스로 로그를 푸시하는 방법은 Syslog 문서를 참조하세요.

{% hint style="info" %}
Syslog 온보딩 구현은 로그 포워더 사용에 달려 있습니다.
{% endhint %}

## 지원되는 로그 유형

{% hint style="info" %}
Fluentd를 통해 수집된 Syslog 로그의 경우, 다음을 참조하세요. [Fluentd Syslog 스키마](/ko/data-onboarding/supported-logs/fluentd.md#supported-log-types).
{% endhint %}

### Syslog.RFC3164

RFC3164 형식용 Syslog 파서(예: BSD-syslog 메시지)

참조: [RFC3164 BSD 프로토콜에 대한 Syslog 문서.](https://datatracker.ietf.org/doc/html/rfc3164)

```yaml
schema: Syslog.RFC3164
description: RFC3164 형식용 Syslog 파서(예: BSD-syslog 메시지)
referenceURL: https://tools.ietf.org/html/rfc3164
필드:
    - 이름: priority
      필수: true
      설명: 우선순위는 (Facility * 8 + Severity)로 계산됩니다. 이 값이 낮을수록 로그 메시지의 중요도는 높습니다.
      유형: smallint
    - name: facility
      필수: true
      description: 'Facility 값은 어떤 프로세스가 메시지를 생성했는지 결정하는 데 도움이 됩니다. 예: 0 = 커널 메시지, 3 = 시스템 데몬.'
      유형: smallint
    - 이름: severity
      필수: true
      description: 'Severity는 메시지의 심각도를 나타냅니다. 예: 0=긴급(Emergency)부터 7=디버그(Debug)까지.'
      유형: smallint
    - 이름: timestamp
      설명: UTC 기준 syslog 메시지의 타임스탬프.
      유형: timestamp
      시간 형식:
        - rfc3339
        - '%b  %d %H:%M:%S'
      이벤트 시간 여부: true
    - 이름: hostname
      설명: 호스트 이름은 원래 syslog 메시지를 보낸 머신을 식별합니다.
      유형: string
      지표:
        - 호스트 이름
    - name: appname
      설명: Appname은 syslog 메시지를 생성한 장치 또는 애플리케이션을 식별합니다.
      유형: string
    - name: procid
      설명: ProcID는 흔히 프로세스 ID이지만, 로그 분석기가 syslog 보고의 불연속성을 감지할 수 있도록 사용하는 임의의 값일 수도 있습니다.
      유형: string
    - name: msgid
      설명: MsgID는 메시지 유형을 식별합니다. 예를 들어 방화벽은 들어오는 TCP 트래픽에 대해 MsgID 'TCPIN'을 사용할 수 있습니다.
      유형: string
    - 이름: message
      설명: Message에는 이벤트에 대한 정보를 제공하는 자유 형식의 텍스트가 포함됩니다.
      유형: string
```

### Syslog.RFC5424

RFC5424 형식용 Syslog 파서.

참조: [RFC5424 프로토콜에 대한 Syslog 문서.](https://datatracker.ietf.org/doc/html/rfc5424)

```yaml
schema: Syslog.RFC5424
description: RFC5424 형식용 Syslog 파서.
referenceURL: https://tools.ietf.org/html/rfc5424
필드:
    - 이름: priority
      필수: true
      설명: 우선순위는 (Facility * 8 + Severity)로 계산됩니다. 이 값이 낮을수록 로그 메시지의 중요도는 높습니다.
      유형: smallint
    - name: facility
      필수: true
      description: 'Facility 값은 어떤 프로세스가 메시지를 생성했는지 결정하는 데 도움이 됩니다. 예: 0 = 커널 메시지, 3 = 시스템 데몬.'
      유형: smallint
    - 이름: severity
      필수: true
      description: 'Severity는 메시지의 심각도를 나타냅니다. 예: 0=긴급(Emergency)부터 7=디버그(Debug)까지.'
      유형: smallint
    - 이름: version
      필수: true
      description: syslog 메시지 프로토콜의 버전입니다. RFC5424는 버전이 0이 될 수 없다고 규정하므로, 0 값은 버전이 없음을 의미합니다.
      유형: int
    - 이름: timestamp
      설명: UTC 기준 syslog 메시지의 타임스탬프.
      유형: timestamp
      시간 형식:
        - rfc3339
      이벤트 시간 여부: true
    - 이름: hostname
      설명: 호스트 이름은 원래 syslog 메시지를 보낸 머신을 식별합니다.
      유형: string
      지표:
        - 호스트 이름
    - name: appname
      설명: Appname은 syslog 메시지를 생성한 장치 또는 애플리케이션을 식별합니다.
      유형: string
    - name: procid
      설명: ProcID는 흔히 프로세스 ID이지만, 로그 분석기가 syslog 보고의 불연속성을 감지할 수 있도록 사용하는 임의의 값일 수도 있습니다.
      유형: string
    - name: msgid
      설명: MsgID는 메시지 유형을 식별합니다. 예를 들어 방화벽은 들어오는 TCP 트래픽에 대해 MsgID 'TCPIN'을 사용할 수 있습니다.
      유형: string
    - name: structured_data
      description: StructuredData는 정보를 잘 정의되고 쉽게 파싱 가능한 형식으로 표현하는 메커니즘을 제공합니다.
      유형: json
    - 이름: message
      설명: Message에는 이벤트에 대한 정보를 제공하는 자유 형식의 텍스트가 포함됩니다.
      유형: string
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.panther.com/ko/data-onboarding/supported-logs/syslog.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
