このページの翻訳:
- 日本語 (ja)
- English (en)
最近の更新
- 02 Apache2で自己認証ssl [中間証明書の整合性確認]
Tag Cloud
このページへのアクセス
今日: 1 / 昨日: 2
総計: 817
- Dokuwiki.fl8.jp(129)
- counter(3)
- code2(3)
- 04 変数の型(3)
- 01 lvmをマウント(3)
最近の更新
このページへのアクセス
今日: 1 / 昨日: 2
総計: 817
下記のようにパケットサイズ(MTU)が1500bytesまでしか、
通信できない場合はSwitch側でジャンボフレーム(Jumbo Frame)設定がされていない可能性があります。
※ジャンボフレームの設定をしてあると、8972までPingで通信できる。
Packetサイズが1500bytesまではPingが通る
# ping 192.168.0.2 -s 1472 -I eth1 PING 192.168.0.2 (192.168.0.2) from 192.168.0.254 eth4: 1472(1500) bytes of data. 1480 bytes from 192.168.0.2: icmp_seq=1 ttl=64 time=0.497 ms 1480 bytes from 192.168.0.2: icmp_seq=2 ttl=64 time=0.384 ms 1480 bytes from 192.168.0.2: icmp_seq=3 ttl=64 time=0.319 ms 1480 bytes from 192.168.0.2: icmp_seq=4 ttl=64 time=0.336 ms
Packetサイズ1500以上になると、Pingが通らない
# ping 192.168.0.2 -s 1500 -I eth1 PING 192.168.0.2 (192.168.0.2) from 192.168.0.254 eth4: 1500(1528) bytes of data. --- 192.168.0.2 ping statistics --- 25 packets transmitted, 0 received, 100% packet loss, time 24009ms
MTU確認方法
# ifconfig eth0 Link encap:Ethernet HWaddr xx:xx:xx:xx:xx:xx inet addr:192.168.0.10 Bcast:192.168.0.255 Mask:255.255.255.0 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 ←MTUは1500bytes (省略)
http://www.atmarkit.co.jp/fwin2k/pchard/05jumbo/05jumbo_01.html