之前的问题:用什么方式来实现指定的电脑才可以登录,mac地址限制/ip地址限制/证书/控件等等什么方式可以?

WBOY
Release: 2016-06-23 14:27:16
Original
935 people have browsed it

限制登录

之前有坛友发帖寻求一个限制登录的办法  http://bbs.csdn.net/topics/390524445

由于没有研究过相关领域所以我也只能酱油看一下

不过最近遇到一个类似的需求,想再来讨论下该如何实现

比如:

我做了一个网站,但是我希望只有特定的电脑才能访问(能大致实现即可)

目前考虑过两种方式: 1. active控件, 不知道怎么做,不知道行不行
2.ssl证书  也是同样的问题

希望能得到方向的指点,以便进一步研究,还望不吝赐教

回复讨论(解决方案)

用js取客户端信息,然后加密发送,服务器判断验证啊

一般能做到的也就IP了。

gethostbyaddr 返回指定 ip 的机器名

$hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);echo $hostname;
Copy after login

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template