I am look for some help with a script I am trying to run that will turn on Airports web proxy, add the domain and port and turn on authentication and the corresponding username/password. I want to have the proxy authentication to happen blind to users
I am able to execute the script without any errors, the web proxy turns on and the fields for my domain and port all populate. However turning on authentication and the username/password blanks do not populate
#!/bin/bash
/usr/sbin/networksetup -setwebproxy "Airport" "proxy.server.com" "123" "On" "proxyuser" "proxypass"
exit 0
Thanks in advance!
Cory