AMP in fedora core 4

i already insttal asterisk in FC4 … i follow this note ( some budy plase check …its right waht im doing ) fc4 ip is -192.168.1.80

so now i try access my asterisk system in FC4 from other client but AMP protal didint find … so what the solution to add AMP protal in my FC4

if i wrong plase teach me …!!

Installing Asterisk

  • Login to your server as the user you created during install

  • Right-click on the background and select Open Terminal

  • Type “su -” on the command line, then enter the “root” user password when prompted

  • Run the following commands to download Asterisk:

    cd /usr/src
    export CVSROOT=:pserver:anoncvs@cvs.digium.com:/usr/cvsroot
    cvs login <— This command will prompt for a password, use anoncvs
    cvs checkout asterisk

  • This will download the latest version of Asterisk to your server. WARNING: This will download the very latest DEVELOPMENT version of Asterisk. It is NOT suitable for production use, just for testing!

  • Run the following commands to compile Asterisk:

    cd /usr/src/asterisk
    make clean
    make
    make install
    make samples

Configuring Asterisk

  • Login to your server as user “root”

  • Right-click on the background and select Open Terminal

  • Run the following commands to backup your current/sample configurations:

    cd /etc/asterisk
    mv iax.conf iax.backup
    mv extensions.conf extensions.backup

  • Run the following commands to download VoicePulse sample configurations:

    cd /etc/asterisk
    wget connect.voicepulse.com/samples/iax.sample
    wget connect.voicepulse.com/samples/extensions.sample

  • Run the following commands to rename the sample configurations:

    cd /etc/asterisk
    mv iax.sample iax.conf
    mv extensions.sample extensions.conf

  • Run the following commands to read and edit the VoicePulse Asterisk configurations:

    cd /etc/asterisk
    gedit iax.conf &
    gedit extensions.conf &

  • Run the following command to open a web browser to visit VoicePulse Connect! (connect.voicepulse.com/) while reading the configuration files:

    mozilla &

  • In iax.conf, make the changes outlined in the QUICKSTART section of the sample file, save the file and close it.

  • In extensions.conf make the changes outlined in the QUICKSTART section of the sample file, save the file and close it.