限制对远程数据库的访问
我使用的是 Sybase ASA 版本 9.0.2。
我可以通过提供 HOST
作为远程系统 IP 地址,使用 dbisql 实用程序访问远程数据库。
我正在使用 dbsrv9.exe 实用程序启动数据库。
有没有办法限制对该数据库的远程访问?
I am using Sybase ASA version 9.0.2.
I can access the remote DB using the dbisql
utility by providing HOST
as remote system IP address.
I am starting the database using the dbsrv9.exe
utility.
Is there any way to restrict the remote access on this database?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果使用
-x tcpip(localonly=yes)
启动服务器,这会告诉服务器不接受远程 TCP/IP 连接。或者,您可以使用-x none
禁用所有 TCP/IP 连接,但如果您在本地使用jConnect,则您不想这样做。免责声明:我在 Sybase 从事 SQL Anywhere 工程工作。
If you start the server with
-x tcpip(localonly=yes)
, this tells the server not to accept remote TCP/IP connections. Or you could use-x none
to disable all TCP/IP connections, though if you're using jConnect locally, you don't want to do that.Disclaimer: I work for Sybase in SQL Anywhere engineering.