You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Get Kerberos tickets first
kinit user@COMPANY.COM
# Run command with flags
cx project list \
--proxy "http://proxy.company.com:8080" \
--proxy-auth-type kerberos \
--proxy-kerberos-spn "HTTP/proxy.company.com"
# Get tickets
kinit user@COMPANY.COM
# Set base configuration via environmentexport CX_HTTP_PROXY="http://proxy.company.com:8080"export CX_PROXY_AUTH_TYPE=kerberos
# Override SPN with flag (higher precedence)
cx project list --proxy-kerberos-spn "HTTP/specific-proxy.company.com"
Setup Steps
Get Kerberos tickets: kinit user@COMPANY.COM
Verify tickets: klist
Configure proxy settings (flags or environment variables)