Configure A VVX 400

Step by Step Simple Setup on a Polycom VVX 400 phone.

  1. Press Home button.
  2. Use D-pad below Home button to select Settings.
  3. Dial 2 and enter password (default=456), press “Enter” soft-key.
  4. Then dial 1, 5, 5 on the dial pad.
  5. Press “Yes” soft-key.
  6. After reboot press “Cancel” soft-key while you see “Starting Application”.
  7. Hold down simultaneously 1, 3, 5 on the dial pad.
  8. You will be prompted to enter the phone password which is the phone’s MAC address which is on the under side of the phone.
  9. Use the Numeric and capital Alpha characters (not lower case alpha characters.
  10. The phone will reboot again and we will now need to find the IP address of the phone.
  11. Press the Home button after reboot and choose Settings option with D-pad again as in step 2 above.
  12. Then dial 4, 2, 1 on the dial pad.
  13. Make note of the full IP address to be used in bowser to access web interface of phone from your computer
  14. When in front of computer open browser and type in the IP address in the address bar.
  15. Click on Simple Setup in the top Polycom menu bar.
  16. Expand the SIP Server menu and type in the server address you received from your service provider or IT department. They will give you the correct port number and it is usually 5060.
  17. Expand the SIP Line Identification menu and type Display Name, Address, Authentic User ID as the extension of your phone.
  18. Type the password provided by your service provider or IT department.
  19. Last is the label that can probably be anything you want but to keep it consistent keep it the same as the Display Name.
  20. Press the “Save” button at the very bottom of the Polycom web interface and you are ALL FINISHED!

Install Webmin in CentOS

Install Webmin and configure Linux firewall to allow access.
Have your server started already. I am using a terminal window to remotely login to the CentOS server.

Have your server started already. I am using a terminal window to remotely login to the CentOS server.

# yum -y install wget perl.

Next jump out to http://webmin.com/download.html. The link is in the video notes. Right click on the RPM link download and click “Copy link address”

# cd /tmp
# wget http://prdownloads.sourceforge.net/webadmin/webmin-1.710-1.noarch.rpm
# rpm -ivh webmin-1*
# vi /etc/sysconfig/iptables
[in vi]
—Arrow down to the beginning of the long line that opens port 22
press Shift+A to enter edit mode to the end of that line and press enter to start a new line and enter the line to open port 10000 to access the Webmin interface.

-A INPUT -p tcp -m tcp –dport 10000 -j ACCEPT

Press Shift + Z, Shift + Z to save and close file

# service iptables restart

Then get out to a browser window and type the IP address of your server plus :10000 enter to see the webmin login page.

# yum -y update

Install CentOS and setup Network

Run through on how to install CentOS and setup network to prepare for use on the local network.

Have your server started already.

Command list for Network configuration:
# vi /etc/sysconfig/network-scripts/ifcfg-eth0
[in vi]
Arrow to BOOTPROTO
Shift + A
Delete ‘dhcp’
Replace with ‘static’
Press Enter
IPADDR=192.168.1.5
Enter for new line
NETMASK=255.255.255.0
Enter for new line
NETWORK=192.168.1.0
Arrow up to ONBOOT
Change ‘no’ to ‘yes’
Press Escape
Press Shift + Z, Shift + Z

# vi /etc/sysconfig/network
[in vi]
Arrow down to H in hostname
Press Shift + a
Press Enter
GATEWAY=192.168.1.1
Press Escape
Press Shift + Z, Shift + Z

#vi /etc/resolv.conf
[in vi]
Press ‘i’ to enter edit mode
search local domain
nameserver 8.8.8.8
nameserver 208.67.222.222
Press Shift + Z, Shift + Z

# ping yahoo.com
[to stop ping] Crtl + Z