This procedure assumes you have already configured web filtering to use either Cisco Umbrella or the Cisco open DNS servers.
- Select the device in Remote Manager and click Actions > Open Console, or log into the TX54 local command line as a user with full Admin access rights.
Depending on your device configuration, you may be presented with an Access selection menu. Type admin to access the Admin CLI.
- Disable web filtering:
> config firewall web-filter enable false
>
- Attempt to connect to the Cisco test URL http://www.internetbadguys.com by using either a web browser or the curl command from a Linux shell:
$ curl -I http://www.internetbadguys.com
HTTP/1.1 200 OK
Server: Apache
Content-Type: text/html; charset=UTF-8
Accept-Ranges: bytes
Date: Thu, Jan 11, 2024 12:10:00
X-Varnish: 4201397492
Age: 0
Via: 1.1 varnish
Connection: keep-alive
$
You should receive an "HTTP/1.1 200 OK" message, as highlighted above.
- Return to the Admin CLI and enable web filtering:
> config firewall web-filter enable true
>
- Attempt to connect to http://www.internetbadguys.com again:
$ curl -I www.internetbadguys.com
HTTP/1.1 403 Forbidden
Server: openresty/1.9.7.3
Date: Thu, Jan 11, 2024 12:10:00
Content-Type: text/html
Connection: keep-alive
$
You should receive an "HTTP/1.1 403 Forbidden" message, as highlighted above.