# Terminal/Console Sometimes you need to clear counters or statistics to troubleshoot better. To do this use the `clear` command in Operational mode. to clear the console output ```none vyos@vyos:~$ clear console ``` to clear interface counters ```none # clear all interfaces vyos@vyos:~$ clear interface ethernet counters # clear specific interface vyos@vyos:~$ clear interface ethernet eth0 counters ``` The command follows the same logic as the `set` command in configuration mode. ```none # clear all counters of an interface type vyos@vyos:~$ clear interface counters # clear counter of an interface in interface_type vyos@vyos:~$ clear interface counters ``` to clear counters on firewall rulesets or single rules ```none vyos@vyos:~$ clear firewall name counters vyos@vyos:~$ clear firewall name rule counters vyos@vyos:~$ clear firewall ipv6-name counters vyos@vyos:~$ clear firewall ipv6-name rule counters ```