web-dev-qa-db-ja.com

Ciscoルータ設定から除外アドレス範囲を削除する方法は?

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.
1
user25282

正しいコマンドを使用しましたが、実行中の構成ではなく、保存された(ブートアップ)構成を表示しています。したがって、copy run startを実行して実行コンフィギュレーションをメモリにコミットするまで(つまり、起動時に使用されるものになるまで)、show configはルータがアクティブに使用しているコンフィギュレーションに対応しません。

show runを使用すると、現在の構成が表示され、dhcpの除外がなくなっていることがわかります。

3
Kyle Brandt