Configure Dual NIC Routing on Linux: Separate Internal and External Networks
This guide explains how to set up a Linux server with two network cards so that internal traffic uses its own NIC while external traffic uses the other, including default gateway configuration and persistent route commands.
Company needs a server with two NICs to access both external and internal networks. After configuring the internal NIC first, adding the external NIC and its gateway caused the internal address to become unreachable because no default gateway was set, causing internal traffic to be routed through the external gateway.
To fix this, set the external gateway as the default route and add a specific route for the internal network so that traffic to 192.168.0.0/16 uses eth0.
Commands:
route add default gw 119.222.222.1 route add -net 192.168.0.0 netmask 255.255.0.0 dev eth0Persist the routes by adding them to /etc/rc.local. To remove the default gateway, use:
route del defaultSigned-in readers can open the original source through BestHub's protected redirect.
This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactand we will review it promptly.
MaGe Linux Operations
Founded in 2009, MaGe Education is a top Chinese high‑end IT training brand. Its graduates earn 12K+ RMB salaries, and the school has trained tens of thousands of students. It offers high‑pay courses in Linux cloud operations, Python full‑stack, automation, data analysis, AI, and Go high‑concurrency architecture. Thanks to quality courses and a solid reputation, it has talent partnerships with numerous internet firms.
How this landed with the community
Was this worth your time?
0 Comments
Thoughtful readers leave field notes, pushback, and hard-won operational detail here.
