思科交换机PC0和PC1通过DHCP服务器获得IP

2020-12-13 16:08:58 字数 10166 阅读 7448

1楼:巴巴吖葩琦

服务器配ip,dns,子网掩码以及网关:192.168.1.254多层交换机简称ms 路由器简称r1 交换机简称sw1ms:en

conf t

int f0/3

no sw

ip add 192.168.1.254 255.255.255.248

no sh

exit

vl 10

vl 20

int vl 10

ip add 201.100.100.1 255.255.255.0ip helps-address 192.168.1.22no sh

int vl 20

ip add 192.168.1.9 255.255.255.0ip helps-address 192.168.1.22no sh

exit

int f0/1

no sw

ip add 192.168.1.17 255.255.255.0no sh

r1:en

conf t

int f0/ 什么乱七八糟的图 r1与ms的接口你这图太牛逼 我做不出来 如果这是作业 我只能说你们老师是个煞笔如果这是面试题 我只能说面试官是个煞笔

这都什么乱七八糟的东西 路由器是多余的 有多层交换机用不到路由器我学才疏浅 第一次见到255.255.255.

248这样的子网掩码也没看懂pc0与交换机连线旁边的192.168.1.

8是什么意思

cisco交换机中,如何让pc0利用dhcp获得ip地址

2楼:日落于清晨

你这个是全交换网络,用svi接口路由的话,packet tracer软件达不到这个要求,因为这个软件的3层交换机不能使用dhcp中继很坑,跨越vlan的dhcp不能实现。

3楼:忒没意思

在你的核心交换机(3560)上添加下面的配置。

conf t

inte***ce vlan2

ip helper-address 192.168.1.2 (你dhcp server 的地址)

通过dhcp服务,pc-1能获取到ip地址吗?为什么?在思科上

4楼:匿名用户

能。第一步:在交换bai机上设置为哪些du接口分配ip地址(如有vlan则设zhi置将哪

dao些接口归哪个vlan)

第二步专:那个接口与交换属机相连如果有vlan则该接口模式为access或trunk.若有vlan则必须为trunk.

第三步:在路由器上配置要动态分配的范围ip dhcp pool

***work 给其分配的ip网段地址,子网掩码

该范围所用的网关地址格式:default-router 网关地址 bb

所需dns 格式:dns-server 地址 子网

租期 lease 数字(天数)

所预留ip 格式:ip dhcp excluded-adress 地址不需子网

(ip dhcp excluded-adress 低地址 高地址)

第四步:如果有vlan则需要分子接口在物理接口上方法先封装在加网关 bb

封装格式:encapsulation dot1q vlan 号

加网关格式:ip add 地址 子网

最后把pc 调成自动获取ip 即可

思科dhcp服务器pc在不同vlan自动获取ip 15

5楼:

第一个问题:

http://****360doc.***/content/11/1201/14/8259354_168891053.shtml

第二个问题用acl禁止一下呗。

思科路由器和交换机怎么配置dhcp,让电脑自动获取ip地址?

6楼:匿名用户

三层交换机配置:

switch (config)#inte***ce vlan1   (配置vlan1)

switch (config-if)#ip helper-address 192.168.11.4(指定dhcp服务器的地址,即路由器的地址)

switch (config)#inte***ce vlan2  (配置vlan2)

switch (config-if)#ip helper-address 192.168.11.4

路由器配置:

router(config)# ip dhcp pool test1(配置一个根地址池,test1是地址池的名称)

router(config)#***work 192.168.1.0 255.255.255.0(动态分配的地址段)

router(config)#dns-server 192.168.1.5(为客户机配置dns服务器,即vlan 1的ip地址)

router(config)# ip dhcp pool test2(配置一个根地址池,test2是地址池的名称)

router(config)#***work 192.168.2.0 255.255.255.0(动态分配的地址段)

router(config)#dns-server 192.168.2.5(为客户机配置dns服务器,即vlan 2的ip地址)

计算机网络实验 配置交换机和路由器 使得pc0和pc1 ping通

7楼:匿名用户

这个问题倒是简单得很,但是你的需求不是很详细,我想问清楚几个问题:

1、pc0的网关是在交换机上还是路由器上?

2、所涉及的地址是否任意规划?

3、两台pc是否自动获取地址?

我这里给你做了一个配置,pc0网段为192.168.10.

0/24、网关为192.168.10.

1、网关在交换机上,pc1网段为192.168.20.

0/24、网关为192.168.20.

1,两台pc都自动获取地址

交换机配置:

ip dhcp pool 10 创建dhcp地址池

***work 192.168.10.0 255.255.255.0

default-router 192.168.10.1

dns-server 8.8.8.8

ip routing 思科三层交换机,默认所有网段不能互访,所以必须开这条命令

vlan 10

inte***ce fastether***0/1 这个端口和pc0连接

switchport access vlan 10

switchport mode access

inte***ce fastether***0/2 这个端口和路由器连接

no switchport

ip address 1.1.1.1 255.255.255.252

inte***ce vlan10 创建pc0的网关

ip address 192.168.10.1 255.255.255

no shutdown

ip route 192.168.20.0 255.255.255.0 1.1.1.2 静态路由

