Ciscoイーサネット・スイッチでのNTPサーバー・アドレスの設定

Ciscoイーサネット・スイッチでNTPサーバーを設定するには、次のようにします。

  1. SSHを使用してイーサネット・スイッチへの接続を開き、adminとしてログインします。SSHが構成されていない場合は、Telnetを使用します。
  2. enableモードに変更します。
    Switch> enable
    
  3. 現在の構成を確認します。
    Switch# show running-config
    
  4. 現在のchrony/NTPサーバー構成と、無効なNTPアドレスを消去します。次の例で、現在のIPアドレスは10.10.10.1と10.8.8.1です。
    Switch# configure terminal
    Enter configuration commands,one per line. End with CNTL/Z.
    Switch(config)# no ntp server 10.10.10.1
    Switch(config)# no ntp server 10.8.8.1
    Switch(config)# end
    Switch# write memory
    Building configuration...
    Compressed configuration from 2603 bytes to 1158 bytes [OK ]
    
  5. 最大2台のNTPサーバーを構成します。次に、10.7.7.1および10.9.9.1が新規IPアドレスとして使用される例を示します。
    Switch# configure terminal
    Enter configuration commands,one per line. End with CNTL/Z.
    Switch(config)# ntp server 10.7.7.1 prefer
    Switch(config)# ntp server 10.9.9.1
    Switch(config)# end
    Switch# write memory
    Building configuration...
    Compressed configuration from 2603 bytes to 1158 bytes [OK ]
    
  6. 変更を確認します:
    Switch# show running-config
    
    Building configuration...
    ...
    ntp server 192.168.10.10 prefer
    ...
    
  7. 構成を保存します:
    Switch# copy running-config startup-config
    Destination filename [startup-config]? 
    Building configuration...
    Compressed configuration from 14343 bytes to 3986 bytes[OK]
    
  8. セッションを終了します。
    Switch# exit