例:MLPPP を使用した単一リンクでの複数の PPP リンクのバンドリング
例:MLPPP によるマルチリンク インターフェイスの設定
[edit interfaces] ml-1/0/0 { unit 1 { fragment-threshold 128; family inet { address 192.168.5.1/32 { destination 192.168.200.200; } } } unit 10 { family inet { address 10.1.1.3/32 { destination 10.1.1.2; } } } } t1-5/1/0 { unit 0 { family mlppp { bundle ml-1/0/0.1; } } } t1-5/1/1 { unit 0 { family mlppp { bundle ml-1/0/0.1; } } } t1-5/1/2 { unit 0 { family mlppp { bundle ml-1/0/0.1; } } }
「」も参照
例:ATM 2 インターフェイス上の MLPPP を使用したマルチリンク インターフェイスの設定
[edit interfaces] at-0/0/0 { atm-options { pic-type atm2; vpi 10; } unit 0 { encapsulation atm-mlppp-llc; ppp-options { chap { access-profile pe-B-ppp-clients; local-name “pe-A-at-0/0/0”; } } keepalive interval 5 up-count 6 down-count 4; vci 10.120; family mlppp { bundle ls-0/3/0.0; } } } at-0/0/1 { atm-options { pic-type atm2; vpi 11; } unit 1 { encapsulation atm-mlppp-llc; ppp-options { chap { access-profile pe-B-ppp-clients; local-name “ pe-A-at-0/0/0”; } } keepalive interval 5 up-count 6 down-count 4; vci 11.120; family mlppp { bundle ls-0/3/0.0; } } } at-1/2/3 { atm-options { pic-type atm2; vpi 12; } unit 2 { encapsulation atm-mlppp-llc; ppp-options { chap { access-profile pe-B-ppp-clients; local-name “ pe-A-at-0/0/0”; } } keepalive interval 5 up-count 6 down-count 4; vci 12.120; family mlppp { bundle ls-0/3/0.0; } } } ... ls-0/3/0 { encapsulation multilink-ppp; interleave-fragments; keepalive; unit 0 { mrru 4500; short-sequence; fragment-threshold 16320; drop-timeout 2000; encapsulation multilink-ppp; interleave-fragments; minimum-links 8; family inet { address 10.10.0.1/32 { destination 10.10.0.2; } } family iso; family inet6 { address 2001:DB8::0:1/32 { destination 2001:DB8::0:2; } } } ... }
「」も参照
例:MLPPP バンドルの設定
この例では、トラフィック帯域幅を増やすために MLPPP バンドルを設定する方法を示します。
要件
開始する前に、2つのMXシリーズルーター(MX240、MX480、またはMX960ルーター)を、シリアルリンクを介して通信する少なくとも2つのシリアルインターフェイスを設定する必要があります。
概要
この例では、MX シリーズ ルーター R0 と R1 でリンク サービス インターフェイス lsq-0/0/0 の論理ユニット レベルで MLPPP バンドル lsq-0/0/0.0 を作成します。次に、2 つのシリアル インターフェイス se-1/0/0 および se-1/0/1 をマルチリンク バンドルの構成要素リンクとして追加します。図 1 では、ルーター R0 と R1 を使用して、企業の支社と主要支社を接続しています。データと音声のトラフィックは、2 つの低速 1 Mbps シリアル リンクで送信します。帯域幅を拡大するには、MLPPPを設定し、2つのシリアルリンクse-1/0/0とse-1/0/1をマルチリンクバンドルlsq-0/0/0.0に参加させます。次に、R0 と R1 に LFI と CoS を設定して、音声パケットをデータ パケットよりも先に送信できるようにします。

