您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關Linux中如何配置雙網(wǎng)卡雙網(wǎng)關路由表的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
服務器操作系統(tǒng)RedHat linux 9,設置兩張路由表
1. vi /etc/iproute2/rt_tables,增加網(wǎng)通和電信兩個路由表
251 tel 電信路由表
252 cnc 網(wǎng)通路由表
2. 給網(wǎng)卡綁定兩個地址用于電信和網(wǎng)通兩個線路
ip addr add 192.168.0.2/24 dev eth0
ip addr add 10.0.0.2/24 dev eth2
3、分別設置電信和網(wǎng)通的路由表
電信路由表:
#確保找到本地子網(wǎng)
ip route add 192.168.0..0/24 via 192.168.0.2 dev eth0 table tel
#內(nèi)部回環(huán)網(wǎng)絡
ip route add 127.0.0.0/8 dev lo table tel
#192.168.0.1為電信網(wǎng)絡默認網(wǎng)關地址
ip route add default via 192.168.0.1 dev eth0 table tel
網(wǎng)通線路路由表:
#確保找到本地子網(wǎng)
ip route add 10.0.0.0/24 via 10.0.0.2 dev eth2 table cnc
#內(nèi)部回環(huán)網(wǎng)絡
ip route add 127.0.0.0/8 dev lo table cnc
#10.0.0.1是網(wǎng)通的默認網(wǎng)關
ip route add default via 10.0.0.1 dev eth2 table cnc
4、電信和網(wǎng)通各有自己的路由表,制定策略,讓192.168.0.2的回應數(shù)據(jù)包走電信的路由表路由,10.0.0.2的回應數(shù)據(jù)包走網(wǎng)通的路由表路由
ip rule add from 192.168.0.1 table tel
ip rule add from 10.0.0.1 table cnc
感謝各位的閱讀!關于“Linux中如何配置雙網(wǎng)卡雙網(wǎng)關路由表”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。