Skip to content

IOS XRv 9000 の初期設定例

CML 上の IOS XRv 9000 で「管理アドレス」「TELNET や SSH の有効化」等の初期設定例をメモしておきます。 CML 2.5.0 上の IOS XRv 9000 7.7.1 で検証しました。

IOS XRv 9000 の初期コンフィグ

CML 上で IOS XRv 9000 をデプロイした直後の初期コンフィグは以下の通りです。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
hostname inserthostname-here
username cisco
group root-lr
group cisco-support
password cisco
!
username admin
group root-lr
group cisco-support
password cisco
!
username lab
group root-lr
group cisco-support
password cisco
!
end

TELNET & SSH 有効化

TELNET 及び SSH を有効化する設定例は以下の通りです。 NTP も設定しています。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
hostname ios-xrv9k
!
clock timezone JST Japan
!
service timestamps log datetime localtime msec
service timestamps debug datetime localtime msec
!
domain lookup disable
!
username admin
group root-lr
group cisco-support
! password
secret 10 $6$41Rd0/ELeEZ820/.$Eko6E3zhNvlDpPgUFwLAAj9lKd5MkJ.9p/sA5VtYGJDtlhdgc.bz7br8SENm7tK6O7P77A/CfW7maxGrZe5FQ/
!
vrf Mgmt-intf
!
line default
 exec-timeout 300 0
 length 0
!
ntp
 server vrf Mgmt-intf 216.239.35.8 iburst
 server vrf Mgmt-intf 216.239.35.12 prefer iburst
 source MgmtEth0/RP0/CPU0/0
!
interface MgmtEth0/RP0/CPU0/0
 vrf Mgmt-intf
 ipv4 address 10.0.0.1 255.255.255.0
 no shutdown
!
router static
 vrf Mgmt-intf
  address-family ipv4 unicast
   0.0.0.0/0 10.0.0.254
  !
 !
!
telnet vrf Mgmt-intf ipv4 server max-servers 5
ssh server v2
ssh server vrf Mgmt-intf
!
end