Linux

[Tomcat] 톰캣 특정 IP 접근 제한 설정

IT-PAPA 2023. 1. 8. 12:16
728x90
반응형

Tomcat에서는 특정 IP의 접근을 허용 및 제한하는 옵션을 제공한다.

Tomcat의 설정 파일인 conf/server.xml에서 <Host>...</Host> 사이에 아래 내용을 추가 및 변경하고 재시작 하면된다.

 

#특정 IP 접근 허용 allow

<Valve className="org.apache.catalina.valves.RemoteAddrValve" allow="127.0.0.1, 192.168.0.1"/>

#특정 IP 접근 제한 deny

<Valve className="org.apache.catalina.valves.RemoteAddrValve" deny="192.168.0.1"/>

 

참고 URL

 

Apache Tomcat 9 Configuration Reference (9.0.70) - The Valve Component

When using mod_jk or mod_proxy_ajp, the client's session id is used to determine which back-end server will be used to serve the request. If the target node is being "drained" (in mod_jk, this is the DISABLED state; in mod_proxy_ajp, this is the Drain (N)

tomcat.apache.org

 

728x90
반응형
LIST