VC++实验室计算机的IP地址自动设置程序——服务器端的设计与实现
1.无需注册登录,支付后按照提示操作即可获取该资料.
2.资料以网页介绍的为准,下载后不会有水印.资料仅供学习参考之用.
密 惠 保
如有需要请联系 QQ:306826066
摘 要
IP地址的分配和管理是实验室管理员比较重视的一个问题,而大部分管理员都采用的是DHCP技术来实现,虽然DHCP技术可以为用户接入网络提供方便,但还存在一些弊端,例如:IP地址具有随机性,用户的IP地址是随机分配的,具有不确定性等等。本系统的主要功能就是实现对实验室计算机IP地址的静态分配,从而解决DHCP技术的一些缺陷。主要实现方法为:对有请求的客户端的网卡地址和分配给其的IP地址进行记录,通过网卡地址来标识某一具体主机,当其再有请求到达时,分配给其已经记录的IP地址,以实现分配给客户端固定IP地址的功能。若要手工实现对客户端IP地址的静态分配,可直接在数据库中根据网卡地址修改对应的IP地址即可。IP地址的设置由客户端实现。程序的开发工具为VC++6.0,连接数据库方式为ADO方式,为了优化系统性能和使客户端的请求不阻塞,采用了多线程技术。
关键词:ADO;多线程;网络广播;网络编程 [来源:http://www.think58.com]
the Automatic IP Address Configuration Software for Lab
—— the Design and Implementation of the Server-side program
Abstract
More and more laboratory managers care about the IP address allocation and management problem. Most administrators are using DHCP to resolve it. Although DHCP technology can provide users convenient access to network, but there are some drawbacks, such as the random IP address. This causes the user's IP address is distributed randomly, with uncertainty. The main function of the system is to achieve the static IP address allocation of the laboratory computers. It remedies the DHCP technology’s drawbacks. The system uses some network technology. It records the MAC address and the allocated IP address of the client who send the request packet to server by LAN. Through identifying a host by the specific MAC address, when the same request arrived, the same IP addresses shall be allocated again, which achieves the function that the client shall be allocated to the fixed IP addresses. If users need to manually allocate the IP address, they can modify the IP addresses that correspond to MAC address. IP addresses are set by the client system. Program development tools is Visual C + + 6.0, access the database with ADO, to optimize system performance. To avoid the block of client requests, multithread technology is used.
[来源:http://think58.com]
Key words: ADO; multithread; Network Broadcast; Network Programming [资料来源:http://www.THINK58.com]
目 录
论文总页数:20页
1 引言 1
1.1 课题背景 1
1.2 主要采用技术 1
1.2.1 ADO 1
1.2.2 多线程 1
1.2.1 网络广播 2
1.3 系统开发环境 2
1.3.1 系统软件环境 2
1.3.2 工具简介 2
2 系统概述 3
3 系统模块设计与实现 4
3.1 总体设计 4
3.1.1 系统结构设计 4
3.1.2 通信协议 6
3.1.3 数据库设计 6
3.2 编码实现 6
3.2.1配置模块 6
3.2.2接收请求模块 9
3.2.3处理请求模块 11
3.2.4发送应答模块 14
4 软件测试 16
结 论 18
参考文献 18
致 谢 19
声 明 20
[资料来源:www.THINK58.com]
1 引言
1.1 课题背景
目前,对学校的实验室来说,IP地址的分配和管理是管理员比较重视的一个问题。而大部分管理员都采用的是DHCP技术来实现,DHCP技术是通过网络内一台服务器提供相应的网络配置服务来实现的,可以为网络终端设备提供临时的IP地址、默认网关、DNS服务器等网络配置。虽然DHCP技术可以为用户接入网络提供方便,但还存在一些弊端,例如: IP地址具有随机性,用户的IP地址是随机分配的,具有不确定性; 访问权限会发生变化,如果用户的访问权限是基于IP地址划分的,则访问权限随IP地址不同而变化;不可被访问,通过DHCP获得的IP地址具有不确定性,用户被访问难度较大。 本系统对访问服务器的客户端网卡地址和分配其的IP地址进行记录,通过网卡地址来标识网内某一具体主机,并分配其固定的IP地址,
[资料来源:http://THINK58.com]