web-dev-qa-db-ja.com

異なるゲートウェイで2つのネットワークインターフェイスを構成する方法

/etc/network/interfacesファイルには次のものがあります。

auto lo    
iface lo inet loopback

auto eth0    
iface eth0 inet static    
address 172.168.10.252    
netmask 255.255.255.0    
network 172.168.10.0    
broadcast 172.168.10.255    
gateway 172.168.10.1    

iface eth1 inet static    
address 172.168.10.251    
netmask 255.255.255.0    
network 172.168.10.0    
broadcast 172.168.10.255    
gateway 172.168.10.10

ローカルネットワークにはeth0を、インターネットにはeth1を使用したいと思います。ありがとう

3
aimbots

Eth0とeth1が2つのネットワーク192.168.0.0/2410.10.0.0/24を使用するように2つのインターフェイスを設定するには、ツールiproute2を使用してこれを達成できます。

手順:

  1. /etc/network/interfacesを編集します:

    auto lo
    iface lo inet loopback
    
    # The primary network interface
    
    allow-hotplug eth0
    iface eth0 inet static
        address 192.168.0.10
        netmask 255.255.255.0
        gateway 192.168.0.1
    
    # The secondary network interface
    allow-hotplug eth1
        iface eth1 inet static
        address 10.10.0.10
        netmask 255.255.255.0
    
  2. `/ etc/iproute2/rt_tablesを編集して、2番目のルーティングテーブルを追加します。

    #
    # reserved values
    #
    255     local
    254     main
    253     default
    0       unspec
    #
    # local
    #
    #1      inr.ruhep
    1 rt2
    
  3. 新しいルーティングテーブルを作成します。

    ip route add 10.10.0.0/24 dev eth1 src 10.10.0.10 table rt2
    ip route add default via 10.10.0.1 dev eth1 table rt2
    
    # The first command says that the network, 10.10.0.0/24, can be reached through the eth1 interface.
    # The second command sets the default gateway.
    
  4. ルーティングルールを追加します。

    ip rule add from 10.10.0.10/32 table rt2
    ip rule add to 10.10.0.10/32 table rt2
    
    # These rules say that both traffic from the IP address, 10.10.0.10, as well as traffic directed to 
    # or through this IP address, should use the rt2 routing table
    
  5. /etc/network/interfacesに追加して構成を永続化する:

    iface eth1 inet static
        address 10.10.0.10
        netmask 255.255.255.0
        post-up ip route add 10.10.0.0/24 dev eth1 src 10.10.0.10 table rt2
        post-up ip route add default via 10.10.0.1 dev eth1 table rt2
        post-up ip rule add from 10.10.0.10/32 table rt2
        post-up ip rule add to 10.10.0.10/32 table rt2
    

ソース:

https://www.thomas-krenn.com/en/wiki/Two_Default_Gateways_on_One_System

2
George Udosen