Make simple call to pstn

Hello folks.
Iam a newbe asterisk user, and i have a question. How can i make a local call to asterisk mounted in ubuntu server, to accept calls and route to pstn providers using my x100p clon card (MD3200).

i have this escenario:

Softphone-client---->Asterisk---->Wall-Jack---->PSTN provider

Pd. i successfully installed asterisk-zaptel-and libpri. but i dont know whats next.

Thanks.

If you have all this setup and your * server is running and zaptel modules load ok then you need to have your dial plan take care of this for you. My setup on my home * box uses an X101P and my PSTN provide Bell South. With only one incoming and outgoing line, you will be limited on what you can do. And now as much as it pains me to say this, you need to RTFM.

Carlos, a good free book, Asterisk TFOT 2nd edition, about Asterisk, is here: downloads.oreilly.com/books/9780596510480.pdf .
To dial out through a zaptel channel add something like the following context to extensions.conf:

[to_pstn]
exten => _9X.,1,Dial(Zap/1/${EXTEN:1})

Also include this context in the context of your softphone.

Cheers.

Marco Bruni

Iam reading the manual.
thanks marco.