2025-03-14 21:59:59 -06:00
|
|
|
# siege
|
|
|
|
|
|
|
|
|
|
> HTTP 부하 테스트 및 벤치마킹 도구.
|
|
|
|
|
> 더 많은 정보: <https://www.joedog.org/siege-manual/>.
|
|
|
|
|
|
|
|
|
|
- 기본 설정으로 URL 테스트:
|
|
|
|
|
|
|
|
|
|
`siege {{https://example.com}}`
|
|
|
|
|
|
|
|
|
|
- URL 목록 테스트:
|
|
|
|
|
|
2026-08-06 22:19:46 -06:00
|
|
|
`siege {{[-f|--file]}} {{경로/대상/url_목록.txt}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- URL 목록을 무작위 순서로 테스트 (인터넷 트래픽 시뮬레이션):
|
|
|
|
|
|
2026-08-06 22:19:46 -06:00
|
|
|
`siege {{[-i|--internet]}} {{[-f|--file]}} {{경로/대상/url_목록.txt}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- URL 목록 벤치마킹 (요청 사이에 대기하지 않음):
|
|
|
|
|
|
2026-08-06 22:19:46 -06:00
|
|
|
`siege {{[-b|--benchmark]}} {{[-f|--file]}} {{경로/대상/url_목록.txt}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- 동시 연결 수 설정:
|
|
|
|
|
|
2026-08-06 22:19:46 -06:00
|
|
|
`siege {{[-c|--concurrent]}} {{50}} {{[-f|--file]}} {{경로/대상/url_목록.txt}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- 실행 시간 설정:
|
|
|
|
|
|
2026-08-06 22:19:46 -06:00
|
|
|
`siege {{[-t|--time]}} {{30s}} {{[-f|--file]}} {{경로/대상/url_목록.txt}}`
|