{"id":8401,"date":"2025-07-03T19:41:53","date_gmt":"2025-07-03T17:41:53","guid":{"rendered":"https:\/\/tech.lobobrothers.com\/?p=8401"},"modified":"2025-07-26T19:27:57","modified_gmt":"2025-07-26T17:27:57","slug":"send-all-traffic-through-the-tor-network","status":"publish","type":"post","link":"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/","title":{"rendered":"Send all traffic through the Tor network"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"8401\" class=\"elementor elementor-8401 elementor-8344\" data-elementor-post-type=\"post\">\n\t\t\t\t<div class=\"elementor-element elementor-element-facf801 e-flex e-con-boxed e-con e-parent\" data-id=\"facf801\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-366b814 elementor-widget elementor-widget-text-editor\" data-id=\"366b814\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<h2 data-start=\"151\" data-end=\"590\"><strong data-start=\"151\" data-end=\"172\">Torifying Traffic<\/strong><\/h2>\n<p><\/p>\n<p data-start=\"151\" data-end=\"590\">Let\u2019s create a short guide on how to route all your machine\u2019s traffic through the Tor network. Why would you want to do this? Well, for many reasons\u2014but considering the times we live in, one stands out: so you can watch football for free. What? You don&#8217;t like football? Me neither. But I like even less when thousands of websites are blocked indiscriminately just because someone is out there kicking a ball around.<\/p>\n<p><\/p>\n<p data-start=\"592\" data-end=\"958\">Now, what do you do when half the internet is blocked because the geniuses at La Liga have decided that nothing else matters during matches besides their exclusive broadcasting rights? Easy\u2014you take a break, grab a beer (or two, if needed), sit back, and use this opportunity to learn something actually useful: stress testing La Liga\u2019s systems from the Tor network.<\/p>\n<p><\/p>\n<p data-start=\"960\" data-end=\"1137\">They block, you load test. Who cares if you can\u2019t watch anything? At least you\u2019re helping to improve the user experience\u2014or, well, at least forcing them to update their servers.<\/p>\n<p><\/p>\n<p data-start=\"1139\" data-end=\"1544\">And hey, if you\u2019re feeling generous, you\u2019re also contributing to their financial management. Yeah, because one thing that won\u2019t be missing is an inflated Azure bill thanks to the unexpected traffic you just sent their way. It\u2019s an involuntary donation, but at least you know you\u2019re contributing to their &#8220;financial sustainability.&#8221; If someone\u2019s going down, we\u2019re all going down&#8230; except Azure, of course.<\/p>\n<h2 data-start=\"1546\" data-end=\"1746\"><\/h2>\n<p><\/p>\n<h2 data-start=\"1546\" data-end=\"1746\"><strong data-start=\"1546\" data-end=\"1567\">INSTALLING TORCTL<\/strong><\/h2>\n<p><\/p>\n<p data-start=\"1546\" data-end=\"1746\">I recommend setting up a virtual machine for learning. In this case, we\u2019ll be using Kali Linux, but you can use any Linux distro. This guide works with any Debian-based system.<\/p>\n<p><\/p>\n<p data-start=\"1748\" data-end=\"1896\">Once your machine is ready, start by installing the necessary dependencies. Kali comes with some of them pre-installed, but other distros might not.<\/p>\n<blockquote><p>sudo apt-get install tor macchanger secure-delete iptables<\/p><\/blockquote>\n<p><img decoding=\"async\" class=\"aligncenter wp-image-8367 size-full\" src=\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/dependencias-torctl.png\" alt=\"instalando dependencias torctl\" width=\"999\" height=\"418\" srcset=\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/dependencias-torctl.png 999w, https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/dependencias-torctl-300x126.png 300w, https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/dependencias-torctl-768x321.png 768w\" sizes=\"(max-width: 999px) 100vw, 999px\" \/><\/p>\n<p>Next we download the repo<\/p>\n<blockquote><p>git clone https:\/\/github.com\/BlackArch\/torctl.git<\/p><\/blockquote>\n<p><img decoding=\"async\" class=\"aligncenter wp-image-8369 size-full\" src=\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/git-clone-torctl.png\" alt=\"git clone torctl\" width=\"672\" height=\"203\" srcset=\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/git-clone-torctl.png 672w, https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/git-clone-torctl-300x91.png 300w\" sizes=\"(max-width: 672px) 100vw, 672px\" \/><\/p>\n<p>Now:<\/p>\n<blockquote><p>cd torctl<br \/>\nsudo mv service\/* \/etc\/systemd\/system<br \/>\nsudo mv bash-completion\/torctl \/usr\/share\/bash-completion\/completions\/torctl<br \/>\nsed -i &#8216;s\/TOR_UID=&#8221;tor&#8221;\/TOR_UID=&#8221;debian-tor&#8221;\/&#8217; torctl<br \/>\nsudo mv torctl \/usr\/local\/bin\/torctl<\/p><\/blockquote>\n<p>In Debian when you install Tor it creates the debian-tor user, so we replace the script part with the debian-tor user.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter wp-image-8374 size-full\" src=\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/instalacion-torctl.png\" alt=\"instalacion torctl\" width=\"768\" height=\"325\" srcset=\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/instalacion-torctl.png 768w, https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/instalacion-torctl-300x127.png 300w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/><\/p>\n<p>You can delete the folder now because it&#8217;s already installed, that easy.<\/p>\n<blockquote><p>cd .. &amp;&amp; rm -rf torctl<\/p><\/blockquote>\n<p>If we now type torctl we will get the following very intuitive options:<\/p>\n<p><img decoding=\"async\" class=\"aligncenter wp-image-8378 size-full\" src=\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/opciones-torctl-1.png\" alt=\"opciones torctl\" width=\"780\" height=\"427\" srcset=\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/opciones-torctl-1.png 780w, https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/opciones-torctl-1-300x164.png 300w, https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/opciones-torctl-1-768x420.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" \/><\/p>\n<p>The best thing to do is enable autostart if you always want this machine to be connected to Tor. However, it&#8217;s still recommended that you always run the following command in the console:<\/p>\n<blockquote><p>curl ifconfig.me<\/p><\/blockquote>\n<p>or through the browser itself, since once it&#8217;s running, all traffic goes through Tor, regardless of the application used. Let&#8217;s test it. Before running Torctl start, we check our IP address, as follows:<\/p>\n<blockquote><p>sudo torctl start<\/p><\/blockquote>\n<p>and we check our IP again<\/p>\n<blockquote><p>curl ifconfig.me<\/p><\/blockquote>\n<p><img decoding=\"async\" class=\"aligncenter wp-image-8385 size-full\" src=\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/torctl-test-1.png\" alt=\"test torctl\" width=\"482\" height=\"625\" srcset=\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/torctl-test-1.png 482w, https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/torctl-test-1-231x300.png 231w, https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/torctl-test-1-412x534.png 412w\" sizes=\"(max-width: 482px) 100vw, 482px\" \/><\/p>\n<p>The IPs will be constantly changing, but if we go to any service in the browser to find out the IP, we will see that we are in onion mode on the Tor network.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter wp-image-8390 size-full\" src=\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/cual-es-mi-ip.png\" alt=\"cual es mi ip\" width=\"988\" height=\"347\" srcset=\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/cual-es-mi-ip.png 988w, https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/cual-es-mi-ip-300x105.png 300w, https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/cual-es-mi-ip-768x270.png 768w\" sizes=\"(max-width: 988px) 100vw, 988px\" \/><\/p>\n<p>Well, that&#8217;s it! Now you can watch free football for those who like it and those who don&#8217;t want to increase their league bill. You can start by trying Locust, here&#8217;s the article. <a href=\"https:\/\/tech.lobobrothers.com\/en\/locust-io-load-testing-made-easy\/\"><span style=\"text-decoration: underline;\">here<\/span><\/a><\/p>\n<p>Our league manuals will only increase if the league keeps blocking you so you don&#8217;t get bored during the games, since that&#8217;s what&#8217;s sure to work or not&#8230; hehe, because they&#8217;re so clumsy that they might just get blocked.<\/p>\n<p>And that&#8217;s all, have a good weekend.<\/p>\n<p>TL.<\/p>\n<p>Thank you for reading our posts.<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Torifying Traffic Let\u2019s create a short guide on how to route all your machine\u2019s traffic through the Tor network. Why would you want to do this? Well, for many reasons\u2014but considering the times we live in, one stands out: so you can watch football for free. What? You don&#8217;t like football? Me neither. But I [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":8404,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[49,50,51],"tags":[],"class_list":["post-8401","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux-world","category-open-source","category-security"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Send all traffic through the Tor network - LBT<\/title>\n<meta name=\"description\" content=\"Learn how to route all your machine&#039;s traffic through the Tor network using Linux. A practical and humorous guide to bypassing internet blocks and understanding how online privacy works.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Send all traffic through the Tor network - LBT\" \/>\n<meta property=\"og:description\" content=\"Learn how to route all your machine&#039;s traffic through the Tor network using Linux. A practical and humorous guide to bypassing internet blocks and understanding how online privacy works.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog sobre linux y el mundo opensource\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/LoboBrothers\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-07-03T17:41:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-26T17:27:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/torificando-el-trafico-1024x683.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"683\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"TL\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"TL\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/\"},\"author\":{\"name\":\"TL\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/person\/11c359ab9896aa196007651fa6208beb\"},\"headline\":\"Send all traffic through the Tor network\",\"datePublished\":\"2025-07-03T17:41:53+00:00\",\"dateModified\":\"2025-07-26T17:27:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/\"},\"wordCount\":630,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/torificando-el-trafico.png.webp\",\"articleSection\":[\"Linux World\",\"Open Source\",\"Security\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/\",\"url\":\"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/\",\"name\":\"Send all traffic through the Tor network - LBT\",\"isPartOf\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/torificando-el-trafico.png.webp\",\"datePublished\":\"2025-07-03T17:41:53+00:00\",\"dateModified\":\"2025-07-26T17:27:57+00:00\",\"description\":\"Learn how to route all your machine's traffic through the Tor network using Linux. A practical and humorous guide to bypassing internet blocks and understanding how online privacy works.\",\"breadcrumb\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/#primaryimage\",\"url\":\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/torificando-el-trafico.png.webp\",\"contentUrl\":\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/torificando-el-trafico.png.webp\",\"width\":1536,\"height\":1024,\"caption\":\"torificando el trafico\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\/\/tech.lobobrothers.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Send all traffic through the Tor network\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#website\",\"url\":\"https:\/\/tech.lobobrothers.com\/en\/\",\"name\":\"Tech LBT\",\"description\":\"Como apasionados de la tecnolog\u00eda y amantes del open source creamos este blog con art\u00edculos interesantes obre linux, cloud, open source, criptomonedas y ciberseguridad\",\"publisher\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/tech.lobobrothers.com\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#organization\",\"name\":\"Lobo Brothers Technology\",\"url\":\"https:\/\/tech.lobobrothers.com\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2019\/06\/logo_red.png\",\"contentUrl\":\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2019\/06\/logo_red.png\",\"width\":110,\"height\":50,\"caption\":\"Lobo Brothers Technology\"},\"image\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/LoboBrothers\/\",\"https:\/\/www.linkedin.com\/company\/lobobrothers\/about\/?viewAsMember=true\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/person\/11c359ab9896aa196007651fa6208beb\",\"name\":\"TL\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a2d3b9e0b67bd28fe8248346c09cbe07?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a2d3b9e0b67bd28fe8248346c09cbe07?s=96&d=mm&r=g\",\"caption\":\"TL\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Send all traffic through the Tor network - LBT","description":"Learn how to route all your machine's traffic through the Tor network using Linux. A practical and humorous guide to bypassing internet blocks and understanding how online privacy works.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/","og_locale":"en_US","og_type":"article","og_title":"Send all traffic through the Tor network - LBT","og_description":"Learn how to route all your machine's traffic through the Tor network using Linux. A practical and humorous guide to bypassing internet blocks and understanding how online privacy works.","og_url":"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/","og_site_name":"Blog sobre linux y el mundo opensource","article_publisher":"https:\/\/www.facebook.com\/LoboBrothers\/","article_published_time":"2025-07-03T17:41:53+00:00","article_modified_time":"2025-07-26T17:27:57+00:00","og_image":[{"width":1024,"height":683,"url":"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/torificando-el-trafico-1024x683.png","type":"image\/png"}],"author":"TL","twitter_card":"summary_large_image","twitter_misc":{"Written by":"TL","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/#article","isPartOf":{"@id":"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/"},"author":{"name":"TL","@id":"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/person\/11c359ab9896aa196007651fa6208beb"},"headline":"Send all traffic through the Tor network","datePublished":"2025-07-03T17:41:53+00:00","dateModified":"2025-07-26T17:27:57+00:00","mainEntityOfPage":{"@id":"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/"},"wordCount":630,"commentCount":0,"publisher":{"@id":"https:\/\/tech.lobobrothers.com\/en\/#organization"},"image":{"@id":"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/#primaryimage"},"thumbnailUrl":"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/torificando-el-trafico.png.webp","articleSection":["Linux World","Open Source","Security"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/","url":"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/","name":"Send all traffic through the Tor network - LBT","isPartOf":{"@id":"https:\/\/tech.lobobrothers.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/#primaryimage"},"image":{"@id":"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/#primaryimage"},"thumbnailUrl":"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/torificando-el-trafico.png.webp","datePublished":"2025-07-03T17:41:53+00:00","dateModified":"2025-07-26T17:27:57+00:00","description":"Learn how to route all your machine's traffic through the Tor network using Linux. A practical and humorous guide to bypassing internet blocks and understanding how online privacy works.","breadcrumb":{"@id":"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/#primaryimage","url":"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/torificando-el-trafico.png.webp","contentUrl":"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2025\/07\/torificando-el-trafico.png.webp","width":1536,"height":1024,"caption":"torificando el trafico"},{"@type":"BreadcrumbList","@id":"https:\/\/tech.lobobrothers.com\/en\/send-all-traffic-through-the-tor-network\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/tech.lobobrothers.com\/en\/"},{"@type":"ListItem","position":2,"name":"Send all traffic through the Tor network"}]},{"@type":"WebSite","@id":"https:\/\/tech.lobobrothers.com\/en\/#website","url":"https:\/\/tech.lobobrothers.com\/en\/","name":"Tech LBT","description":"Como apasionados de la tecnolog\u00eda y amantes del open source creamos este blog con art\u00edculos interesantes obre linux, cloud, open source, criptomonedas y ciberseguridad","publisher":{"@id":"https:\/\/tech.lobobrothers.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tech.lobobrothers.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/tech.lobobrothers.com\/en\/#organization","name":"Lobo Brothers Technology","url":"https:\/\/tech.lobobrothers.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2019\/06\/logo_red.png","contentUrl":"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2019\/06\/logo_red.png","width":110,"height":50,"caption":"Lobo Brothers Technology"},"image":{"@id":"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/LoboBrothers\/","https:\/\/www.linkedin.com\/company\/lobobrothers\/about\/?viewAsMember=true"]},{"@type":"Person","@id":"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/person\/11c359ab9896aa196007651fa6208beb","name":"TL","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a2d3b9e0b67bd28fe8248346c09cbe07?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a2d3b9e0b67bd28fe8248346c09cbe07?s=96&d=mm&r=g","caption":"TL"}}]}},"post_mailing_queue_ids":[],"_links":{"self":[{"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/posts\/8401","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/comments?post=8401"}],"version-history":[{"count":1,"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/posts\/8401\/revisions"}],"predecessor-version":[{"id":8402,"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/posts\/8401\/revisions\/8402"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/media\/8404"}],"wp:attachment":[{"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/media?parent=8401"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/categories?post=8401"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/tags?post=8401"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}