Yealink T28にパーク保留ボタンを設定する方法

    目次
    ヘッダーがありません

    2024年 12月 27日, 14:58 現在の版

    この版へ

    版の一覧 に戻る。

    現在の版を閲覧

    YealinkT28は、低価格ながら非常に多機能なIP電話機です。Yealink-T28.png

    この電話機にパーク保留ボタンとピックアップボタンを設定する方法を解説します。

    1:trixboxPro側の設定

    Asteriskのhint機能を利用しますが、trixboxPro Ver4はパーク保留のhint機能がありません。

    このガイドは次期バージョンのtrixboxPro Ver5でこの機能を実現する方法を解説します。

    HintはAsteriskに内線の通話状態を通知させる機能です。電話機がBLF機能に対応していれば、各内線およびパーク保留の状態を取得し表示させることができます。

    設定はWEB管理画面からではなく、サーバー内部の設定ファイルを直接書き換えることで行います。

    1. SSHでroot権限でログインします。
    2. cd /etc/asterisk/fonality
    3. vi external_additional.conf(これでexternal_additional.confを新規作成します)
    4. external_additional.confに以下の内容を追加します。コピペする良いでしょう。
      [park-hints]
      ; include => park-hints-custom
      exten => 9001,1,parkinglot(9001)
      exten => 9001,hint,park:9001@parkinglot
      exten => 9002,1,parkinglot(9002)
      exten => 9002,hint,park:9002@parkinglot
      exten => 9003,1,parkinglot(9003)
      exten => 9003,hint,park:9003@parkinglot
      exten => 9004,1,parkinglot(9004)
      exten => 9004,hint,park:9004@parkinglot
      exten => 9005,1,parkinglot(9005)
      exten => 9005,hint,park:9005@parkinglot 
      
    5.  :wq!とタイプしてViを終了します。
    6. vi includes.conf (ファイルを編集します)
    7. includes.confファイルの中に以下の赤くハイライトされた行を追加して下さい。場所はどこでも構いません。
      #include "/etc/asterisk/fonality/external.conf"
      #include "/etc/asterisk/fonality/external_additional.conf"
    8.  asterisk -rx 'restart now' (Asteriskを再起動します)
      
    9. 次にinternal.confを編集します。赤字の部分を追加して下さい。
      [internal]
      include => international
      include => internal-invisible ; Extensions not visible to the GUI
      include => external
      include => link-internal
      include => internal-conference
      include => parkinglot
      include => pageusers
      include => directvm
      include => park-hints
      
    10. asterisk -rx reload (Asteriskの設定ファイルを再読み込みします)
    11. これで設定完了です。parking.confに「context=parkinglot」のエントリがあるかどうかを確認して下さい。
    12. 上記の各種設定ファイルは、ウェブ管理画面からの設定変更に共に上書きされてしまうことがあります。それで、これらの設定ファイルを変更不可に設定することで、保護することもできます。ただし、ファイルを設定変更不可に設定すると管理画面上にエラーが表示されることがあります。 

     

    2:YealinkT28側の設定


    続けて電話機の設定を行います。電話機の設定では、

    1. Now all that's left is to configure your phones.  Most IP phones have a "BLF" option when you are configuring them through their web GUI or through their configuration file.  It varies from phone to phone, but you're basically looking for a "BLF" setting or an Extension setting.  Experiment with your phone.
    2. Once you find the setting - you want to subscribe that key to the parking slot for status.  This means you type in "9001" (without quotes) for some phones or "sip:9001@sXXXXXX.trixbox.fonality.com" for other phones - it depends on the phone; consult the documentation.
    3. Once you have set the phone up properly - test your new functionality by transferring a call to 9001 and watch the key light up - when you want to grab the caller - just press the lit key and it should speed dial 9001.  Viola!  Park-Hold aka "Line Keys" (fake it) aka "Key System Functions"

     

     

    Check out the video of this function in action:

     

    http://ops.fonality.com/videos/IMG_1514.MOV

    Powered by MindTouch Core