使用python进行ISDN拨号连接

发布于 2024-09-13 23:50:04 字数 151 浏览 1 评论 0原文

我需要创建一个 Python 应用程序,该应用程序接受来自客户端软件的 ISDN 拨号连接,并将来自该连接的消息中继到在 LAMP Web 服务器上运行的网站应用程序。

python 中是否有一些模块或支持这种实现?

请建议。

提前致谢。

I have a requirement to create a Python application that accepts dial up connections over ISDN from client software and relays messages from this connection to a website application running on a LAMP webserver.

Do we have some modules or support for this kind of implementation in python?

Please suggest.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白馒头 2024-09-20 23:50:04

您应该拥有处理建立 ISDN 链路的系统硬件和软件,这不是您应该尝试自己重新实现的东西。

您需要查阅该硬件和软件的文档以及客户端软件的文档,以确定如何为您的应用程序提供该连接,以及客户端将通过 ISDN 链路使用哪种通信协议。

(如果你真的很幸运,客户端实际上使用 PPP 来建立 TCP/IP 连接。)

You should have system hardware and software that handles establishing ISDN links, that's not something you should be trying to reimplement yourself.

You need to consult the documentation for that hardware and software, and the documentation for the client software, to determine how that connection can be made available to your application, and what communications protocol the client will be using over the ISDN link.

(If you're really lucky, the client actually uses PPP to establish a TCP/IP connection.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文