Addigy does not have a method for deploying proxy settings within the UI, but there are still two simple methods of deploying proxy settings via Addigy. However, both methods will take some additional configuration.
Method 1: Running a script
This method uses the native command-line tool, networksetup, so we will be adding a new Script to Devices page. You can learn more about scripts in the article How to Create and Run Scripts.
But, before entering our command we must first find the correct settings.
To list all network services, run the command:
sudo network setup -listallnetworkservices
Choose a network service for which you will be establishing a proxy. In this example, we will use Wi-Fi.
Now, we will be generating our script. For proxies without authentication, use
networksetup -setwebproxy "Wi-Fi" proxy.company.com 80
and for authenticated proxies, use
networksetup -setwebproxy "Wi-Fi" proxy.company.com 80 On $username $password
(To setup an FTP proxy simply replace -setwebproxy with -setftpproxy)
To verify that it worked you can go on any workstations that this has been applied to and go to System Preferences -> Network -> Advanced -> Proxies -> Select your proxy.
Method 2: Deploying a Custom Profile
To configure a Proxy via MDM, seeing as all providers may have different requirements, it would be best to consult with the provider on what is required to achieve this via MDM.
After you have created a .mobileconfig file with the desired proxy settings, follow the instructions in our article How To: Configure and Deploy a Custom MDM Profile.