웹 사이트 <제한에 대한 기본 제한>
개요
<limits>
요소의 <siteDefaults>
요소는 웹 서버에 대한 클라이언트 요청에 대한 대역폭, 연결 수 또는 연결 시간 제한을 제한하는 기본 설정을 구성합니다.
참고
<limits>
요소가 특정 사이트에 대한 섹션과 <site>
섹션 모두에서 <siteDefaults>
구성된 경우 섹션의 <site>
구성이 해당 사이트에 사용됩니다.
호환성
버전 | 참고 |
---|---|
IIS 8.5 | <limits> 요소가 IIS 8.5에서 수정되지 않았습니다. |
IIS 8.0 | <limits> 요소가 IIS 8.0에서 수정되지 않았습니다. |
IIS 7.5 | <limits> 요소가 IIS 7.5에서 수정되지 않았습니다. |
IIS 7.0 | <limits> 요소의 <siteDefaults> 요소는 IIS 7.0에서 도입되었습니다. |
IIS 6.0 | 요소는 <limits> 다음 IIS 6.0 메타베이스 설정을 대체합니다.
|
설치 프로그램
<limits>
요소의 <siteDefaults>
요소는 IIS 7 이상의 기본 설치에 포함됩니다.
방법
서버에 대한 기본 연결 제한 옵션을 구성하는 방법
IIS(인터넷 정보 서비스) 관리자를 엽니다.
Windows Server 2012 또는 Windows Server 2012 R2를 사용하는 경우:
- 작업 표시줄에서 서버 관리자 클릭하고 도구를 클릭한 다음 IIS(인터넷 정보 서비스) 관리자를 클릭합니다.
Windows 8 또는 Windows 8.1 사용하는 경우:
- Windows 키를 누른 채로 문자 X를 누른 다음 제어판 클릭합니다.
- 관리 도구를 클릭한 다음 IIS(인터넷 정보 서비스) 관리자를 두 번 클릭합니다.
Windows Server 2008 또는 Windows Server 2008 R2를 사용하는 경우:
- 작업 표시줄에서 시작을 클릭하고 관리 도구를 가리킨 다음 IIS(인터넷 정보 서비스) 관리자를 클릭합니다.
Windows Vista 또는 Windows 7을 사용하는 경우:
- 작업 표시줄에서 시작을 클릭한 다음 제어판 클릭합니다.
- 관리 도구를 두 번 클릭한 다음 IIS(인터넷 정보 서비스) 관리자를 두 번 클릭합니다.
연결 창에서 사이트 노드를 클릭합니다.
사이트 창의 작업 창에서 웹 사이트 기본값 설정...을 클릭합니다.
웹 사이트 기본값 대화 상자에서 제한을 확장하고 제한 옵션을 지정한 다음 확인을 클릭합니다.
구성
특성
attribute | Description |
---|---|
connectionTimeout |
선택적 timeSpan 특성입니다. 비활성으로 간주되는 연결을 끊기 전에 IIS가 대기하는 시간(초)을 지정합니다. 연결은 다음과 같은 이유로 비활성으로 간주될 수 있습니다.
00:02:00 . |
maxBandwidth |
선택적 uint 특성입니다. 사이트에 사용되는 최대 네트워크 대역폭(초당 바이트)을 지정합니다. IIS 작업으로 네트워크 오버로드를 방지하려면 이 설정을 사용합니다. 기본값은 4294967295 입니다. |
maxConnections |
선택적 uint 특성입니다. 사이트의 최대 연결 수를 지정합니다. 이 설정을 사용하여 동시 클라이언트 연결 수를 제한합니다. 기본값은 4294967295 입니다. |
maxUrlSegments |
선택적 uint 특성입니다. URL에 허용되는 최대 세그먼트 수를 지정합니다. 기본값은 32 입니다. |
자식 요소
없음
구성 샘플
다음 구성 샘플에서는 IIS 7 이상에 대한 기본 limits
옵션을 지정합니다.
<system.applicationHost>
<sites>
<siteDefaults>
<limits connectionTimeout="00:02:00" />
</siteDefaults>
</sites>
</system.applicationHost>
샘플 코드
다음 코드 샘플은 3분 동안 IIS 7 이상 connectionTimeout
에 대한 기본 limits
옵션을 구성합니다.
AppCmd.exe
appcmd.exe set config -section:system.applicationHost/sites /siteDefaults.limits.connectionTimeout:"00:03:00" /commit:apphost
참고
AppCmd.exe 사용하여 이러한 설정을 구성할 때 commit 매개 변수 apphost
를 로 설정해야 합니다. 그러면 구성 설정이 ApplicationHost.config 파일의 적절한 위치 섹션에 커밋됩니다.
C#
using System;
using System.Text;
using Microsoft.Web.Administration;
internal static class Sample
{
private static void Main()
{
using (ServerManager serverManager = new ServerManager())
{
Configuration config = serverManager.GetApplicationHostConfiguration();
ConfigurationSection sitesSection = config.GetSection("system.applicationHost/sites");
ConfigurationElement siteDefaultsElement = sitesSection.GetChildElement("siteDefaults");
ConfigurationElement limitsElement = siteDefaultsElement.GetChildElement("limits");
limitsElement["connectionTimeout"] = TimeSpan.Parse("00:03:00");
serverManager.CommitChanges();
}
}
}
VB.NET
Imports System
Imports System.Text
Imports Microsoft.Web.Administration
Module Sample
Sub Main()
Dim serverManager As ServerManager = New ServerManager
Dim config As Configuration = serverManager.GetApplicationHostConfiguration
Dim sitesSection As ConfigurationSection = config.GetSection("system.applicationHost/sites")
Dim siteDefaultsElement As ConfigurationElement = sitesSection.GetChildElement("siteDefaults")
Dim limitsElement As ConfigurationElement = siteDefaultsElement.GetChildElement("limits")
limitsElement("connectionTimeout") = TimeSpan.Parse("00:03:00")
serverManager.CommitChanges()
End Sub
End Module
JavaScript
var adminManager = new ActiveXObject('Microsoft.ApplicationHost.WritableAdminManager');
adminManager.CommitPath = "MACHINE/WEBROOT/APPHOST";
var sitesSection = adminManager.GetAdminSection("system.applicationHost/sites", "MACHINE/WEBROOT/APPHOST");
var siteDefaultsElement = sitesSection.ChildElements.Item("siteDefaults");
var limitsElement = siteDefaultsElement.ChildElements.Item("limits");
limitsElement.Properties.Item("connectionTimeout").Value = "00:03:00";
adminManager.CommitChanges();
VBScript
Set adminManager = WScript.CreateObject("Microsoft.ApplicationHost.WritableAdminManager")
adminManager.CommitPath = "MACHINE/WEBROOT/APPHOST"
Set sitesSection = adminManager.GetAdminSection("system.applicationHost/sites", "MACHINE/WEBROOT/APPHOST")
Set siteDefaultsElement = sitesSection.ChildElements.Item("siteDefaults")
Set limitsElement = siteDefaultsElement.ChildElements.Item("limits")
limitsElement.Properties.Item("connectionTimeout").Value = "00:03:00"
adminManager.CommitChanges()