Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

DPOD can be configure with two network interface :

...

  1. Edit the file /etc/iproute2/rt_tables and add new routing table entry with id "1" named "rt1"



  2. In order to add new routing entry to the new routing table use the "ip route" command.
    This command will add new temporary entry to the routing table.

  3. Add a default gateway entry :

    Code Block
    ip route add default via <interface default gateway> dev <interface name> table <routing table name>


    Example : For adding the default gateway 192.168.1.1 to interface eth1


    Code Block
    languagebash
    themeRDark
    ip route add default via 192.168.1.1 dev eth1 table rt1


  4. Add a routing entry :

    Code Block
    ip route add <destinamtion ip address or subnet> dev <interface name> table <routing table name>


    Example : For adding the route entry to subnet 192.168.1.x to interface eth1

    Code Block
    languagebash
    themeRDark
    ip route add 192.168.1.0/24 dev eth1 table rt1


  5. In order to make these entries permanent edit the file /etc/sysconfig/network-scripts/route-<interface name> and add the following :

    Code Block
    default via <interface default gateway> dev <interface name> table <routing table name>
    <destinamtion ip address or subnet> dev <interface name> table <routing table name>


    For example : Create new permanent routing file for interface eth1 and add the entries used at previous examples :

    Code Block
    default via 192.168.1.1 dev eth1 table rt1
    192.168.1.0/24 dev eth1 table rt1


Create New Routing Rule

The routing rule instruct the operating system when to use the new routing table.

    1. In order to add new routing rule entry to the new routing table use the "ip rule" command.
      This command will add new temporary rule entry .

      Code Block
      ip rule add from <source subnetip ofaddress IPor address>subnet> table <routing table name>
      ip rule add to <destination subnetip ofaddress IPor address>subnet> table <routing table name>


      For example : The routing rule for monitored device 192.168.1.120 are :

      Code Block
      ip rule add from 192.168.1.120/32 table rt1
      ip rule add to 192.168.1.120/32 table rt1


      The specific IP address can be replaced with subnet if subnet rule is appropriate : 192.168.1.0/24

    2. In order to make these entries permanent edit the file /etc/sysconfig/network-scripts/rule-<interface name> and add the following

      Code Block
      from <source subnetip ofaddress IPor address>subnet> table <routing table name>
      to <destination subnetip ofaddress IPor address>subnet> table <routing table name>


      For example : The routing rule for monitored device 192.168.1.120 are :

      Code Block
      from 192.168.1.120/32 table rt1
      to 192.168.1.120/32 table rt1



    3. dsgf



...