Web服务IP限制
我已经建立了一个网络服务,但所有人都可以访问它。我希望它仅由我分配的 IP 使用。可以在网络服务代码上做到这一点。我用的是vb
I have built a webservices, but it can accessed by all poeple. I want to it only used by the IP which I assigned. it's possible can do it on the webservices code. I was using vb
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您仅使用 IP 来过滤请求,则需要小心,因为这可能会被黑客欺骗。如果需要安全,您还应该使用身份验证。
You need to be careful if you use only IP to filter requests as this could be spoofed by a hacker. You should also use authentication if this needs to be secure.
通过设置规则仅允许特定 IP 地址访问您的服务,在 IIS 级别拦截请求。您可以在 IIS > 下找到它[网站/服务名称]>属性>目录安全选项卡> IP 地址和域名限制。
Intercept the request at the IIS level by setting a rule to only allow a speicific IP address to access your service. You can find this under IIS > [Site/Service Name] > Properties > Directory Security Tab > IP addresses and Domain Name restrictions.
您可以在每个 Webmethods 中运行检查以确保客户端 IP 是否正确,但正如其他人所说,IP 可能会被欺骗或可能发生更改,因此使用 WSE3.0 实施身份验证可能是更好的选择。
You could just run a check in each of your Webmethods that the clients IP is correct but as others have said an IP can be spoofed or subject to change so implementing authentication using WSE3.0 may be a better option.