科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网服务器频道怎样才能限制sql server只能让指定的机器连接

怎样才能限制sql server只能让指定的机器连接

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

怎样才能限制我的sql server只能让指定的机器连接?sql server没有这样的功能,也没有提供在连接时执行某一特定过程的功能。

2008年3月28日

关键字: 数据库 防火墙 微软 服务器 SQL Server

  • 评论
  • 分享微博
  • 分享邮件

  怎样才能限制我的sql server只能让指定的机器连接

  a. sql server has no built-in tools/facilities to do this. it also does not have the facility to run a stored-procedure on connection that could be written/used to do this. therefore you have the following choices :-

  sql server没有这样的功能,也没有提供在连接时执行某一特定过程的功能。这里介绍几种实现的方法

  1. put the sql server behind a firewall and use that to restrict access. this is the most secure and functional way to do what you want.

  使用防火墙,它提供了安全和你想用的工具。

  2. write your own ods gateway and point the clients at that instead of the sql server - the ods gateway will then do the checking. however, there is nothing stopping clients figuring out the correct sql client-config entries to point straight at the sql server. there are examples of ods code in the sql programmers toolkit - available for free download from the ms website.

  写自己的ods网关代替sql server的客户端 - 在ods网关中检查。不过,这并不能停止正常的客户端连接sql server。在sql programmers toolkit中有一个这样的例, 可以从微软站点免费下载。

  3. write a constantly running/scheduled stored-procedure that checks the relevant column in sysprocesses (net_address), and then issues a kill command for any processes that should not be running. note that this only works for mac addresses. this way allows people to connect and possibly make changes before they are spotted and killed.

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章