Skip to content

A Glimpse at gnoppixctl

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

gnoppixctl [COMMAND]

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 Starts the Tor service and redirects all outgoing network traffic through the Tor network, enhancing anonymity.

  • 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 of the Tor service, indicating whether it is running and if traffic is being routed through Tor.

  • 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.

  • version Prints the version information of the gnoppixctl utility and then exits.

To start Tor and redirect all traffic:

Terminal window
sudo gnoppixctl start

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 the service or send a hangup (HUP) signal to reload the configuration.

  • Systemd (Linux daemon):
Terminal window
sudo systemctl restart tor
* **Browser:** Simply close and reopen the browser.
---
> ⚠️ **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.