我正在尝试将数据包跟踪器上的 2811 Cisco 路由器配置为 3 台主机的 DHCP 服务器。
这是我现在的运行配置:
Building configuration...
Current configuration : 657 bytes
!
version 12.4
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname r1
!
!
!
!
!
ip dhcp pool stackexchange
network 192.168.0.0 255.255.255.0
default-router 192.168.0.1
!
!
!
!
!
!
interface FastEthernet0/0
ip address 192.168.0.1 255.255.255.0
duplex auto
配置是由@Andrey Prokhorov 建议的,但现在我发现没有“租赁”命令。
我必须能够让 DHCP 服务在所有 3 台主机上运行。

