I had this problem when I used the TDM400P on an FC3 system. The Wiki helped:
http://www.voip-info.org/wiki-Asterisk+Linux+Fedora [snippet] Additional Notes for Zaptel if you get error message Notice: Configuration file is /etc/zaptel.conf line 143: Unable to open master device '/dev/zap/ctl' If you edit the Zaptel Make file commit out the following lines ifeq ($(DYNFS),) else @echo "**** Dynamic filesystem detected - not creating device nodes" @echo "**** If you are running udev, read README.udev" endif Recompile Zaptel, libpri and Asterisk and you should be good to go, special thanks to Patrick off the mailing list for the above info. [/snippet] Also, when I start the service, I do a sleep and keep checking for the existence of the /dev/zap/ctl file before loading any modules which has proven to work. Here's the script snipet: ls /dev/zap/ctl > /dev/null 2>&1 until [ $? -eq 0 ]; do sleep 1 ls /dev/zap/ctl > /dev/null 2>&1 done Hope that helps, -Dave -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dorn Hetzel Sent: Wednesday, December 22, 2004 4:23 PM To: [email protected] Subject: [Asterisk-Users] TDM400P install on Debian 2.6.10 I just installed a new TDM400P with one FXO interface in slot 4 (how it came from Digium). This box is running Debian with a 2.6.10-rc2-mm3 kernel. After the make linux26 and make install in /usr/local/src/zaptel, I can see contents in /dev/zap but any attemp to touch for example /dev/zap/ctl gets a no such device or address ... Any suggestions? _______________________________________________ Asterisk-Users mailing list [email protected] http://lists.digium.com/mailman/listinfo/asterisk-users To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users _______________________________________________ Asterisk-Users mailing list [email protected] http://lists.digium.com/mailman/listinfo/asterisk-users To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
