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
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
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
Thanks!