BSCIの準備 いろいろ

eigrpで外部ASからredistributeされた経路のメトリックは170となる。


R2#sho ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

     2.0.0.0/32 is subnetted, 1 subnets
C       2.2.2.2 is directly connected, Loopback0
     100.0.0.0/24 is subnetted, 2 subnets
C       100.0.0.0 is directly connected, Ethernet0/0
C       100.0.10.0 is directly connected, Ethernet1/0
D EX 222.0.0.0/24 [170/307200] via 100.0.10.200, 00:00:31, Ethernet1/0
D    192.168.200.0/24 [90/307200] via 100.0.10.200, 02:38:20, Ethernet1/0
D    192.168.100.0/24 [90/307200] via 100.0.0.100, 02:36:20, Ethernet0/0
R2#

BSCIの勉強を初めて2ヶ月半くらいたった。そうとうストレスが溜まっている。

腰が痛いし、酒を飲み始めたし・・・。

いままでciscoの勉強でこんなにみっちりやったことがあっただろうか?というくらい、やった。

今受けたら絶対落ちる。あと三日ある。ここが勝負である。

BGPがヤバい。 MEDとかlocal preferenceとかweightとか・・・。わかってる人がいるのか?

経路の優先度に重みをつけて任意に選択させよう、というのはわかるが同じような重みがいくつもあって混同する。

Weightはcisco独自
local preferenceはwell-known discretionary(任意)デフォルトは100
MEDはoptional nontransitiveで、これだけ小さいものが優先される。

interface configモードで ip route コマンドが入力できる。
入力するとconfigモードになる。 ほかのコマンドもいけるかな?

eigrpで、eigrp stub summary とあるけど、summaryがなくても集約を設定すれば送信される。 どういうときに必要なのか?

これを見てください。hello-intervalの変更コマンド。
eigrpとospf、両方設定してみました。 やらしい・・・。

interface FastEthernet0/0
 ip address 172.16.32.1 255.255.240.0
 ip hello-interval eigrp 100 100
 ip router isis
 ip ospf hello-interval 100
 duplex half

md5認証。これもやらしい。mode eigrp って・・・。やらしい・・・。



interface FastEthernet0/0
 ip address 172.16.32.1 255.255.240.0
 ip hello-interval eigrp 100 100
 ip authentication mode eigrp 100 md5
 ip authentication key-chain eigrp 100 MYCHAIN
 ip router isis
 ip ospf authentication message-digest
 ip ospf message-digest-key 1 md5 PASSWORD
 ip ospf hello-interval 100
 duplex half
 speed auto

key chainを使うのはeigrpだけなのか。ospfはinterfaceの設定だけで完結するのに。
これもやらしい・・・。

どうして、

ip eigrp 100 hello-interval 100 
ip eigrp 100 authentication message-digest
ip eigrp 100 message-digest-key 1 md5 PASSWORD

ってしなかたんだろうね?普通、こうするよね?