IBM QRadar SOAR: Configuring HTTP Proxy settings: Difference between revisions

From Wiki
No edit summary
Line 22: Line 22:
  <nowiki>HTTP_PROXY=http://proxy.corp.com:8080  
  <nowiki>HTTP_PROXY=http://proxy.corp.com:8080  
HTTPS_PROXY=http://proxy.corp.com:8080  
HTTPS_PROXY=http://proxy.corp.com:8080  
NO_PROXY=localhost,127.0.0.1,localaddress,corp.com,10.0.0.0/8</nowiki>
NO_PROXY=localhost,127.0.0.1,localhost.localdomain,corp.com,10.0.0.0/8</nowiki>


restart daemons
restart daemons
Line 31: Line 31:
  manageAppHost proxy --https-proxy-url http://<ip address>
  manageAppHost proxy --https-proxy-url http://<ip address>
  manageAppHost proxy --http-proxy-url http://<ip address>
  manageAppHost proxy --http-proxy-url http://<ip address>


= Ver também =
= Ver também =

Revision as of 14:04, 27 November 2025

Configure proxy o main host

1) Connect to CLI, using resadmin user

2) Run command

sudo resutil configset -key proxyhost -s <ip address>
sudo resutil configset -key proxyport -i <port>


sudo systemctl restart k3s

Configure proxy on app host

3) Edit file /etc/systemd/system/k3s.service.env

and set

HTTP_PROXY=http://proxy.corp.com:8080 
HTTPS_PROXY=http://proxy.corp.com:8080 
NO_PROXY=localhost,127.0.0.1,localhost.localdomain,corp.com,10.0.0.0/8

restart daemons

sudo systemctl daemon-reload
sudo systemctl restart k3s
manageAppHost proxy --https-proxy-url http://<ip address>
manageAppHost proxy --http-proxy-url http://<ip address>

Ver também