1. ip filtering enable/disable
xpack.security.transport.filter.enabled: false
xpack.security.http.filter.enabled: true
2. ip filtering 설정
transport 설정
xpack.security.transport.filter.allow: localhost
xpack.security.transport.filter.deny: '*.google.com'
http 설정
xpack.security.http.filter.allow: 172.16.0.0/16
xpack.security.http.filter.deny: _all
3. dynamicall updating ip filter
transport allow 설정
curl -XPUT localhost:9200/_cluster/settings -d '{
"persistent" : {
"xpack.security.transport.filter.allow" : "172.16.0.0/24"
}
}'
ip filtering disable
curl -XPUT localhost:9200/_cluster/settings -d '{
"persistent" : {
"xpack.security.transport.filter.enabled" : false
}
}'
'NoSQL > Elasticsearch' 카테고리의 다른 글
x-pack 설정시 다른 app 접근방법 (0) | 2017.03.23 |
---|---|
x-pack 설정시 client 접근 방법 (0) | 2017.03.23 |
kibana 서버 ssl 인증 (0) | 2017.03.23 |
x-pack 사용자 정보 cache에서 clear (0) | 2017.03.22 |
x-pack kibana, logstash에 대한 기본 모니터링 user 등록 (0) | 2017.03.22 |