青蛙學堂
关于VLAN中DHCP域的问题
关于
VLAN
中
DHCP
域的问题
我的问题就是如何给每个
VLAN
指定各自的
DHCP
域。比如
vlan 2
对应
dhcp test2 vlan3
对应
dhcp test3.
假如
:
情况
1
: 现在有一个
router
上做了多个
DHCP
域
.
然后在
switch
上划
VLAN
。那么那个交换机上的
ip help-address
的
IP
是什么呢
?
是
router
上哪个口的
IP
呢
?
如:在
router
上的配制:
ip dhcp excluded-address 10.0.199.200 10.0.199.254 ! ip dhcp pool test 1 network 10.0.199.0 255.255.255.0 default-router 10.0.199.1 dns-server 10.0.199.252 lease 0 0 5
ip dhcp pool test 2 network 10.0.200.0 255.255.255.0 default-router 10.0.200.1 dns-server 10.0.199.252 lease 0 0 5
在交换机上:
interface Vlan199 ip address 10.0.199.1 255.255.255.0 ip helper-address ???????????????
int vlan 200
ip address 10.0.200.1 255.255.255.0 ip helper-address ???????????
这时在这里指定的
helper-address
是什么呢
?
才能把
vlan199
和
vlan200
里的电脑取得相
应
DHCP
scope???
第二种情况:利用局域网中的
win2000
’
s
DHCP
server
假如
dhcp server
的
ip 192.168.10.1
在
DHCP
上划分两个
scope.
第一个
scope 192.168.10.10 -----192.168.10.255
第二个
scope 192.16.20.10 ------192.16.20.255.
交换机划分
VLAN
之后,如何保证
DHCP
服务器使用仍然在其它区域起作用。即
VLAN
10
里的机器取得第一个
scope
里的
ip:
即从
192.168.10.10 -----192.168.10.255
同样,
vlan20
取得相应第二个
scope
里的
IP.
这时在这里指定的
helper-address
是什么呢
?
才能把
vlan199
和
vlan200
里的电脑取得相应
DHCP
scope???
第三种情况:假如在一个
3550emi
上划分多个
DHCP
域。由于它本身就可路由。并能划
VLAN
。那么这时在这里指定的
helper-address
是什么呢
?
才能把
vlan199
和
vlan200
里的电脑取得相应
DHCP
scope???
FW:ip dhcp pool valn x
network x.x.x.x x.x.x.x
default-router x.x.x.x
其中
vlan x
这个
pool
是全局
pool
的子集
interface vlan x
ip helper-address x.x.x.x
The helper address can be a specific
DHCP
server address, or it can be the network address
if other
DHCP
servers are on the destination network segment. Using the network address enables other servers to respond to
DHCP
requests.
If you have multiple servers, you can configure one helper address for each server.
DHCP
relay:
http://www.cisco.com/en/US/products...00800c6ed2.html
FW:
以一个配置案例来做总结吧:
router1
的
int fa0/0
上接有
dhcp server
。和
router2
通过
s0/0
连接
IP
地址方案如下:
route1:
int fa0/0 10.1.1.254/24 int fa0/1 10.1.2.254/24 int s0/0 192.168.0.1/30 route2:
int fa0/0 10.2.1.254/24 int fa0/1 10.2.2.254/24 int s0/0 192.168.0.2/30 dhcp server adderss
:
10.1.1.1
配置:
router1: ! ip forward-protocol udp
! int fa0/0 ip addr 10.1.1.254 255.255.255.0
no shutdown ! int fa0/1 ip addr 10.1.2.254 255.255.255.0
ip helper-address 10.1.1.1 no shut !
int s0/0 ip addr 192.168.0.1 255.255.255.252 no shut
encap ppp
!
ip route 10.2.0.0 255.255.0.0 192.168.0.2
! router2: !
ip forward-protocol udp ! int fa0/0 ip addr 10.2.1.254 255.255.255.0
ip helper-address 10.1.1.1 no shutdown !
int fa0/1 ip addr 10.2.2.254 255.255.255.0 ip helper-address 10.1.1.1 no shut
! int s0/0 ip addr 192.168.0.2 255.255.255.252
no shut encap ppp ! ip route 10.1.0.0 255.255.0.0 192.168.0.1 ! dhcp server: scope 11: router:10.1.1.254
scope 12: router:10.1.2.254 scope 21: router:10.2.1.254
scope 22:
router:10.2.2.254
使用
VLAN
的情况配置与此相同。只不过把
int fa
换成
int vlan
而已。
转:
你只需要将
VLAN
当做是第
N
个
SCOPE
的
ROUTE
选项就行了。
在你的交换机上按常规划分好
VLAN
:
假设有:
VLAN
20
和
VLAN
30
, 你先在交换机上划分好
(
这步应该都会做
)
, 然后
在路由器上设置
VLAN
网关
(
假设是
FA0/0.1
:
192.168.20.254/24
和
FA0/0.2
:
192.168.30.254/24)
, 在
VLAN
20
接口和
VLAN
30
接口下分别设置
ip help-address
DHCP
_SERVER_ADD,IP FORWARD
UDP
等,其实
DHCP
_SERVER
接
在哪里无所谓,只要能够
ROUTE
通,就行。关键是
DHCP
_SERVER
上设置
SCOPE
时,
你分两个,其中一个为
192.168.20.0
网段的,它的相应
ROUTE
选项为
192.168.20.254,
另一个
SCOPE
为
192.168.30.0
网段的,它的相应
ROUTE
选
项为
192.168.30.254
。上述设置完成后,记得在两个网段都要能和
DHCP
_SERVER
通。
posted on 2006-02-11 11:00
青蛙學堂
阅读(333)
评论(0)
编辑
收藏
引用
所属分类:
硬件百科
只有注册用户
登录
后才能发表评论。
Powered by:
IT博客
Copyright © 青蛙學堂
<
2006年7月
>
日
一
二
三
四
五
六
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
导航
IT博客
首页
新随笔
联系
管理
统计
随笔 - 426
文章 - 0
评论 - 164
引用 - 0
常用链接
我的随笔
我的评论
我参与的随笔
留言簿
(8)
给我留言
查看公开留言
查看私人留言
随笔分类
c#(58)
(rss)
CSS(7)
(rss)
Elasticsearch(4)
(rss)
ERP-U8(2)
(rss)
Fireworks
(rss)
Flash
(rss)
HTML(17)
(rss)
Java(3)
(rss)
JavaScript(31)
(rss)
Linux(5)
(rss)
LotusNotes(2)
(rss)
PHP(13)
(rss)
Python(1)
(rss)
TelePhone(1)
(rss)
VPN
(rss)
Vs2008(51)
(rss)
數據庫(61)
(rss)
硬件百科(62)
(rss)
系统(10)
(rss)
經濟論壇(18)
(rss)
網站(17)
(rss)
軟件布袋(115)
(rss)
青蛙议堂(9)
(rss)
随笔档案
2022年9月 (1)
2022年8月 (2)
2022年7月 (5)
2022年6月 (1)
2022年5月 (5)
2022年4月 (5)
2022年3月 (1)
2021年4月 (1)
2021年3月 (1)
2020年12月 (2)
2020年11月 (3)
2020年10月 (4)
2020年8月 (8)
2020年7月 (20)
2020年6月 (4)
2020年5月 (12)
2020年4月 (3)
2020年3月 (2)
2018年12月 (2)
2016年6月 (1)
2014年9月 (1)
2014年5月 (1)
2014年4月 (1)
2012年11月 (1)
2012年5月 (25)
2012年4月 (44)
2012年3月 (39)
2012年2月 (15)
2011年10月 (2)
2011年9月 (3)
2011年8月 (14)
2011年7月 (1)
2010年12月 (1)
2009年8月 (2)
2009年7月 (1)
2007年11月 (2)
2007年10月 (5)
2007年8月 (1)
2007年7月 (7)
2007年4月 (1)
2007年3月 (1)
2006年12月 (7)
2006年11月 (5)
2006年9月 (12)
2006年8月 (5)
2006年7月 (1)
2006年6月 (5)
2006年5月 (11)
2006年4月 (7)
2006年3月 (3)
2006年2月 (33)
2006年1月 (33)
2005年12月 (6)
2005年11月 (47)
收藏夹
無量洞
(rss)
百納川
(rss)
青蛙学堂
最新评论
1. re: c# Encoding.Unicode.GetBytes 转码取字符串
评论内容较长,点击标题查看
--青蛙學堂
2. re: C# 获取文件名及扩展名
well goood 6666666666666666
--6666
3. re: C# 获取文件名及扩展名
瑶瑶且可恼
--夏利
4. re: C# 获取文件名及扩展名
哟哟哟哟,切克闹
--吊炸天
5. re: php显示数据库数据
公积金
--和
6. re: AJAX--不具有名为xxxxx的公共属性 解决方法
12123
--发给
7. re: Lotus Notes 常见错误
一直显示服务器没响应,端口也连接不上
--Jason Guo
8. re: C# 获取文件名及扩展名
不好
--冰风
9. re: Lotus Notes 常见错误
NOTES怎样将所有的邮件复制到本地上呢?
--limengnan
10. re: FW:结识正能量,跟对人
太功利!
--雷鹏
11. re: C# 获取文件名及扩展名
学习了。。学习c#ing
--lvv2
12. re: Lotus Notes 常见错误
公司同事早上打开notes本来没问题的,但是安装qq浏览器后,外部发送的邮件看不了内容,但是回复或者右键点击编辑可以看到内容,是所有的外部邮件,包括以前发送的邮件
--张俊
13. re: Lotus Notes 常见错误
邮件经常提示 not a sub or function :mark message for follow up
--黄勇军
14. re: Lotus Notes 常见错误
Notes 接受外部邮件时,邮件中的表格无法显示格式,只能显示文本,但公司内部邮件没有此问题。并且外部邮件经内部同事转发后,也能正确显示格式
--Tang
15. re: Lotus Notes 常见错误
邮件中的热点链接为什么打不开?别人的可以打开.
--LH
阅读排行榜
1. C# 获取文件名及扩展名(43707)
2. Lotus Notes 常见错误(33209)
3. c# arrayList遍历(22087)
4. window.showModalDialog获取弹出页面返回值的2种方法(13518)
5. AD域维日常维护手册(8576)
6. Reporting Services 部署指南(8080)
7. ContentType--文件下载类型(6955)
8. 双网卡故障解决方法(5469)
9. c#--封装的概念(5392)
10. 如何访问局域网(4687)
11. TTimer : Delphi编写获取和设置系统时间程序(3888)
12. 用delphi写excel文件(3670)
13. CREATE INDEX(3665)
14. BAT命令(3398)
15. Access Violation at address 004CD87E in module 'MyTest.exe',Read of Address 00000008.(3179)
评论排行榜
1. Lotus Notes 常见错误(19)
2. vlan-dhcp(13)
3. 木馬(9)
4. 如何访问局域网(8)
5. 双网卡故障解决方法(8)
6. 筆記(6)
7. Edit Excel 2(5)
8. C# 获取文件名及扩展名(5)
9. sql----join(4)
10. 多VLAN环境中DHCP服务的实现(4)
11. DBCHART(4)
12. 怎樣在查詢結果中加入子序號 ? (3)
13. 多線程查詢(3)
14. CREATE TRIGGER(3)
15. trigger(2)