DHCPアドレスプールを備えたCiscoルーターがあります。
#show config
<snip>
ip cef
no ip dhcp use vrf connected
ip dhcp excluded-address 192.168.1.1 192.168.1.99
ip dhcp excluded-address 192.168.1.151 192.168.1.254
!
ip dhcp pool bigpool
network 192.168.1.0 255.255.255.0
dns-server 210.22.70.3 210.22.84.3
default-router 192.168.1.1
option 150 ip 192.168.1.1
!
</snip>
除外されたアドレスを削除または変更するにはどうすればよいですか。私は試した:
#config
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line. End with CNTL/Z.
(config)#no ip dhcp excluded-address 192.168.1.151 192.168.1.254
% Range [192.168.1.151, 192.168.1.254] is not in the database.
正しいコマンドを使用しましたが、実行中の構成ではなく、保存された(ブートアップ)構成を表示しています。したがって、copy run start
を実行して実行コンフィギュレーションをメモリにコミットするまで(つまり、起動時に使用されるものになるまで)、show config
はルータがアクティブに使用しているコンフィギュレーションに対応しません。
show run
を使用すると、現在の構成が表示され、dhcpの除外がなくなっていることがわかります。