DBILITY

tomcat 8 ip based access control used RemoteAddrFilter 본문

was

tomcat 8 ip based access control used RemoteAddrFilter

DBILITY 2021. 9. 27. 12:07
반응형

독거 가능성 100% 노후에 라면값이라도 하게 광고 한번씩 클릭하시오!

Please click on the ad so that I can pay for ramen in my old age!
老後にラーメン代だけでもするように広告を一回クリックしてください。
点击一下广告,让老后吃个泡面钱吧!

 

web application의 web.xml에 다음과 같이 추가한다.

apache webserver proxypass를 사용할 경우 filter-mapping의 dispatcher부분을 추가하지 않으면 적용이 안된다.

나는 그랬다.

<filter>
	<filter-name>Remote Address Filter</filter-name>
	<filter-class>org.apache.catalina.filters.RemoteAddrFilter</filter-class>
	<init-param>
		<param-name>allow</param-name>
		<param-value>112\.216\.[1-6]0.\d{1,3}||127\.0\.0\.1|::1|0:0:0:0:0:0:0:1</param-value>
	</init-param>
</filter>
<filter-mapping>
	<filter-name>Remote Address Filter</filter-name>
	<url-pattern>/*</url-pattern>
	<dispatcher>REQUEST</dispatcher>
</filter-mapping>

자세한 내용은 아래 링크를 참고하자.

https://tomcat.apache.org/tomcat-8.0-doc/config/valve.html#Remote_IP_Valve

 

Apache Tomcat 8 Configuration Reference (8.0.53) - The Valve Component

The Access Log Valve creates log files in the same format as those created by standard web servers. These logs can later be analyzed by standard log analysis tools to track page hit counts, user session activity, and so on. This Valve uses self-contained l

tomcat.apache.org

 

반응형

'was' 카테고리의 다른 글

tomcat version information command  (0) 2022.08.09
tomcat cache error  (0) 2022.08.04
tomcat HttpServletRequet.getRemoteAddr get ipv4  (0) 2021.09.23
linux tomcat heap size  (0) 2021.08.31
linux tomcat catalina.out log rotate  (0) 2021.06.25
Comments