Changes between Version 2 and Version 3 of TipAndDoc/network/defaultgw


Ignore:
Timestamp:
Jun 11, 2009 2:12:59 AM (15 years ago)
Author:
mitty
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TipAndDoc/network/defaultgw

    v2 v3  
    44 * default gateway (default route)の変更方法・扱い 
    55 
    6  = 複数設定されているとき = 
     6 = 複数設定について = 
    77 == CentOS == 
    88 === ifcfg-eth? === 
     
    140140default         192.168.50.1    0.0.0.0         UG    0      0        0 eth0 
    141141}}} 
     142 
     143 === route コマンド === 
     144 * 以下の状態でroute addする 
     145{{{ 
     146Kernel IP routing table 
     147Destination     Gateway         Genmask         Flags Metric Ref    Use Iface 
     148192.168.50.0    *               255.255.255.0   U     0      0        0 eth0 
     149192.168.40.0    *               255.255.255.0   U     0      0        0 eth1 
     150169.254.0.0     *               255.255.0.0     U     0      0        0 eth1 
     151default         192.168.50.1    0.0.0.0         UG    0      0        0 eth0 
     152}}} 
     153 
     154 * route add default gw 192.168.40.1 
     155{{{ 
     156default         192.168.40.1    0.0.0.0         UG    0      0        0 eth1 
     157default         192.168.50.1    0.0.0.0         UG    0      0        0 eth0 
     158}}} 
     159   * この場合、実際にはeth1を通る 
     160{{{ 
     161listening on eth1, link-type EN10MB (Ethernet), capture size 96 bytes 
     16202:03:27.195895 IP 192.168.40.200 > 219.94.129.108: ICMP echo request, id 51265, seq 1, length 64 
     16302:03:27.212349 IP 219.94.129.108 > 192.168.40.200: ICMP echo reply, id 51265, seq 1, length 64 
     164}}} 
     165 * route add default gw 192.168.0.1 
     166{{{ 
     167SIOCADDRT: Network is unreachable 
     168}}} 
     169   * routing table は変化せず