web-dev-qa-db-ja.com

CiscoデバイスからDHCPスコープ情報を取得するにはどうすればよいですか。 (IOS 12)

サブネットやVLANなどが多数あるかなり大規模なネットワーク上のデバイスとネットワーク情報を追跡しようとしています。そのほとんどはCisco [エンタープライズグレード]のスイッチまたはルーターからDHCPで提供されています。その意味で、さまざまなDHCPプール/スコープが何であるかを調べていますが、見つけることができるすべての情報は、Cisco IOSでDHCPを構成する方法に関するものです。これは、変更したくないので役に立ちません。スコープは、現在のスコープを表示するだけです。

私はshow ip dhcp binding DHCPクライアントとそのIPのリストを取得し、DHCP IPの有効な範囲を推測しますが、これはかなり望ましくありません...したがって、displayその情報(既存の構成を変更せずに)?

2
HopelessN00b

関連するデバイスから、show ip dhcp poolを試してください。除外を表示するには、show run | i excluded-addressesを試してください。

次の出力は、Cisco4507スイッチからのものです。

CORE#show ip dhcp pool

Pool VOICE :
 Utilization mark (high/low)    : 100 / 0
 Subnet size (first/next)       : 0 / 0 
 Total addresses                : 254
 Leased addresses               : 42
 Excluded addresses             : 101
 Pending event                  : none
 1 subnet is currently in the pool :
 Current index        IP address range                    Leased/Excluded/Total
 192.168.122.234      192.168.122.1    - 192.168.122.254   42    / 101   / 254  


Pool GUEST :
 Utilization mark (high/low)    : 100 / 0
 Subnet size (first/next)       : 0 / 0 
 Total addresses                : 254
 Leased addresses               : 9
 Excluded addresses             : 103
 Pending event                  : none
 1 subnet is currently in the pool :
 Current index        IP address range                    Leased/Excluded/Total
 192.168.111.165      192.168.111.1    - 192.168.111.254   9     / 103   / 254  

そして除外:

CORE#show run | i excluded-addresses
ip dhcp excluded-address 192.168.122.1 192.168.122.50
ip dhcp excluded-address 192.168.122.100 192.168.122.150
ip dhcp excluded-address 192.168.111.1 192.168.111.50
ip dhcp excluded-address 192.168.111.100 192.168.111.150
5
ewwhite