Disabling MP in Edge

My proxy have totally 8 MPs. I wanted to use only 2 MPs. Is there a option to disable the MPs. If so then , Will it affect only the proxy or whole env? Please help

@Siddharth Barahalikar

0 2 264
2 REPLIES 2

To temporarily stop MPs from serving requests, you can block the HTTP/HTTPS transport port.

#HTTP (default)
sudo iptables -A INPUT -i eth0 -p tcp --dport 8998 -j REJECT

#HTTPS (if HTTPS is enabled between Router and MP)
sudo iptables -A INPUT -i eth0 -p tcp --dport 8082 -j REJECT

Then just flush the IP tables to re-enable.

Thanks @Mark Eccles. Disabling MPs affects only that proxy or whole env?