نمایش نتایج: از شماره 1 تا 2 از مجموع 2
سپاس ها 4سپاس

موضوع: فعال کردن AsteriskNOW GUI

  
  1. #1
    نام حقيقي: ss

    خواننده
    تاریخ عضویت
    Sep 2009
    محل سکونت
    Gorgan
    نوشته
    27
    سپاسگزاری شده
    0
    سپاسگزاری کرده
    4

    فعال کردن AsteriskNOW GUI

    من asterisknow رو روی سیستم خودم نصب کردم و محیط کار اون متنی می خواستم بدونم چطور می تونم gui رو روی آن فعال یا نصب کنم. منظورم Gui ایی است که digiun روی این نسخه از asterisk ارائه کرده است نه freepbx gui.



    موضوعات مشابه:

  2. #2
    نام حقيقي: محمد حکیمی

    Administrator شناسه تصویری Hakimi
    تاریخ عضویت
    Dec 2002
    محل سکونت
    تهران
    نوشته
    6,549
    سپاسگزاری شده
    6798
    سپاسگزاری کرده
    1035
    نوشته های وبلاگ
    4
    Asterisk-GUI یک چهارچوب (Framework) برای برنامه نویسانی است که بخواهید برای Asterisk واسط کاربری بنویسند. البته خود شرکت Digium هم روی این چهارچوب، یک واسط کاربری نوشت که می توان آن را نصب کرد و از آن استفاده کرد و حدس می زنم منظور شما همین واسط کاربری است. (اگر اشتباه نکنم بیش از یک سال است که هیچ Update و Patch ای برای آن ارائه نشده و به همین دلیل توصیه می کنم به دنبال استفاده از آن در محیط عملیاتی نباشید و صرفا برای تست و آشنایی آن را نصب کنید.)

    Asterisk-GUI در آغاز کار با نام Trunk و سپس با نام Branches ارائه شد.
    این GUI به صورت بسته آماده نصب ارائه نشده و ابتدا می بایست Build شود و سپس مورد استفاده قرار گیرد.

    Source:
    http://svn.digium.com/svn/asterisk-gui/branches/2.0/

    دریافت:
    Index of /pub/telephony/asterisk-gui/releases


    راهنمای نصب:
    (دقت کنید که بسته به Distribution انتخابی شما برخی از دستورات متفاوت هستند، ولی برای آشنایی با روش کلی نصب می توانید از دو راهنمای زیر استفاده کنید. در یک کلام، انتظار نداشته باشید که به صورت Tutorial بتوانید از این راهنماها استفاده کنید.)


    راهنمای نصب به همراه Asterisk 1.6
    ide@glu server 66: “:::Asterisk, the Open Source PBX & Telephony Platform on our Ubuntu 8.04lts Server Edition:::”

    کد:
    last program, asterisk-gui
     $: sudo cd asterisk-gui-2.0.4
    $: sudo ./configure
    $: sudo make
    $: sudo make install before to run the last command we need to make a modify at some files
     $: sudo nano /etc/asterisk/http.conf and modify the lines in this way, uncomment and change the following lines
     [general]
    enabled=yes
    enablestatic=yes
    bindaddr=0.0.0.0
    bindport=8088
    prefix=gui
     also in this one
     $: sudo nano /etc/asterisk/manager.conf [general]
    enabled = yes
    webenabled = yes
    port = 5038
    bindaddr = 0.0.0.0
     [admin]
    secret = yourpassword
    read = system,call,log,verbose,command,agent,user,config,originate,read,write 
     write = system,call,log,verbose,command,agent,user,config,originate,read,write 
     For a futher check going into the directory /usr/src/cd asterisk-gui-2.0.2 and launch this comand
     $: sudo cd /usr/src/asterisk/asterisk-gui
    $: sudo make checkconfig reboot your system, if you check at the boot there will be an error something like that
     udevd : lookup_user : specified user ‘asterisk’ unknown
    udevd : lookup_user : specified group ‘asterisk’ unknown
     to resolve that one you’ve to add the user asterisk
     $: sudo adduser asterisk --disabled-password --gecos "asterisk PBX"
    $: sudo adduser www-data asterisk or you can make it making this
     $: sudo nano /etc/udev/rules.d/dahdi.rules and comment the line
     SUBSYSTEM==”dahdi”,  OWNER=”asterisk”, GROUP=”asterisk”, MODE=”0660″
     reboot the system
     $: sudo reboot Ok, now opening firefox and insert this address http://your_ip_address:8088/gui/static/config/cfgbasic.html


    راهنمای نصب به همراه Asterisk 1.4
    Installing The Asterisk PBX And The Asterisk Web-Based Provisioning GUI On Linux | HowtoForge - Linux Howtos and Tutorials

    کد:
    Preparation
    
     Go to your installation directory (for example /usr/src) and download the latest version of asterisk-gui. To do this just execute the command:
     svn checkout http://svn.digium.com/svn/asterisk-gui/trunk asterisk-gui
      By executing this command the sources of Asterisk GUI will be downloaded (see our sample output log svn.log) into ./asterisk-gui/ directory. 
      
     Configuring, Compiling And Installing
    
     You first need to go into the src directory where you downloaded the files, ie: /usr/src/asterisk-gui, then you need to configure, so type 
     ./configure
     
    Now, you need to compile the sources by executing the command: make Then distribute the compiled code by executing the command make install With this step you will finish the installation of the asterisk-gui (see our sample output log make_install.log). Configuration It is recommended to back up your configuration files before you continue. To achieve this just copy /etc/asterisk under a different name: cp -r /etc/asterisk /etc/asterisk.backup It is recommended to run: make samples This command will modify some of your Asterisk configuration files. After that you'll have to finish the configuration modification manually. There are two files which you should modify that are located in /etc/asterisk/: manager.conf enabled = yes webenabled = yes We will have to add a new user to manager.conf (we will use the mark user as previously set up when we installed Asterisk): [mark] secret = mysecret read = system,call,log,verbose,command,agent,user,config write = system,call,log,verbose,command,agent,user,config Now we need to make some modifications to the http.conf file: http.conf enabled=yes enablestatic=yes bindaddr=0.0.0.0 (If you set the bindaddr to 127.0.0.1 (loopback) you will only be able to access the GUI from the server itself.) After that run make checkconfig in your asterisk-gui directory. This script will check if your GUI is correctly configured. Running asterisk-gui In order to load the asterisk-gui, Asterisk must restart/reload. You can reload your Asterisk server from your CLI console by executing the command reload You can use the asterisk-gui from these addresses (127.0.0.1 is the loopback IP if you're accessing the page from the server itself, or from a different system, type the Asterisk server IP address): http://127.0.0.1:8088/asterisk/stati.../cfgbasic.html http://127.0.0.1:8088/asterisk/stati...gadvanced.html



    SADEGH65، saman_nn2000، patris1 و 1 نفر دیگر سپاسگزاری کرده‌اند.

کلمات کلیدی در جستجوها:

روش نصب asterisk gui

نصب asterisk

راهنمای asterisk

نحوه نصب asterisk

asterisknow 2.0 tutorial

asterisknow 2.0.2 configuration tuto

نصب استریسک بر روی اوبونتو

نحوه نصب Asterisk NOW

آشنایی با asterisk now

base configuration in asterisknow 2.0.2

نصب asterisk now برروی اوبونتو

راهنما AsteriskNOW

استریسک اوبونتو نصب

نحوه نصب Asterisknow

نصب استریسک asterisk now

asterisknow change ip

راهنمای asterisk now

http://forum.persiannetworks.com/f99/t30812.html

voip configuration راهنما

Asterisk

نصب asterisk now

AsteriskNOW

asterisknow 2.0.2 config

asterisk برنامه

manual install asterisknow 2.0.2

برچسب برای این موضوع

مجوز های ارسال و ویرایش

  • شما نمی توانید موضوع جدید ارسال کنید
  • شما نمی توانید به پست ها پاسخ دهید
  • شما نمی توانید فایل پیوست ضمیمه کنید
  • شما نمی توانید پست های خود را ویرایش کنید
  •