路由器配置:

ip dhcp pool 20 创建pc1的dhcp地址池

***work 192.168.20.0 255.255.255.0

default-router 192.168.20.1

dns-server 8.8.8.8

inte***ce fastether***0/0 这个端口和交换机互联

ip address 1.1.1.2 255.255.255.252

no shutdown

inte***ce fastether***0/1 这个端口和pc1互联

ip address 192.168.20.1 255.255.255.0

no shutdown

ip route 192.168.10.0 255.255.255.0 1.1.1.1

dhcp服务器配置 我是用服务器配置dhcp 通过交换机 连接怎么自动获取ip 10

8楼:匿名用户

您好,思科的三层交换机(3560)是可以自己配置dhcp的,举

个例子:

sw(config)#service dhcp

sw(config)#ip dhcp pool 172.25.1.0/24

sw(dhcp-config)#***work 172.25.1.0 255.255.255.0

sw(dhcp-config)#default-router 172.25.1.1

sw(dhcp-config)#exit

sw(config)#ip dhcp excluded-address 172.25.1.1 172.25.1.50

sw(config)#ip dhcp excluded-address 172.25.1.200 172.25.1.255谢谢!

9楼:老魇

dhcp采用二层广播模式进行申请,所以只有在同一个网段内服务器才能响应。为了实现统一dhcp服务管理,目前,三层交换机上都提供了dhcp**,就是将用户的dhcp申请通过单播模式**到dhcp服务。命令是:

service dhcp

ip helper-address

当然,也可以在三层路由器上建立dhcp服务,但只适合小型网络。大型网络通常具有很多三层交换机,总不能每个三层上都去建立dhcp服务,所以会采用专用服务器来建立dhcp服务,以便面向全网提供地址,只要在离用户最近的各三层交换机上启动dhcp**即可。

除了可以统一管理外,专用服务器建立dhcp服务最大的好处就是方便维护,且可以用中文标注每段地址的作用地点或部门。

思科3层交换机自动分配ip给pc,2台3层做链路聚合,pc0和pc2在vlan10中,pc1,3在vlan20 中 求配置详情

10楼:轩_灿烂

楼主,你好

配置如下,手打

l3 sw1:

ip dhcp excluded-address 192.168.10.1

ip dhcp excluded-address 192.168.20.1

ip dhcp excluded-address 192.168.10.2

ip dhcp excluded-address 192.168.20.2

ip dhcp pool 10

***work 192.168.10.0 255.255.255.0

default-router 192.168.10.1

dns-server 202.103.24.68 202.103.44.150

!

ip dhcp pool 20

***work 192.168.20.0 255.255.255.0

default-router 192.168.20.2

dns-server 202.103.24.68 202.103.44.150

spanning-tree vlan 10 priority 8192

spanning-tree vlan 20 priority 16384

inte***ce port-channel1

switchport mode trunk

!

inte***ce fastether***0/1

switchport mode trunk

!

inte***ce fastether***0/2

switchport mode trunk

!

inte***ce fastether***0/3

switchport mode trunk

channel-group 1 mode on

!

inte***ce fastether***0/4

switchport mode trunk

channel-group 1 mode on

inte***ce vlan10

ip address 192.168.10.1 255.255.255.0

!

inte***ce vlan20

ip address 192.168.20.1 255.255.255.0

ip ospf cost 65535

spanning-tree vlan 10 priority 8192

spanning-tree vlan 20 priority 16384

inte***ce port-channel1

switchport mode trunk

!

inte***ce fastether***0/1

switchport mode trunk

!

inte***ce fastether***0/2

switchport mode trunk

!

inte***ce fastether***0/3

switchport mode trunk

channel-group 1 mode on

!

inte***ce fastether***0/4

switchport mode trunk

channel-group 1 mode on

inte***ce vlan10

ip address 192.168.10.1 255.255.255.0

!

inte***ce vlan20

ip address 192.168.20.1 255.255.255.0

ip ospf cost 65535

l3 sw 2:

spanning-tree vlan 10 priority 16384

spanning-tree vlan 20 priority 8192

inte***ce port-channel1

switchport mode trunk

!

inte***ce fastether***1/1

switchport mode trunk

!

inte***ce fastether***1/2

switchport mode trunk

!

inte***ce fastether***0/3

switchport mode trunk

channel-group 1 mode on

!

inte***ce fastether***0/4

switchport mode trunk

channel-group 1 mode on

inte***ce vlan10

ip address 192.168.10.2 255.255.255.0

ip ospf cost 65535

!

inte***ce vlan20

ip address 192.168.20.2 255.255.255.0

l2 sw 1:

inter f0/3

no shutdown

sw mode trunk

inter f0/4

no shutdown

sw mode trunk

inter f0/1

sw mode access

sw access vlan 10

inter f0/2

sw mode access

sw access vlan 20

l2 sw2:

inter f0/3

no shutdown

sw mode trunk

inter f0/4

no shutdown

sw mode trunk

inter f0/1

no shutdown

sw mode access

sw access vlan 10

inter f0/2

no shutdown

sw mode access

sw access vlan 20

pc 自动获取ip即可。