cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Announcements
Please sign in to see details of an important advisory in our Customer Advisories area.

Who Me Too'd this topic

Expedition Updates with SSL Inspection

L1 Bithead

I ran into issues updating Expedition through my PAN Firewall running SSL decryption.

 

After a bit of troubleshooting there are two changes I needed to make on the expedition VM.

 

  1.  Update cert file with your SSL Decrypt cert - This allows apt to trust your SSL decryption certificate
    1. Export the Root CA that signed your SSL cert in base64/PEM format
    2. Append the raw text of that SSL Cert to /etc/ssl/certs/ca-certificates.crt
  2. Configure PIP to use that certificate Store - This tells pip to read your SSL certificate store
    1. create /etc/pip.conf and add the following configuration
      [global]
      cert = /etc/ssl/certs/ca-certificates.crt

I also needed to allow this system to download EXE's from the Internet, once PIP started trusting my decryption certificate, I discovered that PIP is downloading EXE's(normally for windows) as part of its script for some reason and this was causing it to throw errors.

 

 

Who Me Too'd this topic