ISDN dial up connection with python

1k views Asked by At

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.

1

There are 1 answers

3
Nicholas Knight On

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.)