cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
stormonts
New Contributor

How do we remove a probe from a 908?

Jump to solution

We currently have this in the config of our router and would like to remove it but are unsure how.

probe PingTest icmp-echo

  destination x.x.x.x

  source-address y.y.y.y

  size 100

  period 1

  timeout 200

  tolerance consecutive fail 3 pass 3

  no shutdown

!

track TrackPingTest

  log-changes

  test if probe PingTest

  no shutdown

0 Kudos
1 Solution

Accepted Solutions
Anonymous
Not applicable

Re: How do we remove a probe from a 908?

Jump to solution

Hello,

You can disable the probe, which does not remove the configuration, but puts the probe and track into "shutdown."  You can completely remove the probe from the command line with 2 commands.

To disable the Probe:

TA924e#conf t

TA924e(config)#probe PingTest icmp-echo

TA924e(config-probe-PingTest)#shutdown

TA924e(config-probe-PingTest)#exit

TA924e(config)#track TrackPingTest

TA924e(config-track)#shutdown

TA924e(config-track)#exit

TA924e(config)#exit

Appropriate commands must be issued to preserve configuration.

TA924e#wr

Here is what the config looks like after disabling the Probe:

probe PingTest icmp-echo

  destination x.x.x.x

  size 100

  period 1

  timeout 200

  tolerance consecutive fail 3 pass 3

  shutdown

!

track TrackPingTest

  log-changes

  test if probe PingTest

  shutdown

To remove/delete the Probe:

TA924e#conf t

TA924e(config)#no probe PingTest icmp-echo

TA924e(config)#no track TrackPingTest

TA924e(config-track)#exit

TA924e#wr

Let us know if you have any questions.

Thanks,

Geo

View solution in original post

0 Kudos
2 Replies
Anonymous
Not applicable

Re: How do we remove a probe from a 908?

Jump to solution

Hello,

You can disable the probe, which does not remove the configuration, but puts the probe and track into "shutdown."  You can completely remove the probe from the command line with 2 commands.

To disable the Probe:

TA924e#conf t

TA924e(config)#probe PingTest icmp-echo

TA924e(config-probe-PingTest)#shutdown

TA924e(config-probe-PingTest)#exit

TA924e(config)#track TrackPingTest

TA924e(config-track)#shutdown

TA924e(config-track)#exit

TA924e(config)#exit

Appropriate commands must be issued to preserve configuration.

TA924e#wr

Here is what the config looks like after disabling the Probe:

probe PingTest icmp-echo

  destination x.x.x.x

  size 100

  period 1

  timeout 200

  tolerance consecutive fail 3 pass 3

  shutdown

!

track TrackPingTest

  log-changes

  test if probe PingTest

  shutdown

To remove/delete the Probe:

TA924e#conf t

TA924e(config)#no probe PingTest icmp-echo

TA924e(config)#no track TrackPingTest

TA924e(config-track)#exit

TA924e#wr

Let us know if you have any questions.

Thanks,

Geo

0 Kudos

Re: How do we remove a probe from a 908?

Jump to solution

Thanks!