Ciscoイーサネット・スイッチでのDNSサーバー・アドレスの変更

Ciscoイーサネット・スイッチでDNSサーバー・アドレスを変更するには、次のようにします。

  1. SSHを使用してイーサネット・スイッチにアクセスし、管理者のパスワードを使用してadminユーザーとしてログインします。

    SSHが構成されていない場合は、Telnetを使用してスイッチにアクセスします。

  2. enableモードに変更します。
    Switch> enable
    
  3. 現在使用中のDNS IPアドレスをリストします。
    Switch# show running-config
    
  4. 現在のDNSサーバー・アドレスと、無効なIPアドレスを消去します。この例では3つのIPアドレスが消去されます。
    Switch# configure terminal
    Enter configuration commands,one per line. End with CNTL/Z.
    Switch(config)# no ip name-server 10.7.7.2
    Switch(config)# no ip name-server 129.148.5.4
    Switch(config)# no ip name-server 10.8.160.2
    Switch(config)# end
    Switch# write memory
    Building configuration...
    Compressed configuration from 2603 bytes to 1158 bytes [OK ]
    
  5. 最大3つのDNSサーバーを構成します。次に、3つの新規DNSサーバーが構成される例を示します。
    Switch# configure terminal
    Enter configuration commands,one per line. End with CNTL/Z.
    Switch(config)# ip name-server 10.7.7.3
    Switch(config)# ip name-server 129.148.5.5
    Switch(config)# ip name-server 10.8.160.1
    Switch(config)# write memory 
    Building configuration...
    Compressed configuration from 2603 bytes to 1158 bytes [OK ]
    
  6. 変更を確認します:
    Switch# show running-config
    Building configuration...
    ...
    ip domain-name example.com
    ip name-server 192.168.10.2
    ip name-server 192.168.10.3
    ip name-server 192.168.10.4
    ...
    
  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