Linux下多網路卡多網段訪問 --- 網路卡及Gateway, 路由設定(Linux OS)
RAC 機器,有三塊網路卡,一塊用於公司對外,一塊用於對公司內部隔離網段, 還有一心跳線網路卡 。網路卡設定eth0 10.16.8.71 , eth1 172.20.0.11 , 心跳線 eth2 10.1.1.5 . (當然另外一臺網路卡設定eth0 10.16.8.72 , eth1 172.20.0.12 , 心跳線 eth2 10.1.1.6 )。
現在要求 172.20 的網路卡能被內部網路的 192.168 , 172.17 , 172.19 等VLAN訪問 (當然交換機上已經設定ok), 外部網路10.16 網需要被 10.13 , 10.15 , 10.18 , 10.14 等VLAN訪問, 由於是公司其他單位控制交換裝置,只能新增路由來設定。
可以在 /etc/sysconfig/ 下設定network 的預設Gataway為 交換機上設定好的可以訪問到多個內網VLAN的Gateway : 172.20.0.1 。
由於Server 預設Gateway 設定為172.20.0.1 , 公司外部網路 (10.16段)對多個VLAN訪問只能透過路由設定了。 於是設定在/etc/rc.local , 啟動的時候生效 。
route add -net 10.16.0.0 netmask 255.255.0.0 gw 10.16.8.1 dev eth0
route add -net 10.13.0.0 netmask 255.255.0.0 gw 10.16.8.1 dev eth0
route add -net 10.15.0.0 netmask 255.255.0.0 gw 10.16.8.1 dev eth0
route add -net 10.14.0.0 netmask 255.255.0.0 gw 10.16.8.1 dev eth0
route add -net 10.18.0.0 netmask 255.255.0.0 gw 10.16.8.1 dev eth0
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/35489/viewspace-85069/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 多網路卡路由出口配置路由
- 雲主機新增網路卡配置多網路卡策略路由路由
- linux下一個網路卡配置多個IPLinux
- 深度分析Linux下雙網路卡繫結七種模式 多網路卡的7種bond模式原理Linux模式
- linux 網路卡繫結Linux
- Linux網路卡繫結Linux
- 如何在centos上配置802.1Q VLAN標記,linux單網路卡多vlan多網段Ip配置案例CentOSLinux
- Linux系統自定義網路卡並更改網路卡介面Linux
- 多網路卡 配置多閘道器
- Linux系統新增自定義網路卡並更改網路卡介面Linux
- Mac Linux 重啟網路卡MacLinux
- Linux 7 配置網路卡(nmcli)Linux
- LINUX下手工新增網路卡Linux
- Linux Ubuntu 修改網路卡名字LinuxUbuntu
- Linux(09):網路卡繫結Linux
- Linux修改網路卡的名字Linux
- linux下打滿網路卡的頻寬和影響打滿網路卡的原因Linux
- linux檢視網路卡型號Linux
- rocky linux 重啟網路卡命令Linux
- Linux 雙網路卡雙IP配置Linux
- 多網路卡環境下利用策略路由實現網路流量同進同出[轉載]路由
- Linux 虛擬網路卡技術:MacvlanLinuxMac
- Linux虛擬網路卡TUN和TAPLinux
- linux網路卡配置檔案詳解Linux
- linux nginx 網站訪問提示502 Bad GatewayLinuxNginx網站Gateway
- 在 Ubuntu 15.10 上為單個網路卡設定多個 IP 地址Ubuntu
- 檢視Linux網路卡UUID和MAC地址---Linux命令LinuxUIMac
- 一個網路卡下設定兩個ip地址
- Windows 一個網路卡配多個IPWindows
- Linux 中如何啟用和禁用網路卡?Linux
- 更改Linux系統的網路卡名稱Linux
- 多網路卡網路改“躍點數”值來設定出口IP(值越小越優先)
- win10待機網路卡不休怎麼設定 win10待機網路卡不斷網設定方法Win10
- Linux案例01:eth0網路卡異常Linux
- Linux網路卡配置檔案 引數詳解Linux
- 在Linux中,如何設定網路路由?Linux路由
- Linux系統如何檢視網路卡的資訊及數量?Linux
- ubuntu下網路卡配置多獨立ip的方法,非常簡單Ubuntu
- Linux——新增預設路由(能ping通本網段,但是ping不通其他網段)Linux路由