I had set up rabbitmq
server on a remote machine, now I want to restrict the client (producer/consumer) based on IP address to connect to rabbitmq
.
where consumers and producers are on different networks. Only allowed consumer/producer can publish/subscribe to queue. How to achieve this.
I had implemented simple producer/consumer code in nodejs aqmp
library which works properly. Also, I had enabled the auth_backend_ip_range
library on rabbitmq
server.
But I don't know how to set only specific producer and consumer IP to connect it.