300-101日本語試験無料問題集「Cisco Implementing Cisco IP Routing (300-101日本語版) 認定」

show ip vrfコマンドの出力には、どのタイプの情報が表示されますか?

あなたは小さなIT企業であるROUTE.comのネットワークエンジニアです。 ROUTE.comには、インターネットへの2つの接続があります。 1つはフレームリレーリンク経由、もう1つはEoMPLSリンク経由です。 ITポリシーでは、すべてのアウトバウンドHTTPトラフィックが使用可能な場合、フレームリレーリンクを使用する必要があります。他のすべてのトラフィックはいずれかのリンクを使用できます。静的またはデフォルトのルーティングは許可されていません。
このタスクを実行するには、適切なパス選択機能を選択して構成します。テストワークステーションを使用してHTTPトラフィックを生成し、ソリューションを検証できます。

正解:
See the Explanation below.
Explanation
We need to configure policy based routing to send specific traffic along a path that is different from the best path in the routing table.
Here are the step by Step Solution for this:
1) First create the access list that catches the HTTP traffic:
R1(config)#access-list 101 permit tcp any any eq www
2) Configure the route map that sets the next hop address to be ISP1 and permits the rest of the traffic:
R1(config)#route-map pbr permit 10
R1(config-route-map)#match ip address 101
R1(config-route-map)#set ip next-hop 10.1.100.2
R1(config-route-map)#exit
R1(config)#route-map pbr permit 20
3) Apply the route-map on the interface to the server in the EIGRP Network:
R1(config-route-map)#exit
R1(config)#int fa0/1
R1(config-if)#ip policy route-map pbr
R1(config-if)#exit
R1(config)#exit
First you need to configure access list to HTTP traffic and then configure that access list. After that configure the route map and then apply it on the interface to the server in EIGRP network.
インターフェイスレベルで情報をフィルタリングする機能はどれですか?

*デバイスでIOSコマンドを入力して、ネットワーク操作を確認し、複数選択の質問に答えます。
*このタスクでは、デバイスの構成は必要ありません。
*画面の下部にあるアイコンまたはタブをクリックして、各デバイスのコンソールにアクセスします。
*コンソールまたはイネーブルパスワードは必要ありません。
*複数選択の質問にアクセスするには、トップパネルの左側にある番号付きのボックスをクリックします。
*このタスクには4つの多肢選択問題があります。 [次へ]ボタンを選択する前に、4つの質問すべてに必ず答えてください。
シナリオ:
テストラボでOSPFネットワークのセットアップを評価し、その操作について顧客からの質問に答えるように求められました。顧客がshow running-configコマンドへのアクセスを無効にしました。







調べた出力に基づいて、ルーターR5のエリア1のルーター3からのタイプ4 LSAは何歳ですか?

解説: (GoShiken メンバーにのみ表示されます)
ROUTE.comは、IPv6 0SPFv3を実行している既存のエンタープライズネットワークを持つ小規模なIT企業です。
現在、OSPFはすべてのルーターで構成されています。ただし、R4のループバックアドレス(FEC0:4:4)は、R1のIPv6ルーティングテーブルには表示されません。この障害の原因を特定し、OPSF機能を使用し、現在の領域の割り当てを変更しない必要な修正アクションを実装する必要があります。 R4のループバックアドレス(FEC0:4:4)がRTのIPv6ルーティングテーブルで確認できる場合、障害を修正したことがわかります。
特記事項:最大ポイント数を獲得するには、この問題に関連するすべての不正または不要な構成ステートメントを削除する必要があります。




正解:
See the Explanation below.
Explanation
To troubleshoot the problem, first issue the show running-config on all of 4 routers. Pay more attention to the outputs of routers R2 and R3 The output of the "show running-config" command of R2:

The output of the "show running-config" command of R3:

We knew that all areas in an Open Shortest Path First (OSPF) autonomous system must be physically connected to the backbone area (Area 0). In some cases, where this is not possible, we can use a virtual link to connect to the backbone through a non-backbone area. The area through which you configure the virtual link is known as a transit area. In this case, the area 11 will become the transit area. Therefore, routers R2 and R3 must be configured with the area <area id> virtual-link <neighbor router-id>command. + Configure virtual link on R2 (from the first output above, we learned that the OSPF process ID of R2 is 1):
R2>enable
R2#configure terminal
R2(config)#ipv6 router ospf 1
R2(config-rtr)#area 11 virtual-link 3.3.3.3
Save the configuration:
R2(config-rtr)#end
R2#copy running-config startup-config
(Notice that we have to use neighbor router-id 3.3.3.3, not R2's router-id 2.2.2.2) + Configure virtual link on R3 (from the second output above, we learned that the OSPF process ID of R3 is 1 and we have to disable the wrong configuration of "area 54 virtual-link 4.4.4.4"):
R3>enable
R3#configure terminal
R3(config)#ipv6 router ospf 1
R3(config-rtr)#no area 54 virtual-link 4.4.4.4
R3(config-rtr)#area 11 virtual-link 2.2.2.2
Save the configuration:
R3(config-rtr)#end
R3#copy running-config startup-config
You should check the configuration of R4, too. Make sure to remove the incorrect configuration statements to get the full points.
R4(config)#ipv6 router ospf 1
R4(config-router)#no area 54 virtual-link 3.3.3.3
R4(config-router)#end
After finishing the configuration doesn't forget to ping between R1 and R4 to make sure they work.
Note. If you want to check the routing information, use the show ipv6 route command, not "show ip route".
OSPFが隣接関係を形成している場合、リンク状態データベース内の情報の実際の交換はどの状態で行われますか?

SNMP用語を左から右の正しい定義にドラッグアンドドロップします。
正解:

Explanation
SNMP Manager = system that monitors SNMP hosts
MIB = collection of object in a virtual database
SNMP Agent = Software component that reports SNMP data
Inform = alert message that requires a read receipt
Trap = alert message that is read without generating a receipt
https://www.cisco.com/c/en/us/support/docs/smb/switches/cisco-250-series-smart-switches/smb5753-configure-s
ネットワークエンジニアは、過剰なトラフィックの兆候を示すインターフェイス上のIP SLA操作を確認する必要があります。このアクションを完了するために使用されるコマンドはどれですか。

ルーターがTTLが0のパケットを受信するとどうなりますか?

エンドデバイスに接続されているポートのTCNを削減できるSTP機能はどれですか?