Settings and protection management
Available commands
To get a list of all available AdGuard commands, enter:
adguard-cli --help-all
Enable and disable protection
Enable protection
To enable protection, enter:
adguard-cli start
This command attempts to configure a redirection to the proxy.
Disable protection
To disable protection, enter:
adguard-cli stop
This command not only stops the proxy but also stops the trafic from redirecting to it.
Check protection status
To view the protection status, enter:
adguard-cli status
Updates
Check for updates
To check for updates, enter:
adguard-cli check-update
Update AdGuard for Linux
To update AdGuard for Linux, enter:
adguard-cli update
Update script output
To view the update script output, enter:
adguard-cli update -v
Configure AdGuard for Linux
Use the config
command to configure AdGuard for Linux. Subcommands:
show
: Show the current configuration inproxy.yaml
set
: Configure an option inproxy.yaml
listen_ports.http_proxy
: HTTP listening portproxy_mode
: Proxy mode (manual
orauto
)
get
: Get the current status of the above options
Manage filters
Use the filters
command to configure AdGuard for Linux. Subcommands:
list
: List installed filters--all
: View all filters
install
: Install a filter. Enter the URL of the filter you want to installenable
: Enable a filter. Enter the name or ID of the filterdisable
: Disable a filter. Enter the name or ID of the filterupdate
: Update filters
Changing the proxy server listen address in manual proxy mode
By default, the proxy server listens on 127.0.0.1
— the address of the loopback network interface.
There are two ways to make the proxy server listen on a different interface:
- Run
adguard-cli config set listen_address <address>
where<address>
is the address to listen on. - Edit the config file directly:
- To determine the location of the config file, run
adguard-cli config show | grep "Config location"
. - Look for the
listen_address
key and set its value accordingly. To listen on all available network interfaces, set the listen address to0.0.0.0
or::
.
- To determine the location of the config file, run
If the listen address is set to anything other than 127.0.0.1
, then proxy client authentication is required. AdGuard CLI will not start unless proxy authentication is configured:
- When running
adguard-cli config set listen_address <address>
where<address>
is not127.0.0.1
, AdGuard CLI will prompt for a username and password if proxy authentication is not already configured. - When editing the config file directly, look for the
listen_auth
key. Set theenabled
sub-key totrue
, andusername
andpassword
to non-empty values.