cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
3582
Views
0
Helpful
2
Replies

how to configure ipsla monitor in IOS XR Software, Version 4.2.3?

gneatmach
Level 1
Level 1

how to configure ipsla monitor in IOS XR Software, Version 4.2.3?

I don't see ipsla commands in IOS XR Software, Version 4.2.3. Any other ways to detect ethernet WAN links to trigger HSRP on ASR 9000 series routers? I don't even see track commands.

RP/0/RSP0/CPU0:grx-rtr2(config)#ip

iphc  ipv4  ipv6 

RP/0/RSP0/CPU0:grx-rtr2(config)#t

tacacs-server  tacacs  taskgroup  tcam

tcp            telnet  template   tftp

/Tej


1 Accepted Solution

Accepted Solutions

Bilal Nawaz
VIP Alumni
VIP Alumni

1. configure
2. track track-name
3. type line-protocol state
4. interface type interface-path-id
5. exit
6. (Optional) delay {up seconds|down seconds}
7. Use one of the following commands:
end
commit

Please see if the commands in this link are available to you on cli

http://www.cisco.com/en/US/docs/routers/asr9000/software/asr9k_r4.2/system_management/configuration/guide/b_sysman_cg42asr9k_chapter_01110.html

And then to use the track command in HSRP

hsrp [group-number] track type interface-path-id [priority-decrement]

I'm not sure if these are required.

As demonstrated here:

RP/0/0/CPU0:router(config)# router hsrp
RP/0/0/CPU0:router(config-hsrp)# interface TenGigE 0/2/0/1
RP/0/0/CPU0:router(config-hsrp-if)# hsrp track TenGigE 0/1/0/1
RP/0/0/CPU0:router(config-hsrp-if)# hsrp track TenGigE 0/3/0/1
RP/0/0/CPU0:router(config-hsrp-if)# hsrp preempt
RP/0/0/CPU0:router(config-hsrp-if)# hsrp ipv4 192.92.72.46

http://www.cisco.com/en/US/docs/routers/asr9000/software/asr9k_r3.9/addr_serv/command/reference/irasr9khsrp.html#wp999728

Hope this helps

Sent from Cisco Technical Support iPhone App

Please rate useful posts & remember to mark any solved questions as answered. Thank you.

View solution in original post

2 Replies 2

Bilal Nawaz
VIP Alumni
VIP Alumni

1. configure
2. track track-name
3. type line-protocol state
4. interface type interface-path-id
5. exit
6. (Optional) delay {up seconds|down seconds}
7. Use one of the following commands:
end
commit

Please see if the commands in this link are available to you on cli

http://www.cisco.com/en/US/docs/routers/asr9000/software/asr9k_r4.2/system_management/configuration/guide/b_sysman_cg42asr9k_chapter_01110.html

And then to use the track command in HSRP

hsrp [group-number] track type interface-path-id [priority-decrement]

I'm not sure if these are required.

As demonstrated here:

RP/0/0/CPU0:router(config)# router hsrp
RP/0/0/CPU0:router(config-hsrp)# interface TenGigE 0/2/0/1
RP/0/0/CPU0:router(config-hsrp-if)# hsrp track TenGigE 0/1/0/1
RP/0/0/CPU0:router(config-hsrp-if)# hsrp track TenGigE 0/3/0/1
RP/0/0/CPU0:router(config-hsrp-if)# hsrp preempt
RP/0/0/CPU0:router(config-hsrp-if)# hsrp ipv4 192.92.72.46

http://www.cisco.com/en/US/docs/routers/asr9000/software/asr9k_r3.9/addr_serv/command/reference/irasr9khsrp.html#wp999728

Hope this helps

Sent from Cisco Technical Support iPhone App

Please rate useful posts & remember to mark any solved questions as answered. Thank you.

There were below packages missing in ASR9001 router and hence I could not find track commands. After installing below packages I could see track and ipsla commands.

  asr9k-mgbl-supp-4.2.3

  iosxr-mgbl-4.2.3

  asr9k-mgbl-p-4.2.3

==============================

router hsrp

interface GigabitEthernet0/0/1/0

  address-family ipv4

   hsrp 1 version 1

    preempt

    address *******

   !

   hsrp 2 version 1

    preempt

    priority 110

    address *******

    track object WAN 15

   !

  !

!

!

track WAN

type rtr 1 reachability

!

ipsla

operation 1

  type icmp echo

   destination address *******

   frequency 60

  !

!

schedule operation 1

  start-time now

  life forever

!

!

=============================

/Tej