拓撲圖
三層交換機配置dhcp
步驟一、sw1配置vlan
switch>en
switch#vl da
switch(vlan)#vl 10
switch(vlan)#vl 20
switch(vlan)#vl 30
switch(vlan)#exit
switch#conf t
switch(config)#in ra f0/1-10
switch(config-if-range)#sw mo ac
switch(config-if-range)#sw ac vl 10
switch(config-if-range)#exit
switch(config)#in ra f0/11-15
switch(config-if-range)#sw mo ac
switch(config-if-range)#sw ac vl 20
switch(config-if-range)#exit
switch(config)#in vl 30
switch(config-if)#in ra f0/16-23
switch(config-if-range)#sw mo ac
switch(config-if-range)#sw ac vl 30
switch(config-if-range)#exit
switch(config)#ho sw1
sw1(config)#in f0/24
sw1(config-if)#sw mo tr
sw1(config)#end
sw1#sh vl br
步驟二、sw0配置vlan
switch>
switch>en
switch#vl da
switch(vlan)#vl 10
switch(vlan)#vl 20
switch(vlan)#vl 30
switch(vlan)#exit
switch#conf t
switch(config)#ho sw0
sw0(config)#ip routing
sw0(config)#in vl 10
sw0(config-if)#ip ad 192.168.10.1 255.255.255.0
sw0(config-if)#no sh
sw0(config-if)#exit
sw0(config)#in vl 20
sw0(config-if)#ip ad 192.168.20.1 255.255.255.0
sw0(config-if)#no sh
sw0(config-if)#exit
sw0(config)#in vl 30
sw0(config-if)#ip ad 192.168.30.1 255.255.255.0
sw0(config-if)#no sh
sw0(config-if)#exit
sw0(config)#in f0/23
sw0(config-if)#no sw
sw0(config-if)#ip ad 10.1.1.1 255.255.255.0
sw0(config-if)#no sh
sw0(config-if)#exit
sw0(config)#in f0/24
sw0(config-if)#sw tr al vl 10,20,30
sw0(config-if)#end
sw0#sh vl br
sw0#sh ru
步驟三、r1配置ip位址
router>en
router#conf t
router(config)#ho r1
r1(config)#in f0/0
r1(config-if)#ip ad 10.1.1.2 255.255.255.0
r1(config-if)#no sh
r1(config-if)#exit
r1(config)#in f0/1
r1(config-if)#ip ad 100.1.1.1 255.255.255.0
r1(config-if)#no sh
r1(config-if)#end
r1#sh ru
步驟四、sw0和r1配置路由
sw0>en
sw0#conf t
sw0(config)#ip route 0.0.0.0 0.0.0.0 10.1.1.2
sw0(config)#end
sw0#sh ip ro
r1#conf t
r1(config)#ip route 192.168.10.0 255.255.255.0 10.1.1.1
r1(config)#ip route 192.168.20.0 255.255.255.0 10.1.1.1
r1(config)#ip route 192.168.30.0 255.255.255.0 10.1.1.1
r1(config)#end
r1#sh ip ro
步驟五、sw0配置dhcp
sw0(config)#ip dhcp excluded-address 192.168.10.1 //dhcp位址池做排除
sw0(config)#ip dhcp excluded-address 192.168.20.1 //dhcp位址池做排除
sw0(config)#ip dhcp excluded-address 192.168.30.1 //dhcp位址池做排除
sw0(config)#ip dhcp excluded-address 192.168.40.1 //dhcp位址池做排除
sw0(config)#in vl 10
sw0(config-if)#ip routing
sw0(config)#ip dhcp pool 10 //建立vlan10的dhcp位址池10
sw0(dhcp-config)#network 192.168.10.0 255.255.255.0 //設定dhcp位址池網段
sw0(dhcp-config)#default-router 192.168.10.1 //設定預設閘道器位址
sw0(dhcp-config)#dns-server 202.100.192.68 //設定預設dns位址
sw0(dhcp-config)#exit
sw0(config)#in vl 20
sw0(config-if)#ip routing
sw0(config)#ip dhcp pool 20
sw0(dhcp-config)#network 192.168.20.0 255.255.255.0
sw0(dhcp-config)#de
sw0(dhcp-config)#def 192.168.20.1
sw0(dhcp-config)#dns 202.100.192.68
sw0(dhcp-config)#exit
sw0(config)#in vl 30
sw0(config-if)#ip routing
sw0(config)#ip dhcp pool 30
sw0(dhcp-config)#network 192.168.30.0 255.255.255.0
sw0(dhcp-config)#de
sw0(dhcp-config)#def 192.168.30.1
sw0(dhcp-config)#dns 202.100.192.68
sw0(dhcp-config)#end
sw0#sh ru
步驟六、驗證dhcp可以分配ip位址、閘道器和dns
將pc1,pc2,pc3的ip configuration 設定成dhcp自動獲取
pc>ipconfig /release //釋放ip位址
ip address......................: 0.0.0.0
subnet mask.....................: 0.0.0.0
default gateway.................: 0.0.0.0
dns server......................: 0.0.0.0
pc1>ipconfig /renew //獲取ip位址
ip address......................: 192.168.10.2
subnet mask.....................: 255.255.255.0
default gateway.................: 192.168.10.1
dns server......................: 202.100.192.68
pc1>ping 100.1.1.2 //測試連通性
pinging 100.1.1.2 with 32 bytes of data:
reply from 100.1.1.2: bytes=32 time=1ms ttl=126
reply from 100.1.1.2: bytes=32 time=0ms ttl=126
reply from 100.1.1.2: bytes=32 time=0ms ttl=126
reply from 100.1.1.2: bytes=32 time=0ms ttl=126
pc2和pc3同上
三層交換機配置
如圖,其中pc1和4位於銷售部vlan10,pc2和pc5位於市場部vlan20,pc3和pc5位於財務部vlan30,各主機的ip位址以及子網掩碼已列出,下面將講解如何配置利用三層交換機來實現不同vlan間的相互通訊。sw1的命令 en 進入特權模式 conf t 全域性模式 vlan 10 建立...
三層交換機
三層交換機就是具有部分路由器功能的交換機,三層交換機的最重要目的是加快大型區域網內部的資料交換,所具有的路由功能也是為這目的服務的,能夠做到一次路由,多次 對於資料報 等規律性的過程由硬體高速實現,而象路由資訊更新 路由表維護 路由計算 路由確定等功能,由軟體實現。1.應用背景 出於安全和管理方便的...
三層交換機
1.根據題目要求設計拓撲結構 2.配置交換機 以第一台交換機的配置為例 switch enable switch vlan database switch vlan vlan 2 vlan 2 added name vlan0002 switch vlan vlan 3 vlan 3 added n...