proxy

All posts tagged proxy by Linux Bash
  • Posted on
    Featured Image
    In the realm of web development and system administration, there are often needs to fetch or send data from and to various servers. This task may become challenging when dealing with proxy servers. Fortunately, curl, a powerful tool, offers a method to bypass proxy settings for specific commands without altering environment variables. Let’s dive into how you can achieve this using the --socks5-hostname option. A1: curl is a command-line tool used for transferring data with URL syntax. It supports various protocols including HTTP, HTTPS, FTP, FTPS, SCP, SFTP, and more. It is known for its versatility and widespread usage in handling data across networks.
  • Posted on
    Featured Image
    In today's connected world, secure communication is more critical than ever. Tools like socat (SOcket CAT) play a vital role in network debugging and data exchange by proxying and capturing traffic. A particularly useful feature of socat is its ability to handle TLS termination, enabling secure transfers even across unsecured networks. In this article, we will explore how to use socat to proxy traffic between ports with TLS termination. A: socat is a command line utility that establishes two bidirectional byte streams and transfers data between them. Because each stream can be a file, a pipe, a device (serial line etc.), a socket (UNIX, IP4, IP6 - raw, UDP, TCP), an SSL socket, proxy CONNECT connection, etc.
  • Posted on
    Featured Image
    Managing a Linux system often involves needing to download packages and update your system using tools like apt, dnf, or zypper. However, in corporate environments or certain geographical locations, your network might require you to use a proxy server to access external network resources. This can be a bit confusing when you first encounter it, but no worries; setting up a proxy for updates and downloads from the command line is straightforward once you know where to make the right adjustments. Before diving into configurations, let's quickly understand what a proxy server does. A proxy acts as an intermediary for requests from clients seeking resources from other servers.
  • Posted on
    Featured Image
    When working with Linux, the ability to configure and use proxy settings efficiently can be essential, especially in corporate environments or regions where direct internet access is restricted. Package managers such as APT (used primarily by Debian and Ubuntu), DNF (used by Fedora), and Zypper (used by openSUSE) are fundamental tools for software management. However, they require proper proxy configuration to function correctly behind a firewall. Here, we will explore how to configure proxy settings for these package managers, ensuring you can install updates and software seamlessly in any network environment. APT (Advanced Package Tool) is the package management system used by Debian and its derivatives like Ubuntu.