C613-50170-01 Rev B
Command Reference for x510 Series
1826
AlliedWare Plus™ Operating System - Version 5.4.7-1.x
A
UTHENTICATION
C
OMMANDS
SHOW
PROXY
-
AUTOCONFIG
-
FILE
show proxy-autoconfig-file
Overview
This command displays the contents of the proxy auto configuration (PAC) file.
Syntax
show proxy-autoconfig-file
Mode
Privileged Exec
Example
To display the contents of the proxy auto configuration (PAC) file, enter the
command:
awplus#
show auth proxy-autoconfig-file
Output
Figure 42-10: Example output from
show proxy-autoconfig-file
Related
Commands
function FindProxyForURL(url,host)
{
if (isPlainHostName(host) ||
isInNet(host, “192.168.1.0”,”255.255.255.0”)) {
return “DIRECT”;
}
else {
return “PROXY 192.168.110.1:8080”;
}
}