Linux Commands for Modifying Routes

In Linux systems, modifying routes (i.e., configuring the network routing table) is primarily done using the ip route command (recommended, part of the iproute2 toolkit, standard in modern Linux distributions) or the traditional route command (older, still supported by some systems). Here are common operations and examples: 1. View Current Routing Table Before making changes, … Read more

Complete Collection of Linux and Container Networking

TodayIt is easy to start something, but it is difficult to persist in it!Fortunately, I managed to complete this collection in less than two months;It may not be deep or broad, but it is merely a summary and reminder of my own knowledge! Serial Number Link 1 Understanding Different Container Networking Series 1: Basics 2 … Read more

Container Networking Series 7: Linux Policy-Based Routing

Container Networking Series 7: Linux Policy-Based Routing

Linux Networking Series:Container Networking Series 1: BasicsContainer Networking Series 2: Unveiling the Packet Transmission ProcessContainer Networking Series 3: Understanding Linux VLAN NetworksContainer Networking Series 4: Network Packet Capture and Analysis on LinuxContainer Networking Series 5: The Versatile Tool iproute2Container Networking Series 6: Comprehensive Guide to Linux Routing TableContainer Networking Series 7: Linux Policy-Based RoutingContainer Networking … Read more

Daily Linux Command: Ip

Daily Linux Command: Ip

<span>ip</span> command is a powerful tool for network interface configuration and management in Linux systems, part of the <span>iproute2</span> software package. It replaces the outdated <span>ifconfig</span>, <span>route</span>, and <span>arp</span> commands, offering more powerful and flexible functionality. 📌 Basic Syntax ip [options] object [command] [parameters] Common objects include: <span>link</span>: network interfaces (e.g., eth0, wlan0) <span>addr</span> or … Read more

Essential Linux Networking Tool Skills

Essential Linux Networking Tool Skills

The use of networking configuration tools in Linux systems is a fundamental skill. The main networking configuration tools (commands) are ip, ifconfig, route, and arp. This article mainly shares these tools from the perspectives of historical background, functionality, scenarios, and usage methods. Introduction to Linux Networking Software Packages ifconfig and route are traditional tools (originating … Read more

Comparison of Linux TCP/IP Network Tools: net-tools vs iproute2

Comparison of Linux TCP/IP Network Tools: net-tools vs iproute2

(Click the public account above, to quickly follow) Original: Dan Nanni Translation: KayGuoWhu Link: https://linux.cn/article-4326-1.html Nowadays, many system administrators still configure network functions and troubleshoot network issues using command-line tools such as ifconfig, route, arp, and netstat (collectively known as net-tools). Net-tools originated from the BSD TCP/IP toolbox and later became the tool for configuring … Read more