A Arif Butt Member Aug 24, 2023 #1 Hi there We want to disable the WCS http 8081 access, kindly assist how to do it? Thnx AB
Max Administrator Staff member Aug 25, 2023 #2 Good day. If you want to disable HTTP port but use only HTTPS 8444, you can set up firewall (iptables, fwd etc) or NAT router to block requests to port 8081 from outside, for example Code: iptables -A INPUT -p tcp --dport 8081 -j DROP If you want to disable some actions on HTTP interface, please refer to this doc: HTTP interfaces access restriction
Good day. If you want to disable HTTP port but use only HTTPS 8444, you can set up firewall (iptables, fwd etc) or NAT router to block requests to port 8081 from outside, for example Code: iptables -A INPUT -p tcp --dport 8081 -j DROP If you want to disable some actions on HTTP interface, please refer to this doc: HTTP interfaces access restriction