Dial Plan Problem

Hello everyone, I am using asterisk 13 and I am presenting a small problem. What I am looking for is that after 15 seconds if the call has not gone through to play the announcement, but it is hanging up the call after 15 seconds.

exten => _011.,1(lbl_vdp-outbound_4),Dial(DAHDI/g0/${EXTEN:5},15)
exten => _011.,n,(lbl_vdp-outbound_5)Playback(announcement1)
exten => _011.,n(lbl_vdp-outbound_5),Hangup()

Post the cli output

[quote=“testing3356”]Hello everyone, I am using asterisk 13 and I am presenting a small problem. What I am looking for is that after 15 seconds if the call has not gone through to play the announcement, but it is hanging up the call after 15 seconds.

exten => _011.,1(lbl_vdp-outbound_4),Dial(DAHDI/g0/${EXTEN:5},15)
exten => _011.,n,(lbl_vdp-outbound_5)Playback(announcement1)
exten => _011.,n(lbl_vdp-outbound_5),Hangup()[/quote]

The problem is in the second line : you placed the , at the wrong place.
This is the correct line:
eexten => _011.,n(lbl_vdp-outbound_5),Playback(announcement1)

tomdemoor is absolutely right, after review the second line of your dial plan. I could see the error