Skip to content

A Glimpse at gnoppixctl

gnoppixctl - A utility for managing Tor connectivity, network anonymity, and system privacy on Gnoppix.

gnoppixctl [COMMAND] [-https]

The gnoppixctl command-line utility provides a convenient interface for controlling various aspects of network anonymity and system privacy on Gnoppix. It allows users to easily start and stop Tor, manage network traffic redirection, modify MAC addresses, and configure automatic privacy features.

  • start [-https] Starts the Tor service and redirects network traffic through the Tor network. By default all outgoing traffic is routed through Tor. With the optional -https flag, only HTTPS (port 443) traffic is redirected — everything else stays on clearnet.

  • stop Stops the Tor service and reverts network traffic redirection, allowing all traffic to flow through the clearnet (unencrypted and untorified internet).

  • status Displays the current status, showing whether traffic is being routed through Tor and whether the mode is Full (all traffic) or HTTPS only.

  • restart Restarts the Tor service and reapplies the necessary traffic redirection rules. This can be useful for refreshing the Tor connection or resolving connectivity issues.

  • autowipe Enables memory wiping at system shutdown. When enabled, the system will attempt to securely clear RAM contents during the shutdown process, helping to prevent sensitive data from being recovered.

  • autostart Configures gnoppixctl to automatically start and apply its network rules at system boot. This ensures that Tor connectivity and traffic redirection are active from the moment the system starts.

  • ip Retrieves and displays your current remote IP address as seen by external services. When Tor is active, this will show your Tor exit node’s IP address.

  • chngid Requests Tor to change its identity, which typically results in a new Tor exit node and a different IP address for your connection. This is useful for obtaining a new circuit and improving anonymity.

  • chngmac Randomizes the MAC addresses of all active network interfaces on the system. This can help to prevent tracking based on hardware identifiers.

  • rvmac Reverts the MAC addresses of all network interfaces to their original, permanent values. Use this command to undo changes made by chngmac.

To start Tor and redirect all traffic:

Terminal window
sudo gnoppixctl start

To start Tor and redirect only HTTPS traffic (port 443):

Terminal window
sudo gnoppixctl start -https

To check the current status and mode:

Terminal window
sudo gnoppixctl status

To change the IP rotation frequency to 1 or 5 minutes, you need to modify Tor’s main configuration file, torrc, and adjust the MaxCircuitDirtiness parameter.

By default, this is set to 600 seconds (10 minutes). You can drop this down to 300 seconds (5 minutes) or 60 seconds (1 minute). For a normal useage the default 10min. are good.

Here is exactly how to do it:

The location depends on how you are running Tor:

  • Standalone Tor Daemon (Gnoppix): /etc/tor/torrc

Open the file in a text editor (you may need sudo for system-wide installations) and add or modify the following line at the bottom:

For a 5-minute rotation:

MaxCircuitDirtiness 300

For a 1-minute rotation:

MaxCircuitDirtiness 60

For the changes to take effect, restart Tor to pick up the new configuration.

  • via gnoppixctl:
Terminal window
sudo gnoppixctl restart
  • Systemd (standalone Tor daemon):
Terminal window
sudo systemctl restart tor@default

⚠️ The Trade-Offs (Why this isn’t recommended):

  • It hurts performance: Building a new 3-hop circuit requires cryptographic handshakes with three separate nodes. Doing this every 60 seconds causes noticeable latency spikes and slows down your overall browsing experience.
  • It degrades anonymity: Tor’s security relies on blending your traffic with everyone else. By rapidly changing circuits every minute, you create a highly distinct traffic pattern (a unique “heartbeat”) that can actually make it easier for an adversary tracking network timing to correlate your activity.