본문 바로가기

기술자료/기술운영자료

403 - 사용 권한 없음: 액세스가 거부되었습니다. 오류 해결법

C:\Windows\System32\inetsrv\config 경로에서 applicationHost.config 파일을 연다.

아래의 ipSecurity allowUnlisted 설정 부분을 true로 변경한다.

    <location path="eduadmin.lawnb.com">
        <system.webServer>
            <asp enableParentPaths="false" />
            <security>
                <ipSecurity allowUnlisted="
true" />
            </security>
        </system.webServer>
        <system.ftpServer>
            <security>
                <ipSecurity enableReverseDns="false" />
            </security>
        </system.ftpServer>
    </location> 

* 참고 URL
http://support.microsoft.com/kb/942068/ko