構成
手順
CLI クイックコンフィギュレーション
この例を迅速に設定するには、以下のコマンドをコピーしてテキスト ファイルに貼り付け、改行を削除し、ネットワーク設定に合わせて必要な詳細を変更してから、 階層レベルの CLI にコマンドを [edit]
コピー アンド ペーストします。
For device R0 set interfaces lsq-0/0/0 unit 0 family inet address 10.0.0.10/24 set interfaces se-1/0/0 unit 0 family mlppp bundle lsq-0/0/0.0 set interfaces se-1/0/1 unit 0 family mlppp bundle lsq-0/0/0.0 set interfaces se-1/0/0 serial-options clocking-mode dce clock-rate 2.0mhz set interfaces se-1/0/1 serial-options clocking-mode dce clock-rate 2.0mhz
For device R1 set interfaces lsq-0/0/0 unit 0 family inet address 10.0.0.9/24 set interfaces se-1/0/0 unit 0 family mlppp bundle lsq-0/0/0.0 set interfaces se-1/0/1 unit 0 family mlppp bundle lsq-0/0/0.0
手順
次の例では、設定階層内のさまざまなレベルに移動する必要があります。その方法の詳細については、 Junos OS CLIユーザーガイドの 設定モードでのCLIエディターの使用を参照してください。
MLPPPバンドルを設定するには:
両方のルーターでインターフェイスを作成します。
[edit] user@host# edit interfaces lsq-0/0/0 unit 0
ファミリーinetを設定し、デバイスR0でIPアドレスを定義します。
[edit interfaces lsq-0/0/0 unit 0] user@host# set family inet address 10.0.0.10/24
ファミリーinetを設定し、デバイスR1でIPアドレスを定義します。
[edit interfaces lsq-0/0/0 unit 0] user@host# set family inet address 10.0.0.9/24
両方のルーターのマルチリンクバンドルに追加する構成要素リンクの名前を指定します。
[edit interfaces] user@host# edit se-1/0/0 unit 0 user@host# set family mlppp bundle lsq-0/0/0.0 [edit interfaces] user@host# edit se-1/0/1 unit 0 user@host# set family mlppp bundle lsq-0/0/0.0
R0 の両方のインターフェイスでシリアル オプションを同じ値に設定します。
メモ:R0 は DCE デバイスとして設定されています。シリアル オプションは、R1 のインターフェイスには設定されていません。シリアル オプションは、ネットワーク設定に応じて設定できます。
[edit interfaces] user@host# set se-1/0/0 serial-options clocking-mode dce clock-rate 2.0mhz user@host# set se-1/0/1 serial-options clocking-mode dce clock-rate 2.0mhz
結果
設定モードから、R0 と R1 の show interfaces lsq-0/0/0
、 、 show interfaces se-1/0/0
コマンドを show interfaces se-1/0/1
入力して、設定を確認します。出力に意図した設定が表示されない場合は、この例の設定手順を繰り返して修正します。
For device R0 [edit] user@host#show interfaces lsq-0/0/0
family inet { address 10.0.0.10/24; } } [edit] user@host#show interfaces se-1/0/0
clocking-mode dce; clock-rate 2.0mhz; } unit 0 { family mlppp { bundle lsq-0/0/0.0; } } [edit] user@host#show interfaces se-1/0/1
serial-options { clocking-mode dce; clock-rate 2.0mhz; } unit 0 { family mlppp { bundle lsq-0/0/0.0; } }
For device R1 [edit] user@host#show interfaces lsq-0/0/0
family inet { address 10.0.0.9/24; } } [edit] user@host#show interfaces se-1/0/0
unit 0 { family mlppp { bundle lsq-0/0/0.0; } } [edit] user@host#show interfaces se-1/0/1
unit 0 { family mlppp { bundle lsq-0/0/0.0; } }
ルーターの設定が完了したら、設定モードから を入力します commit
。
例:MLPPP によるリンク サービス インターフェイスの設定
[edit interfaces] t1-0/0/0 { encapsulation ppp; unit 0 { family mlppp { bundle ls-0/3/0.0; } } } t1-0/0/1 { encapsulation ppp; unit 0 { family mlppp { bundle ls-0/3/0.0; } } } ls-0/3/0 { unit 0 { encapsulation multilink-ppp; family inet { address 10.16.1.2/32 { destination 10.16.1.1; } } family iso; family inet6 { address 2001:DB8::1:2/126; } } }
「」も参照
例:WANインターフェイス向けインラインMLPPPおよびマルチリンクフレームリレーエンドツーエンド(FRF.15)の設定
時分割マルチプレキシング(TDM)WANインターフェイス用のインラインマルチリンクPPP(MLPPP)、Multlinkフレームリレー(FRF.16)、マルチリンクフレームリレーエンドツーエンド(FRF.15)は、PICや高密度ポートコンセントレータ(DPC)を必要とせずに、パケット転送エンジンを介してバンドリングサービスを提供します。
この例では、T1(WANインターフェイス)などの低速リンクを集約することで、追加の帯域幅、ロードバランシング、冗長性のために、マルチリンクPPP(MLPPP)バンドルとマルチリンクフレームリレーエンドツーエンド(FRF.15)を設定する方法を示しています。
要件
この例では、以下のハードウェアとソフトウェアのコンポーネントを使用しています。
2台のMXシリーズルーター
Junos OS リリース 14.1 以降のリリース
開始する前に、2つのMXシリーズルーター(MX240、MX480、またはMX960)を、T1リンク経由で通信する少なくとも2つのWANインターフェイスを設定します。
概要
従来、バンドリング サービスを使用して複数の低速リンクをバンドルし、より高い帯域幅パイプを作成します。この結合帯域幅は、すべてのリンクからのトラフィックに利用でき、バンドル上のリンクフラグメント化とインターリービング(LFI)をサポートし、優先度の高いパケット送信遅延を減らします。
このサポートには、MLPPP のマルチクラス拡張と同じバンドル上の複数のリンクが含まれています。このサービスを通じて、追加のDPCスロットなしでバンドリングサービスを有効にして、サービスDPCをサポートし、他のMIC用のスロットを解放することができます。
WAN インターフェイスにインライン MLPPP を設定すると、以下のサービスにメリットがあります。
PSTN(公衆交換電話ネットワーク)ベースのアクセス ネットワークを使用したレイヤー 3 VPN および DIA サービス用 CE-PE リンク
MPLS ネットワークに PSTN を使用する場合の PE-P リンク
この例では、帯域幅を増やすために、MLPPPを設定し、T1リンクをマルチリンクバンドルに参加させます。T1 リンクを集約して、2 つの MX シリーズ ルーター R0 と R1 で MLFR FRF.15 バンドルを作成し、インターフェイスを に lsq-
設定します。インターフェイスに論理ユニットを lsq-
設定し、ファミリータイプを と IP アドレスに inet
設定します。次に、インターフェイスのユニットレベルでマルチリンクバンドルのIPアドレスを設定します。マルチリンクバンドルをMLFR FRF.15バンドルとして定義するには、MLFRエンドツーエンドのカプセル化タイプを指定します。マルチリンクバンドルに追加する構成要素リンクの名前を指定し、カプセル化タイプを に frame-relay
設定します。次に、ルーター R0 を DCE デバイスとして、ルーター R1 を DTE デバイスとして定義します。DLCI 値を設定します(範囲は 16~1022 です)。最後に、マルチリンクバンドルを に設定します lsq-
。
トポロジ

