9 февр. 2023 г.

Microtik ppp-up and ppp-down scripts Telegram notification

 Global script (go to /system script) name - SendTelegram

:global telegramMessage
:local botid
:local chatid
set botid "TOKEN"
set chatid "USERID"
if ($telegramMessage != "") do={
    /tool fetch url="https://api.telegram.org/bot$botid/sendMessage\?chat_id=$chatid&text=$telegramMessage" keep-result=no
    set telegramMessage ""
}

8 февр. 2023 г.

Безопасный IVR по 1 цифре

Надо цифры DMTF поместить в отдельный контекст и добавить m, чтобы набиралась только одна цифра.


 [ivr]
exten => 1,1,Verbose(Switch to 102 from ivr)
 same => n,Dial(SIP/102,300)
 same => n,Hangup()

[incoming]
 same => s,Answer
 same => n,Set(TIMEOUT(response)=15)
 same => n,Background(announce/ivr,m,,ivr)
 same => n,Background(silence/5,m,,ivr)
 same => n,Goto(callcenter,74953223232,1)