Changes between Version 6 and Version 7 of TipAndDoc/VM/network/iproute


Ignore:
Timestamp:
Jun 28, 2009 9:09:33 AM (15 years ago)
Author:
mitty
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TipAndDoc/VM/network/iproute

    v6 v7  
    283283}}} 
    284284 
    285  = 補足 = 
     285 = 補足 = #appendix 
     286 == ルール削除 == #delete rules 
    286287 * ルールを削除する場合は、table あるいは priority を指定して削除する 
    287288{{{ 
     
    295296   * sudo ip rule del prio 1 
    296297 
     298 == synonyms == 
    297299 * priority は現在のところ省略可能 
    298300   * sudo ip rule add from 10.1.0.110 table 1 
     
    324326}}} 
    325327 
     328 == cache == 
    326329 * routing table はキャッシュされるので、すぐに反映されない場合がある 
    327330   * cacheの確認 => ip route show cache 
     
    334337  the routing cache with '''ip route flush cache'''. 
    335338 
     339 == ip rule add iif == 
    336340 * ip rule で from の代わりに iif が使えるかと思ったが、不可 
    337341   * そもそも、iifの使い方がよく分からない。 
     
    361365sudo ip rule add from 10.1.0.20 table 20 prio 2 
    362366}}} 
     367 
     368 == add netmasked route == 
     369 * ip routeでルートを追加する際は、ホスト部が0(つまり「ネットワークアドレス」)でないといけない模様 
     370   * sudo ip route add 10.1.0.10/16 dev eth0 table 10 
     371{{{ 
     372RTNETLINK answers: Invalid argument 
     373}}} 
     374   * sudo ip route add 10.1.0.1/16 dev eth0 table 10 
     375{{{ 
     376RTNETLINK answers: Invalid argument 
     377}}} 
     378 
     379 * 0の部分を省略することは可能 
     380   1. sudo ip route add 10.1.128.0/17 dev eth0 table 10 
     381   1. sudo ip route add 10.1.128.0/16 dev eth0 table 10 
     382   1. sudo ip route add 10.1.128/18 dev eth0 table 10 
     383   * ip route show table 10 
     384{{{ 
     38510.1.128.0/18 dev eth0  scope link 
     38610.1.128.0/17 dev eth0  scope link 
     38710.0.0.0/16 dev eth0  scope link 
     38810.1.0.0/16 dev eth0  scope link 
     389default via 10.1.0.254 dev eth0 
     390}}}