Cisco WLC 仅在一行中显示时间?

网络工程 cisco-wlc
2021-07-07 20:33:09

以下show time输出取自https://www.cisco.com/c/en/us/td/docs/wireless/controller/8-3/command-reference/b-cr83/show_commands_r_to_z.html#wp2143390613

由于我show clock在 WLC 中找不到,我想知道是否可以仅从show time. Pipe、include 和 grep 在 WLC 上不起作用。

提供了太多信息show time我只需要日期、时间和时区。

> show time
Time............................................. Wed Apr 13 09:29:15 2011
Timezone delta................................... 0:0
Timezone location........................ (GMT +5:30) Colombo, New Delhi, Chennai, Kolkata
NTP Servers
    NTP Polling Interval.........................     3600
     Index     NTP Key Index     NTP Server      NTP Msg Auth Status
    -------  ---------------------------------------------------------------
       1              0           9.2.60.60       AUTH DISABLED
1个回答

试试下面的命令。WLC版本应该在v7.5之后

grep include 'Time\.' "show time"

我没有那个设备。
我不清楚可以使用哪种正则表达式选项。
检查以下过滤器示例。

grep include '20[0-9][0-9]' "show time"
grep include 'Time' "show time"
grep include 'Timezone delta' "show time"
grep exclude 'Timezone' "show time"