怎么才能限制SQL Server只能讓指定的機(jī)器連接
更新時間:2007年03月06日 00:00:00 作者:
正在看的ORACLE教程是:怎么才能限制SQL Server只能讓指定的機(jī)器連接。Q. How can I restrict access to my SQL Server so that it only allows certain machines to connect?
(v1.0 19.10.1998)
怎樣才能限制我的SQL Server只能讓指定的機(jī)器連接
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沒有這樣的功能,也沒有提供在連接時執(zhí)行某一特定過程的功能。這里介紹幾種實現(xiàn)的方法
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網(wǎng)關(guān)代替SQL Server的客戶端 - 在ODS網(wǎng)關(guān)中檢查。不過,這并不能停止正常的客戶端連接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.
寫一個存儲過程檢查sysprocesses中的相應(yīng)列(net_address)
<
(v1.0 19.10.1998)
怎樣才能限制我的SQL Server只能讓指定的機(jī)器連接
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沒有這樣的功能,也沒有提供在連接時執(zhí)行某一特定過程的功能。這里介紹幾種實現(xiàn)的方法
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網(wǎng)關(guān)代替SQL Server的客戶端 - 在ODS網(wǎng)關(guān)中檢查。不過,這并不能停止正常的客戶端連接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.
寫一個存儲過程檢查sysprocesses中的相應(yīng)列(net_address)
<
相關(guān)文章
oracle 視圖權(quán)限 oracle 創(chuàng)建視圖權(quán)限不足
在scott用戶下創(chuàng)建視圖的時候,報錯:權(quán)限不足,遇到這個問題,我也是束手無策,于是網(wǎng)上搜集整理了一下,曬出來和大家分享,希望可以幫助你們2012-11-11Oracle批量查詢、刪除、更新使用BULK COLLECT提高效率
BULK COLLECT(成批聚合類型)和數(shù)組集合type類型is table of 表%rowtype index by binary_integer用法筆記。對oracle批量查詢 刪除 更新使用bulk collect提高效果的相關(guān)知識感興趣的朋友通過本文一起學(xué)習(xí)吧2017-04-04Linux中Oracle啟動偵聽報錯TNS:permission denied的解決方法
這篇文章主要介紹了Linux中Oracle啟動偵聽時報錯TNS:permission denied的解決方法,文中給出了詳細(xì)的解決方法,相信對大家具有一定的參考價值,需要的朋友們下面來一起看看吧。2017-02-02