拓撲很簡單
r1作為dhcp伺服器模擬為isp,r2作為dhcp客戶端,作為公司鏈結isp的出口
按道理來說,這種配置是相當容易的
r1的配置
r1#conf t
r1(config)#int s2/0
r1(config-if)#ip add 10.1.1.1 255.255.255.0
r1(config-if)#no sh
r1(config-if)#exit
r1(config)#ip dhcp pool isp
r1(dhcp-config)#network 10.1.1.0 /24
r1(dhcp-config)#default-router 10.1.1.1
r1(dhcp-config)#exit
r1(config)#ip dhcp excluded-address 10.1.1.1 //排除位址
r2的配置
r2#conf t
r2(config)#int s2/0
r2(config-if)#ip address ?
a.b.c.d ip address
negotiated ip address negotiated over ppp
pool ip address autoconfigured from a local dhcp pool
slarp set ip address through slarp
可以看出,並沒有dhcp選項,然後我上網查了一下,還可以使用
r2(config-if)#ip dhcp client client-id s2/0
其實並沒有什麼卵用(可能是我配置錯誤)
一開始我以為是ios的問題,一開始使用的是
c3640-ik9o3s-mz.124-25c.bin
後來我換成了
c3660-ik9o3s-mz.124-15.t6.bin
發現還是同樣的問題
接下來我思考的是,是不是串列埠不能做dhcp(一開始感覺這個想法有點扯淡,畢竟鏈結isp的介質大多都是序列線)
接下來我使用了快速乙太網埠
dhcp服務照常
r2(config-if)#int f0/0
r2(config-if)#no sh
r2(config-if)#ip add ?
a.b.c.d ip address
dhcp ip address negotiated via dhcp
pool ip address autoconfigured from a local dhcp pool
發現dhcp選項,很驚喜有木有
r2(config-if)#ip add dhcp
結果如下
r2(config-if)#
*mar 1 00:49:17.411: %dhcp-6-address_assign: inte***ce fastethernet0/0 assigned dhcp address 10.1.1.2, mask 255.255.255.0, hostname r2
r2#show ip int b
inte***ce ip-address ok? method status protocol
fastethernet0/0 10.1.1.2 yes dhcp up up
fastethernet0/1 unassigned yes unset administratively down down
fastethernet1/0 unassigned yes unset administratively down down
serial2/0 unassigned yes unset administratively down down
獲取到了
接下來,我使用cisco packet tracer 7.0 來配置
r1配置完了之後
r的配置如下
r2(config)#int s0/3/0
r2(config-if)#ip add
r2(config-if)#ip address ?
a.b.c.d ip address
r2(config-if)#ip ?
access-group specify access control for packets
address set the ip address of an inte***ce
authentication authentication subcommands
flow netflow related commands
hello-interval configures ip-eigrp hello interval
helper-address specify a destination address for udp broadcasts
mtu set ip maximum transmission unit
nat nat inte***ce commands
ospf ospf inte***ce commands
split-horizon perform split horizon
summary-address perform address summarization
virtual-reassembly virtual reassembly
還是沒有dhcp的選項
同樣的,吉位元乙太網介面是有的
r2(config-if)#int g0/0
r2(config-if)#ip add ?
a.b.c.d ip address
dhcp ip address negotiated via dhcp
cisco路由器配置
cisco路由器配置的幾個常用命令 router enable 進入特權模式 router conf t 進入配置模式 router config int fa0 0 進入fa0 0介面 router config if ip add 192.168.1.1 255.255.255.0 給fa0 0...
Cisco路由器串列埠故障分析
串列埠出現連通性問題時,為了排除串列埠故障,一般是從show inte ce serial命令開始,分析它的螢幕輸出報告內容,找出問題之所在。串列埠報告的開始提供了該介面狀態和線路協議狀態。介面和線路協議的可能組合有以下幾種 1.串列埠執行 線路協議執行,這是完全的工作條件。該串列埠和線路協議已經初...
CISCO路由器DHCP 配置
實驗拓撲 基本配置 r5充當dhcp 伺服器 ip dhcp pool vlan146 network 155.1.146.0 24 default router 155.1.146.4 dns 202.106.46.151 exit ip dhcp excluded address 155.1.1...