LoginSignup
0
1

More than 1 year has passed since last update.

Cisco Aironet (自律型) でNTP (SNTP) を使って時刻を合わせる

Posted at

はじめに

先日、Cisco の Aironet シリーズ アクセスポイント (Autonomous OS 搭載) を中古で購入しました。
手動で時刻を設定するのは現実的ではないため,NTP を利用しようと思いましたが,うまくいかなかったので,記録を残しておきます。

なお,今回は事前に以下の設定を投入しています。

clock timezone JST 9 0

うまくいかなかった方法

とりあえず,Cisco のルータやスイッチなどと同じような設定を試してみました。
設定の投入自体はできているようですが,動作はしないようでした。

> enable
# conf t
(config)# ntp server ntp.jst.mfeed.ad.jp
(config)# end

# show clock
(正しくない日時が表示される)

# show ntp associations
        ^
% Invalid input detected at '^' marker.

うまくいった方法

NTPではなく,SNTPを使用します。
SNTPはNTPの簡易版ですが,互換性があるため,サーバのアドレスは同じものをそのまま使用できました。

> enable
# conf t
(config)# sntp server ntp.jst.mfeed.ad.jp
(config)# end

# show sntp
SNTP server                Stratum   Version    Last Received
ntp.jst.mfeed.ad.jp         2           4        00:00:28      Synced

# show clock
16:36:35.452 JST Wed Nov 16 2022

参考

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1