構成
CLI クイックコンフィギュレーション
この例を迅速に設定するには、以下のコマンドをコピーしてテキスト ファイルに貼り付け、改行を削除し、ネットワーク設定に合わせて必要な詳細を変更してから、 階層レベルの CLI にコマンドを [edit]
コピー アンド ペーストします。
デバイス R0
set chassis fpc 1 pic 0 multi-link-layer-2-inline set interfaces lsq-1/0/0 unit 0 encapsulation multilink-ppp set interfaces lsq-1/0/0 unit 0 family inet address 192.0.2.1/24 set interfaces lsq-1/0/0 unit 1 encapsulation multilink-frame-relay-end-to-end set interfaces lsq-1/0/0 unit 1 family inet address 198.51.100.1/24 set interfaces t1-1/0/0:1 unit 0 family mlppp bundle lsq-1/0/0.0 set interfaces t1-1/0/0:2 unit 0 family mlppp bundle lsq-1/0/0.0 set interfaces t1-1/0/0:3 dce set interfaces t1-1/0/0:4 dce set interfaces t1-1/0/0:3 encapsulation frame-relay set interfaces t1-1/0/0:4 encapsulation frame-relay set interfaces t1-1/0/0:3 unit 0 dlci 1 family mlfr-end-to-end bundle lsq-1/0/0.1 set interfaces t1-1/0/0:4 unit 0 dlci 2 family mlfr-end-to-end bundle lsq-1/0/0.1
デバイス R1
set chassis fpc 2 pic 0 multi-link-layer-2-inline set interfaces lsq-2/0/0 unit 0 encapsulation multilink-ppp set interfaces lsq-2/0/0 unit 0 family inet address 192.0.2.2/24 set interfaces lsq-2/0/0 unit 1 encapsulation multilink-frame-relay-end-to-end set interfaces lsq-2/0/0 unit 1 family inet address 198.51.100.2/24 set interfaces t1-2/0/0:1 unit 0 family mlppp bundle lsq-2/0/0.0 set interfaces t1-2/0/0:2 unit 0 family mlppp bundle lsq-2/0/0.0 set interfaces t1-2/0/0:3 encapsulation frame-relay set interfaces t1-2/0/0:4 encapsulation frame-relay set interfaces t1-2/0/0:3 unit 0 dlci 1 family mlfr-end-to-end bundle lsq-2/0/0.1 set interfaces t1-2/0/0:4 unit 0 dlci 2 family mlfr-end-to-end bundle lsq-2/0/0.1
ルーター R0 を設定するには
手順
次の例では、設定階層内のさまざまなレベルに移動する必要があります。CLIのナビゲーションについては、 Junos OS CLIユーザーガイドの設定モードでのCLIエディターの使用を参照してください。
WANインターフェイス向けインラインMLPPPおよびマルチリンクフレームリレーエンドツーエンド(FRF.15)を設定するには:
インライン レイヤー 2 バンドリング サービスを有効にします。
[edit] user@R0# set chassis fpc 1 pic 0 multi-link-layer-2-inline
インターフェイスを作成し、マルチリンクバンドルで論理ユニットを指定し、ファミリータイプを設定します。
[edit] user@R0# set interfaces lsq-1/0/0 unit 0 family inet address 192.0.2.1/24
カプセル化タイプを MLPPP として指定します。
[edit] user@R0# set interfaces lsq-1/0/0 unit 0 encapsulation multilink-ppp
インターフェイスを作成し、マルチリンクバンドルで別の論理ユニットを指定し、ファミリータイプを設定します。
[edit] user@R0# set interfaces lsq-1/0/0 unit 1 family inet address 198.51.100.1/24
別のユニットを指定し、マルチリンクバンドルをMLFR FRF.15バンドルとして定義します。
[edit] user@R0# set interfaces lsq-1/0/0 unit 1 encapsulation multilink-frame-relay-end-to-end
マルチリンクバンドルに追加する構成要素リンクの名前を指定します。
[edit] user@R0# set interfaces t1-1/0/0:1 unit 0 family mlppp bundle lsq-1/0/0.0 user@R0# set interfaces t1-1/0/0:2 unit 0 family mlppp bundle lsq-1/0/0.0
ルーターを DCE デバイスとして定義します。
[edit] user@R0# set interfaces t1-1/0/0:3 dce user@R0# set interfaces t1-1/0/0:4 dce
DLCI、およびインターフェイスが追加されるマルチリンクバンドルを指定します。
[edit ] user@R0# set interfaces t1-1/0/0:3 unit 0 dlci 1 family mlfr-end-to-end bundle lsq-1/0/0.1 user@R0# set interfaces t1-1/0/0:4 unit 0 dlci 2 family mlfr-end-to-end bundle lsq-1/0/0.1
マルチリンクバンドルに追加する構成要素リンクの名前を指定します。
[edit] user@R0# set interfaces t1-1/0/0:3 encapsulation frame-relay user@R0# set interfaces t1-1/0/0:4 encapsulation frame-relay
ルーター R1 を設定するには
手順
WANインターフェイス向けインラインMLPPPおよびマルチリンクフレームリレーエンドツーエンド(FRF.15)を設定するには:
インライン レイヤー 2 バンドリング サービスを有効にします。
[edit] user@R1# set chassis fpc 2pic 0 multi-link-layer-2-inline
インターフェイスを作成し、マルチリンクバンドルで論理ユニットを指定し、ファミリータイプを設定します。
[edit] user@R1# set interfaces lsq-2/0/0 unit 0 family inet address 192.0.2.2/24
カプセル化タイプを MLPPP として指定します。
[edit] user@R1# set interfaces lsq-2/0/0 unit 0 encapsulation multilink-ppp
インターフェイスを作成し、マルチリンクバンドルで別の論理ユニットを指定し、ファミリータイプを設定します。
[edit] user@R1# set interfaces lsq-2/0/0 unit 1 family inet address 198.51.100.2/24
別のユニットを指定し、マルチリンクバンドルをMLFR FRF.15バンドルとして定義します。
[edit] user@R1# set interfaces lsq-2/0/0 unit 1 encapsulation multilink-frame-relay-end-to-end
マルチリンクバンドルに追加する構成要素リンクの名前を指定します。
[edit] user@R1# set interfaces t1-2/0/0:1 unit 0 family mlppp bundle lsq-2/0/0.0 user@R1# set interfaces t1-2/0/0:2 unit 0 family mlppp bundle lsq-2/0/0.0
DLCI、およびインターフェイスが追加されるマルチリンクバンドルを指定します。
[edit ] user@R1# set interfaces t1-2/0/0:3 unit 0 dlci 1 family mlfr-end-to-end bundle lsq-2/0/0.1 user@R1# set interfaces t1-2/0/0:4 unit 0 dlci 2 family mlfr-end-to-end bundle lsq-2/0/0.1
マルチリンクバンドルに追加する構成要素リンクの名前を指定します。
[edit] user@R1# set interfaces t1-2/0/0:3 encapsulation frame-relay user@R1# set interfaces t1-2/0/0:4 encapsulation frame-relay
結果
ルーターR0では、設定モードから、 、 、 、 show interfaces t1-1/0/0:1
show interfaces t1-1/0/0:2
show interfaces t1-1/0/0:3
、 show interfaces lsq-1/0/0
、および のコマンドをshow chassis
入力して設定をshow interfaces t1-1/0/0:4
確認します。
ルーターR1の場合、設定モードから、 、 、show interfaces lsq-2/0/0
show interfaces t1-2/0/0:2
show interfaces t1-2/0/0:1
show interfaces t1-2/0/0:3
および のコマンドをshow chassis
入力して設定をshow interfaces t1-2/0/0:4
確認します。
出力結果に意図した設定が表示されない場合は、この例の手順を繰り返して設定を修正します。
ルーター R0 の場合:
[edit] user@R0# show chassis fpc 1 { pic 0 { multi-link-layer-2-inline; } }
[edit] user@R0# show interfaces lsq-1/0/0 unit 0 { encapsulation multilink-ppp; family inet { address 192.0.2.1/24; } } unit 1 { encapsulation multilink-frame-relay-end-to-end; family inet { address 198.51.100.1/24; } }
[edit] user@R0# show interfaces t1-1/0/0:1 unit 0 { family mlppp { bundle lsq-1/0/0.0; } }
[edit] user@R0# show interfaces t1-1/0/0:2 unit 0 { family mlppp { bundle lsq-1/0/0.0; } }
[edit] user@R0# show interfaces t1-1/0/0:3 dce; encapsulation frame-relay; unit 0 { dlci 1; family mlfr-end-to-end { bundle lsq-1/0/0.1; } }
[edit] user@R0# show interfaces t1-1/0/0:4 dce; encapsulation frame-relay; unit 0 { dlci 2; family mlfr-end-to-end { bundle lsq-1/0/0.1; } }
ルーターの設定が完了したら、設定モードから を入力します commit
。
ルーター R1 の場合:
[edit] user@R1# show chassis fpc 2{ pic 0 { multi-link-layer-2-inline; } }
[edit] user@R1# show interfaces lsq-2/0/0 unit 0 { encapsulation multilink-ppp; family inet { address 192.0.2.2/24; } } unit 1 { encapsulation multilink-frame-relay-end-to-end; family inet { address 198.51.100.2/24; } }
[edit] user@R1# show interfaces t1-2/0/0:1 unit 0 { family mlppp { bundle lsq-2/0/0.0; } }
[edit] user@R1# show interfaces t1-2/0/0:2 unit 0 { family mlppp { bundle lsq-2/0/0.0; } }
[edit] user@R1# show interfaces t1-2/0/0:3 encapsulation frame-relay; unit 0 { dlci 1; family mlfr-end-to-end { bundle lsq-2/0/0.1; } }
[edit] user@R1# show interfaces t1-2/0/0:4 encapsulation frame-relay; unit 0 { dlci 2; family mlfr-end-to-end { bundle lsq-2/0/0.1; } }
ルーターの設定が完了したら、設定モードから を入力します commit
。
検証
MLPPPバンドルとMLFR FRF.15設定の検証
目的
構成要素リンクがバンドルに正しく追加されていることを確認します。
アクション
運用モードから、 コマンドを show interfaces lsq-1/0/0 extensive
実行します。
サンプル出力
コマンド名
user@R0> show interfaces lsq-1/0/0:0 extensive Physical interface: lsq-1/0/0, Enabled, Physical link is Up Interface index: 292, SNMP ifIndex: 1065, Generation: 4986 Link-level type: LinkService, MTU: 1504 Device flags : Present Running Interface flags: Point-To-Point SNMP-Traps Internal: 0x4000 Last flapped : Never Statistics last cleared: Never Traffic statistics: Input bytes : 0 0 bps Output bytes : 0 0 bps Input packets: 0 0 pps Output packets: 0 0 pps IPv6 transit statistics: Input bytes : 0 Output bytes : 0 Input packets: 0 Output packets: 0 Frame exceptions: Oversized frames 0 Errored input frames 0 Input on disabled link/bundle 0 Output for disabled link/bundle 0 Queuing drops 0 Buffering exceptions: Packet data buffer overflow 0 Fragment data buffer overflow 0 Assembly exceptions: Fragment timeout 0 Missing sequence number 0 Out-of-order sequence number 0 Out-of-range sequence number 0 Hardware errors (sticky): Data memory error 0 Control memory error 0 Egress queues: 8 supported, 4 in use Queue counters: Queued packets Transmitted packets Dropped packets 0 0 0 0 1 0 0 0 2 0 0 0 3 0 0 0 Queue number: Mapped forwarding classes 0 best-effort 1 expedited-forwarding 2 assured-forwarding 3 network-control Logical interface lsq-1/0/0.0 (Index 327) (SNMP ifIndex 113518) (Generation 6213) Flags: Hardware-Down Up Point-To-Point SNMP-Traps 0x4000 Encapsulation: Multilink-PPP Last flapped: 2014-04-24 04:37:39 PDT (00:08:50 ago) Bandwidth: 0 Bundle links information: Active bundle links 0 Removed bundle links 2 Disabled bundle links 0 Bundle options: MRRU 1504 Remote MRRU N/A Drop timer period 32767 Inner PPP Protocol field compression enabled Sequence number format long (24 bits) Fragmentation threshold 0 Links needed to sustain bundle 1 Multilink classes 0 Link layer overhead 4.0 % Multilink class 0 status: Received sequence number 0x0 Transmit sequence number 0xffffffff Packet drops 0 (0 bytes) Fragment drops 0 (0 bytes) MRRU exceeded 0 Fragment timeout 0 Missing sequence number 0 Out-of-order sequence number 0 Out-of-range sequence number 0 Packet data buffer overflow 0 Fragment data buffer overflow 0 Multilink class drop timeout 0 (ms) Statistics Frames fps Bytes bps Bundle: Multilink: Input : 0 0 0 0 Output: 0 0 0 0 Network: Input : 0 0 0 0 Output: 0 0 0 0 IPV6 Transit Statistics Packets Bytes Network: Input : 0 0 Output: 0 0 Link: t1-1/0/0:1.0 Up time: 00:00:00 Input : 0 0 0 0 Output: 0 0 0 0 t1-1/0/0:2.0 Up time: 00:00:00 Input : 0 0 0 0 Output: 0 0 0 0 Multilink detail statistics: Bundle: Fragments: Input : 0 0 0 0 Output: 0 0 0 0 Non-fragments: Input : 0 0 0 0 Output: 0 0 0 0 LFI: Input : 0 0 0 0 Output: 0 0 0 0 NCP state: inet: Not-configured, inet6: Not-configured, iso: Not-configured, mpls: Not-configured Protocol inet, MTU: 1500, Generation: 6263, Route table: 0 Flags: Sendbcast-pkt-to-re, Protocol-Down Addresses, Flags: Dest-route-down Is-Preferred Is-Primary Destination: 192.0.2/24, Local: 192.0.2.1, Broadcast: Unspecified, Generation: 4211 Logical interface lsq-1/0/0.1 (Index 328) (SNMP ifIndex 113519) (Generation 6214) Flags: Up Point-To-Point SNMP-Traps 0x4000 Encapsulation: Multilink-FR Last flapped: 2014-04-24 04:46:00 PDT (00:00:29 ago) Bandwidth: 3072kbps Bundle links information: Active bundle links 2 Removed bundle links 0 Disabled bundle links 0 Bundle options: MRRU 1504 Drop timer period 32767 Inner PPP Protocol field compression enabled Sequence number format short (12 bits) Fragmentation threshold 0 Links needed to sustain bundle 1 Multilink classes 0 Link layer overhead 4.0 % Multilink class 0 status: Received sequence number 0x0 Transmit sequence number 0xffffffff Packet drops 0 (0 bytes) Fragment drops 0 (0 bytes) MRRU exceeded 0 Fragment timeout 0 Missing sequence number 0 Out-of-order sequence number 0 Out-of-range sequence number 0 Packet data buffer overflow 0 Fragment data buffer overflow 0 Multilink class drop timeout 0 (ms) Statistics Frames fps Bytes bps Bundle: Multilink: Input : 0 0 0 0 Output: 0 0 0 0 Network: Input : 0 0 0 0 Output: 0 0 0 0 Link: t1-1/0/0:3.0 Up time: 00:00:29 Input : 0 0 0 0 Output: 0 0 0 0 t1-1/0/0:4.0 Up time: 00:00:29 Input : 0 0 0 0 Output: 0 0 0 0 Multilink detail statistics: Bundle: Fragments: Input : 0 0 0 0 Output: 0 0 0 0 Non-fragments: Input : 0 0 0 0 Output: 0 0 0 0 LFI: Input : 0 0 0 0 Output: 0 0 0 0 Protocol inet, MTU: 1500, Generation: 6264, Route table: 0 Flags: Sendbcast-pkt-to-re Addresses, Flags: Is-Preferred Is-Primary Destination: 198.51.100/24, Local: 198.51.100.1, Broadcast: Unspecified, Generation: 4213
動作モードから、 コマンドを show interfaces lsq-2/0/0 extensive
入力します。
user@R1> show interfaces lsq-2/0/0 extensive Physical interface: lsq-2/0/0, Enabled, Physical link is Up Interface index: 262, SNMP ifIndex: 44421, Generation: 270 Encapsulation: Multilink-PPPLink-level type: LinkService, MTU: 1504 Device flags : Present Running Interface flags: Point-To-Point SNMP-Traps Internal: 0x4000 Last flapped : Never Statistics last cleared: Never Traffic statistics: Input bytes : 0 0 bps Output bytes : 0 0 bps Input packets: 0 0 pps Output packets: 0 0 pps IPv6 transit statistics: Input bytes : 0 Output bytes : 0 Input packets: 0 Output packets: 0 Frame exceptions: Oversized frames 0 Errored input frames 0 Input on disabled link/bundle 0 Output for disabled link/bundle 0 Queuing drops 0 Buffering exceptions: Packet data buffer overflow 0 Fragment data buffer overflow 0 Assembly exceptions: Fragment timeout 0 Missing sequence number 0 Out-of-order sequence number 0 Out-of-range sequence number 0 Hardware errors (sticky): Data memory error 0 Control memory error 0 Egress queues: 8 supported, 4 in use Queue counters: Queued packets Transmitted packets Dropped packets 0 0 0 0 1 0 0 0 2 0 0 0 3 0 0 0 Queue number: Mapped forwarding classes 0 best-effort 1 expedited-forwarding 2 assured-forwarding 3 network-control Logical interface lsq-2/0/0.0 (Index 354) (SNMP ifIndex 44422) (Generation 167) Flags: Up Point-To-Point SNMP-Traps 0x4000 Encapsulation: Multilink-PPPEncapsulation: Multilink-PPP Last flapped: 2014-04-24 04:50:19 PDT (00:00:51 ago) Bandwidth: 3072kbps Bundle links information: Active bundle links 2 Removed bundle links 0 Disabled bundle links 0 Bundle options: MRRU 1504 Remote MRRU 1504 Drop timer period 32767 Inner PPP Protocol field compression enabled Sequence number format long (24 bits) Fragmentation threshold 0 Links needed to sustain bundle 1 Multilink classes 0 Link layer overhead 4.0 % Multilink class 0 status: Received sequence number 0x0 Transmit sequence number 0xffffffff Packet drops 0 (0 bytes) Fragment drops 0 (0 bytes) MRRU exceeded 0 Fragment timeout 0 Missing sequence number 0 Out-of-order sequence number 0 Out-of-range sequence number 0 Packet data buffer overflow 0 Fragment data buffer overflow 0 Multilink class drop timeout 0 (ms) Statistics Frames fps Bytes bps Bundle: Multilink: Input : 0 0 0 0 Output: 0 0 0 0 Network: Input : 0 0 0 0 Output: 0 0 0 0 IPV6 Transit Statistics Packets Bytes Network: Input : 0 0 Output: 0 0 Link: t1-2/0/0:1.0 Up time: 00:00:51 Input : 0 0 0 0 Output: 0 0 0 0 t1-2/0/0:2.0 Up time: 00:00:48 Input : 0 0 0 0 Output: 0 0 0 0 Multilink detail statistics: Bundle: Fragments: Input : 0 0 0 0 Output: 0 0 0 0 Non-fragments: Input : 0 0 0 0 Output: 0 0 0 0 LFI: Input : 0 0 0 0 Output: 0 0 0 0 NCP state: inet: Opened, inet6: Not-configured, iso: Not-configured, mpls: Not-configured Protocol inet, MTU: 1500, Generation: 199, Route table: 0 Flags: Sendbcast-pkt-to-re Addresses, Flags: Is-Preferred Is-Primary Destination: 192.0.2/24, Local: 192.0.2.2, Broadcast: Unspecified, Generation: 153 Logical interface lsq-4/0/0.1 (Index 355) (SNMP ifIndex 44423) (Generation 168) Flags: Up Point-To-Point SNMP-Traps 0x4000 Encapsulation: Multilink-FR Last flapped: 2014-04-24 04:50:19 PDT (00:00:51 ago) Bandwidth: 3072kbps Bundle links information: Active bundle links 2 Removed bundle links 0 Disabled bundle links 0 Bundle options: MRRU 1504 Drop timer period 32767 Inner PPP Protocol field compression enabled Sequence number format short (12 bits) Fragmentation threshold 0 Links needed to sustain bundle 1 Multilink classes 0 Link layer overhead 4.0 % Multilink class 0 status: Received sequence number 0x0 Transmit sequence number 0xffffffff Packet drops 0 (0 bytes) Fragment drops 0 (0 bytes) MRRU exceeded 0 Fragment timeout 0 Missing sequence number 0 Out-of-order sequence number 0 Out-of-range sequence number 0 Packet data buffer overflow 0 Fragment data buffer overflow 0 Multilink class drop timeout 0 (ms) Statistics Frames fps Bytes bps Bundle: Multilink: Input : 0 0 0 0 Output: 0 0 0 0 Network: Input : 0 0 0 0 Output: 0 0 0 0 Link: t1-2/0/0:3.0 Up time: 00:00:51 Input : 0 0 0 0 Output: 0 0 0 0 t1-2/0/0:4.0 Up time: 00:00:51 Input : 0 0 0 0 Output: 0 0 0 0 Multilink detail statistics: Bundle: Fragments: Input : 0 0 0 0 Output: 0 0 0 0 Non-fragments: Input : 0 0 0 0 Output: 0 0 0 0 LFI: Input : 0 0 0 0 Output: 0 0 0 0 Protocol inet, MTU: 1500, Generation: 200, Route table: 0 Flags: Sendbcast-pkt-to-re Addresses, Flags: Is-Preferred Is-Primary Destination: 198.51.100/24, Local: 198.51.100.2, Broadcast: Unspecified, Generation: 155
動作モードから、 コマンドを show interfaces lsq-1/0/0 statistics
入力します。
user@R0> show interfaces lsq-1/0/0 statistics Physical interface: lsq-1/0/0, Enabled, Physical link is Up Interface index: 292, SNMP ifIndex: 1065 Link-level type: LinkService, MTU: 1504 Device flags : Present Running Interface flags: Point-To-Point SNMP-Traps Internal: 0x4000 Last flapped : Never Statistics last cleared: Never Input rate : 0 bps (0 pps) Output rate : 0 bps (0 pps) Logical interface lsq-1/0/0.0 (Index 327) (SNMP ifIndex 113518) Flags: Up Point-To-Point SNMP-Traps 0x4000 Encapsulation: Multilink-PPP Last flapped: 2014-04-24 04:50:19 PDT (00:01:59 ago) Bandwidth: 3072kbps Bundle links information: Active bundle links 2 Removed bundle links 0 Disabled bundle links 0 Statistics Frames fps Bytes bps Bundle: Multilink: Input : 0 0 0 0 Output: 0 0 0 0 Network: Input : 0 0 0 0 Output: 0 0 0 0 IPV6 Transit Statistics Packets Bytes Network: Input : 0 0 Output: 0 0 Link: t1-1/0/0:1.0 Up time: 00:01:59 Input : 0 0 0 0 Output: 0 0 0 0 t1-1/0/0:2.0 Up time: 00:01:56 Input : 0 0 0 0 Output: 0 0 0 0 NCP state: inet: Opened, inet6: Not-configured, iso: Not-configured, mpls: Not-configured Protocol inet, MTU: 1500 Flags: Sendbcast-pkt-to-re Addresses, Flags: Is-Preferred Is-Primary Destination: 192.0.2/24, Local: 192.0.2.1 Logical interface lsq-1/0/0.1 (Index 328) (SNMP ifIndex 113519) Flags: Up Point-To-Point SNMP-Traps 0x4000 Encapsulation: Multilink-FR Last flapped: 2014-04-24 04:50:29 PDT (00:01:49 ago) Bandwidth: 3072kbps Bundle links information: Active bundle links 2 Removed bundle links 0 Disabled bundle links 0 Statistics Frames fps Bytes bps Bundle: Multilink: Input : 0 0 0 0 Output: 0 0 0 0 Network: Input : 0 0 0 0 Output: 0 0 0 0 Link: t1-1/0/0:3.0 Up time: 00:01:49 Input : 0 0 0 0 Output: 0 0 0 0 t1-1/0/0:4.0 Up time: 00:01:49 Input : 0 0 0 0 Output: 0 0 0 0 Protocol inet, MTU: 1500 Flags: Sendbcast-pkt-to-re Addresses, Flags: Is-Preferred Is-Primary Destination: 198.51.100/24, Local: 198.51.100.1
動作モードから、 コマンドを show interfaces lsq-2/0/0 statistics
入力します。
user@R1> show interfaces lsq-2/0/0 statistics Physical interface: lsq-2/0/0, Enabled, Physical link is Up Interface index: 262, SNMP ifIndex: 44421 Link-level type: LinkService, MTU: 1504 Device flags : Present Running Interface flags: Point-To-Point SNMP-Traps Internal: 0x4000 Last flapped : Never Statistics last cleared: Never Input rate : 0 bps (0 pps) Output rate : 0 bps (0 pps) Logical interface lsq-2/0/0.0 (Index 354) (SNMP ifIndex 44422) Flags: Up Point-To-Point SNMP-Traps 0x4000 Encapsulation: Multilink-PPP Last flapped: 2014-04-24 04:50:19 PDT (00:04:33 ago) Bandwidth: 3072kbps Bundle links information: Active bundle links 2 Removed bundle links 0 Disabled bundle links 0 Statistics Frames fps Bytes bps Bundle: Multilink: Input : 0 0 0 0 Output: 0 0 0 0 Network: Input : 0 0 0 0 Output: 0 0 0 0 IPV6 Transit Statistics Packets Bytes Network: Input : 0 0 Output: 0 0 Link: t1-2/0/0:1.0 Up time: 00:04:33 Input : 0 0 0 0 Output: 0 0 0 0 t1-2/0/0:2.0 Up time: 00:04:30 Input : 0 0 0 0 Output: 0 0 0 0 NCP state: inet: Opened, inet6: Not-configured, iso: Not-configured, mpls: Not-configured Protocol inet, MTU: 1500 Flags: Sendbcast-pkt-to-re Addresses, Flags: Is-Preferred Is-Primary Destination: 192.0.2/24, Local: 192.0.2.2 Logical interface lsq-2/0/0.1 (Index 355) (SNMP ifIndex 44423) Flags: Up Point-To-Point SNMP-Traps 0x4000 Encapsulation: Multilink-FR Last flapped: 2014-04-24 04:50:19 PDT (00:04:33 ago) Bandwidth: 3072kbps Bundle links information: Active bundle links 2 Removed bundle links 0 Disabled bundle links 0 Statistics Frames fps Bytes bps Bundle: Multilink: Input : 0 0 0 0 Output: 0 0 0 0 Network: Input : 0 0 0 0 Output: 0 0 0 0 Link: t1-2/0/0:3.0 Up time: 00:04:33 Input : 0 0 0 0 Output: 0 0 0 0 t1-2/0/0:4.0 Up time: 00:04:33 Input : 0 0 0 0 Output: 0 0 0 0 Protocol inet, MTU: 1500 Flags: Sendbcast-pkt-to-re Addresses, Flags: Is-Preferred Is-Primary Destination: 198.51.100/24, Local: 198.51.100.2