Telnetのトラブル その2【CCNP/CCIEレベル】
ネットワーク構成
次の図のようなネットワークを構成しています。
設定概要
R1、R2の設定概要は以下の通りです。
R1
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ no aaa new-model ! interface Loopback0 ip address 192.168.0.1 255.255.255.255 ! interface Ethernet0/0 ip address 192.168.1.1 255.255.255.0 ! interface Ethernet0/1 ip address 192.168.12.1 255.255.255.0 ! router ospf 1 router-id 1.1.1.1 log-adjacency-changes network 192.168.1.1 0.0.0.0 area 0 network 192.168.0.0 0.0.255.255 area 0 ! access-list 1 deny any ! line vty 0 4 access-class 1 in login transport input all ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
R2
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ interface Loopback0 ip address 192.168.0.2 255.255.255.255 ! interface Ethernet0/0 ip address 192.168.12.2 255.255.255.0 ! interface Ethernet0/1 ip address 192.168.2.2 255.255.255.0 ! router ospf 1 router-id 2.2.2.2 log-adjacency-changes network 192.168.1.2 0.0.0.0 area 0 network 192.168.0.0 0.0.255.255 area 0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
トラブルの症状
R2からR1へTelnetしようとするとできません。
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ R2#telnet 192.168.0.1 Trying 192.168.0.1 ... % Connection refused by remote host ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
R2からR1へTelnetすると、R1側からTelnetの接続を拒否されてしまっています。
この原因を調べるために、R1のVTYラインの設定を確認しました。また、VTYラ
インに適用されているアクセスリストの内容も確認しました。
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ R1#show running-config | section line vty line vty 0 4 access-class 1 in login transport input all R1#show access-lists Standard IP access list 1 10 deny any (2 matches) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
問題
- R1にTelnetできない理由は何ですか。
- R1にTelnetできるようにするためには、どのように設定を修正すればよいで
すか。