Is it possible to remove same configuration statement under multiple interfaces configuration at once? For example how to delete "rpf-check" under all the interfaces below at once:
interfaces {
ae0 {
unit 105 {
description "TEST 1";
bandwidth 8m;
family inet {
rpf-check;
mtu 1500;
policer {
input bw-8Mbps;
output bw-8Mbps;
}
address 10.10.11.57/30;
}
}
unit 135 {
description "TEST 2";
bandwidth 8m;
family inet {
rpf-check;
mtu 1500;
policer {
input bw-8Mbps;
output bw-8Mbps;
}
address 10.10.12.61/30;
}
}
unit 203 {
description "TEST 3";
bandwidth 2m;
family inet {
rpf-check;
mtu 1500;
policer {
input bw-2Mbps;
output bw-2Mbps;
}
address 10.10.15.41/30;
}
}
}
}
I tried with:
delete interfaces <*> unit <*> family inet rpf-check
..and:
replace pattern rpf-check with ""
..but both of those did not work. Is it possible to delete using wildcards? Or in general, is it possible to delete same configuration statement in multiple places in configuration file at once?