JANOG 53 NETCON 問題解説 Level2-2
JANOG 53 にスタッフ(NETCON委員)として参加させていただきました。
作成した問題について、回答と解説を記載します。
Level2-2 EEM問題
技術要素
・EEM
構成解説
・CSR1000v x2
問題文
以下のように、R1からR2にpingが飛ぶようにして下さい。
R1#ping 192.168.12.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.12.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/1 ms
制約 ・新たなインターフェースを作成してはいけません
・secondary IPアドレスを設定してはいけません
問題解説 R1で ping を実行してみます。
R1#ping 192.168.12.2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.12.2, timeout is 2 seconds: ..... Success rate is 0 percent (0/5) |
R1のインターフェース状態を確認します。
R1#sh ip int b Interface IP-Address OK? Method Status Protocol GigabitEthernet2 10.0.0.15 YES manual up up GigabitEthernet3 192.168.12.1 YES manual administratively down down |
G3が admindown になっているので、no shut します。
R1 int g3 no shut |
R1#sh ip int b Interface IP-Address OK? Method Status Protocol GigabitEthernet2 10.0.0.15 YES manual up up GigabitEthernet3 192.168.12.1 YES manual up up |
up/up になったので、再度 ping を試します。
R1#ping 192.168.12.2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.12.2, timeout is 2 seconds: ..... Success rate is 0 percent (0/5) |
まだ ping が飛ばないので、R2の状態も見てみます。
R2#sh ip int b Interface IP-Address OK? Method Status Protocol GigabitEthernet2 10.0.0.15 YES manual up up GigabitEthernet3 192.168.12.2 YES manual administratively down down |
R2のG3も admindown になっているので、no shut します。
R2 int g3 no shut |
しかし、admindown のままです。
R2#sh ip int b Interface IP-Address OK? Method Status Protocol GigabitEthernet2 10.0.0.15 YES manual up up GigabitEthernet3 192.168.12.2 YES manual administratively down down |
メッセージを見るため、terminal monitor を設定して、再度 no shut してみます。
R2#sh ip int b Interface IP-Address OK? Method Status Protocol GigabitEthernet2 10.0.0.15 YES manual up up GigabitEthernet3 192.168.12.2 YES manual administratively down down |
いったんは up しますが、直後に admindown になっています。
configを見てみます。
R2#sh run event manager applet G3_shut event syslog pattern "Interface GigabitEthernet3, changed state to up" action 1.0 cli command "enable" action 2.0 cli command "conf t" action 3.0 cli command "int g3" action 4.0 cli command "shut" |
インターフェース up のメッセージをトリガーにG3で shut を実行するEEMが入っていますので、
これを無効化します。
R2 no event manager applet G3_shut |
再度 no shut してみます。
R2(config)#int g3 R2(config-if)#no shut R2(config-if)#end
*Dec 15 02:04:09.566: %LINK-3-UPDOWN: Interface GigabitEthernet3, changed state to up *Dec 15 02:04:10.566: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet3, changed state to up
R2#sh ip int b Interface IP-Address OK? Method Status Protocol GigabitEthernet2 10.0.0.15 YES manual up up GigabitEthernet3 192.168.12.2 YES manual up up |
up/up になったので、再度 ping を試します。
R1#ping 192.168.12.2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.12.2, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/1 ms |
正解例
R1 int g3 no shut |
R2 no event manager applet G3_shut
int g3 no shut |
以下は制約事項に違反するので不正解になります。
・R1に secondary アドレスを設定する
R1 nterface GigabitEthernet3 ip address 192.168.12.2 255.255.255.0 secondary ip address 192.168.12.1 255.255.0.0 |
R1に secondary アドレスとして 192.168.12.2 を設定すると、
R2のインターフェース状態に関わらず192.168.12.2 にpingが飛びます。
これは制約に違反しているので、不正解になります。 初期config
R1
host R1 no ip domain loookup
int g3 ip add 192.168.12.1 255.255.0.0 ! no shut shut |
R2
hostname R2 no ip domain lookup int g3 ip add 192.168.12.2 255.255.0.0 ! no shut shut
event manager applet G3_shut event syslog pattern "Interface GigabitEthernet3, changed state to up" action 1.0 cli command "enable" action 2.0 cli command "conf t" action 3.0 cli command "int g3" action 4.0 cli command "shut" |
Comments