Quintum Tenor ネットワークトラブルシューティング

提供: VoIP-Info.jp
移動先: 案内検索

ネットワーク周りのトラブルシューティングツールあれこれ


ping

簡単な導通確認

とりあえず疎通確認する場合は、ping <相手先のIPアドレス>と入力します。
パケットを3回投げた結果が出力されます。

ping 192.168.0.1
IPアドレス192.168.0.1にパケットを投げてみて、返事が返ってくるか確認する。

打ってみる(返事あり)

返答がある場合の結果

Quintum# ping 192.168.0.1


 >>> Pinging 192.168.0.1 [192.168.0.1] with 64 bytes of data 3 times:

Reply from: 192.168.0.1: bytes=64 time=5 ms  TTL=60
Reply from: 192.168.0.1: bytes=64 time=0 ms  TTL=60
Reply from: 192.168.0.1: bytes=64 time=5 ms  TTL=60
Quintum#

打ってみる(返事無し)

返答がない場合の結果

Quintum# ping 192.168.0.5


 >>> Pinging 192.168.0.5 [192.168.0.5] with 64 bytes of data 3 times:

No Reply (Time out) error
No Reply (Time out) error
No Reply (Time out) error
Quintum#

回数を変えてみる

デフォルトではパケットを3回だけ投げますが、パケットを投げる回数を変更する場合は、ping -n <回数> <相手先のIPアドレス>と入力します。
1~9999999999まで指定できますが、128回目以降は結果表示されません。

ping -n 9 192.168.0.1
IPアドレス192.168.0.1に9回パケットを投げてみて、返事が返ってくるか確認する。
ping -n 9999999999 192.168.0.1
IPアドレス192.168.0.1に9,999,999,999回パケットを投げてみて、返事が返ってくるか確認する。

打ってみる

Quintum# ping -n 127 192.168.0.1


 >>> Pinging 192.168.0.1 [192.168.0.1] with 64 bytes of data 127 times:

Reply from: 192.168.0.1: bytes=64 time=5 ms  TTL=60
Reply from: 192.168.0.1: bytes=64 time=0 ms  TTL=60
Reply from: 192.168.0.1: bytes=64 time=0 ms  TTL=60
Reply from: 192.168.0.1: bytes=64 time=0 ms  TTL=60
Reply from: 192.168.0.1: bytes=64 time=0 ms  TTL=60

(略)

Reply from: 192.168.0.1: bytes=64 time=5 ms  TTL=60
Reply from: 192.168.0.1: bytes=64 time=0 ms  TTL=60
Quintum#

サイズを変えてみる

デフォルトではパケットサイズは64バイトですが、パケットサイズを変更する場合は、ping -l <サイズ> <相手先のIPアドレス>と入力します。

ping -l 1024 192.168.0.1
IPアドレス192.168.0.1に1024バイト(1kbyte)のパケットを投げてみて、返事が返ってくるか確認する。

打ってみる

Quintum# ping -l 1024 192.168.0.1


 >>> Pinging 192.168.0.1 [192.168.0.1] with 1024 bytes of data 3 times:

Reply from: 192.168.0.1: bytes=1024 time=5 ms  TTL=60
Reply from: 192.168.0.1: bytes=1024 time=5 ms  TTL=60
Reply from: 192.168.0.1: bytes=1024 time=5 ms  TTL=60
Quintum#

ステータス確認

LANポートの状況を確認する時は、EthernetInterface (またはei)と入力したあとで、
status (またはst)と入力することで、LANポートの状況を確認することができます。

正常動作時

Quintum# ei
Quintum-EthernetInterface-SL1DV1EI1#
Quintum-EthernetInterface-SL1DV1EI1# status

emac (unit number 0):
     Flags: (0x8063) UP BROADCAST MULTICAST ARP RUNNING
     Type: ETHERNET_CSMACD
     Internet address: 10.0.8.2
     Broadcast address: 10.0.8.127
     Netmask 0xff000000 Subnetmask 0xffffff80
     Ethernet address is 00:30:e1:FF:FF:FF
     Metric is 0
     Maximum Transfer Unit size is 1500
     0 octets received
     0 octets sent
     1 packets received
     14 packets sent
     1 unicast packets received
     14 unicast packets sent
     0 non-unicast packets received
     0 non-unicast packets sent
     0 input discards
     0 input unknown protocols
     0 input errors
     0 output errors
     0 collisions; 0 dropped

Current Ethernet Operating Mode
     Link   : Active
     Speed  : 100 Mb/s
     Duplex : Full Duplex

LANのポートが繋がってない場合

何らかの理由でLANケーブルが繋がっていない(リンクしてない)時は
一番下の個所が Link  : Inactiveになっています。

Quintum-EthernetInterface-SL1DV1EI1# status

emac (unit number 0):
     Flags: (0x8063) UP BROADCAST MULTICAST ARP RUNNING
     Type: ETHERNET_CSMACD
     Internet address: 10.0.8.2
     Broadcast address: 10.0.8.127
     Netmask 0xff000000 Subnetmask 0xffffff80
     Ethernet address is 00:30:e1:02:04:cc
     Metric is 0
     Maximum Transfer Unit size is 1500
     0 octets received
     0 octets sent
     1 packets received
     27 packets sent
     1 unicast packets received
     27 unicast packets sent
     0 non-unicast packets received
     0 non-unicast packets sent
     0 input discards
     0 input unknown protocols
     0 input errors
     0 output errors
     0 collisions; 0 dropped

Current Ethernet Operating Mode
     Link   : Inactive