很难描述我在问什么。例如,这是我的配置的一部分,具有完整的层次结构:
interfaces {
ge-0/1/9 {
vlan-tagging;
unit 100 {
description "my cool interface";
vlan-id 100;
family inet {
address 192.168.66.66/25;
}
}
}
}
所以现在我想看看我拥有“66”IP 的接口上发生了什么。万岁| match
!但是这个:
me@router> show configuration | match 66
address 192.168.66.66/25;
……没那么好用。这:
me@router> show configuration | match 66 | display set
set interfaces ge-0/1/9 unit 100 family inet address 192.168.66.66/25
me@router> show configuration interfaces ge-0/1/9.100
description "my cool interface";
vlan-id 100;
family inet {
address 192.168.66.66/25;
}
... 更好。但我真正喜欢的是上面的整个配置块,只需一个简单的show
命令。像这样的东西:
me@router> show configuration | match 66 | display section
interfaces {
ge-0/1/9 {
unit 100 {
description "my cool interface";
vlan-id 100;
family inet {
address 192.168.66.66/25;
}
}
}
}
我知道| display section
Junos 上不存在,但是有什么方法可以获得这样的输出吗?