免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1398 | 回复: 0
打印 上一主题 下一主题

[原创]windows 2000 server dhcp server 导入及导出(1) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-08-21 15:23 |只看该作者 |倒序浏览
不知道大家碰到和我一样的问题么??
最近公司网段要重新划分,dhcp的绑定地址要重新建,2000 server没有导入工具,几百条记录啊,我真晕
赶快google,一无所获
查找msdn,功夫不负有心人,终于找到解决的办法了,下载windows 2000 server resource kit,安装dhcpobjs,注册dhcpobjs.dll
下面的dhcp-export.vbs代码是导出的,导入的还有点bug,以后发上来
其实大家看了代码写导入的也不难了。


  1. strfilepath = "dhcp.txt"
  2. Set objFile = CreateObject("Scripting.FileSystemObject")
  3. Set strguyfile=objFile.CreateTextFile(strFilePath,true)
  4. strguyfile.WriteLine("******************DHCP Server Configure*************")

  5. set dhcpmgr =Createobject("Dhcp.Manager")
  6. set dhcpsrv = dhcpmgr.Servers.Connect("192.168.0.2")
  7. set ll_dhcp = dhcpsrv
  8. for i = 1 to  dhcpsrv.Scopes.count
  9. strguyfile.WriteLine("Scopes"&i&":"&dhcpsrv.Scopes.Item(i).Address)
  10. strguyfile.WriteLine("Reservations:")
  11.         for j = 1 to dhcpsrv.Scopes(i).Reservations.count
  12.         ll_address = dhcpsrv.Scopes(i).Reservations(j).Address
  13.         ll_name = dhcpsrv.Scopes(i).Reservations(j).name
  14.         ll_uniqueid=dhcpsrv.Scopes(i).Reservations(j).UniqueID
  15.         ll_comment=dhcpsrv.Scopes(i).Reservations(j).Comment
  16.         strguyfile.WriteLine(chr(9)&ll_name&","&ll_address&","&ll_uniqueid&","&ll_comment )
  17.         next
  18. next
  19. strguyfile.WriteLine("****************** END *************")
复制代码


运行,赶快看看dhcp.txt,哈哈,成功。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP