Restrict http listener

How can i restrict influxdb to access only from one ip address. so that data posted from telegraf are inserted to influx only if its from accepted ip address.

InfluxDB supports HTTP authentication along with HTTPS in order to create a secure connection. It does not support the ability to restrict access based on the client’s IP address.

You can always restrict access based on IP address at the network or OS level. Firewall tools like iptables for Linux, Security Groups for AWS, or load balancers like NGINX all allow you to provide access controls based on IP address.

yes thanks man. :+1: