Quote from: psil0 on August 01, 2013, 03:16 amQuoteI would be using bridges so it would not come up as TOR on the persons router. Just as someone using a VPN. Also, while using TAILS does your real macadress get saved to the router?I use a different Linux distro, but I know Tails has features enable you to randomize your MAC address on startup. If your MAC address is spoofed, it (your real MAC address) will not be recorded on the router. Use a random one every time you boot up. Check out the Tails documentation and forums. Here's how to do it for Linux Mint -- the method will probably work for any Debian-derived distro. Quote Manipulate your system's MAC addressI'm always a fan of collecting useful utilities, and I'm proud to say that macchanger is one of them. I've always appreciated the usefulness of this utility that I made it a point to install it when installing a new version of Ubuntu/LinuxMint on my lappy.Some features that this utility offer are:- Set a MAC of another vendor- Set another MAC of the same vendor- Set specific MAC address of a network interface- Set the MAC randomlyTo install the macchanger utility:sudo apt-get install macchangerHere's how I setup macchanger to automatically change my NIC's MAC address to a random MAC address.Create a file named changemac on your /etc/init.d/ folder with:gksudo gedit /etc/init.d/changemacThe content of the changemac file would be the text below colored BLUE (copy and paste it).# Start of script file#!/bin/bash# Disable all the network devicesifconfig eth0 downifconfig wlan0 down# The value for wlan0 (eth1) would change depending on the driver you're using - Be it Broadcom's STA wireless driver or Broadcom's B43 wireless driver# Spoof the current MAC addresses with a random MAC address/usr/bin/macchanger -r eth0/usr/bin/macchanger -r wlan0# Re-enable all the network devicesifconfig eth0 upifconfig wlan0 up# End of script filehttp://community.linuxmint.com/tutorial/view/376 Nightcrawler4096R/BBF7433B 2012-09-22 Nightcrawler PGP Key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xB8F1D88EBBF7433B (MIT clearnet keyserver)PGP Key: https://keys.indymedia.org/pks/lookup?op=get&search=0xB8F1D88EBBF7433B (IndyMedia https: clearnet keyserver)PGP Key: http://qtt2yl5jocgrk7nu.onion/pks/lookup?op=get&search=0xB8F1D88EBBF7433B (IndyMedia .onion keyserver)PGP Key: http://dkn255hz262ypmii.onion/index.php?topic=174.msg633090#msg633090 (Silk Road Forums PGP Key Link)PGP Key Fingerprint = 83F8 CAF8 7B73 C3C7 8D07 B66B AFC8 CE71 D9AF D2F0