Posts

Showing posts from July 1, 2012
Beginner’s Guide Introduction This is a simple step-by-step guide for installation of the necessary components to install Newfies-Dialer. It covers the installation of the operating system, Freeswitch, Plivo and Newfies-Dialer along with all the dependencies, followed by setting off the first Newfies-Dialer campaign, and can be achieved in under one hour, given suitably quick broadband. Operating System Installation We recommend that you use Ubuntu LTS 10.04 server edition, and this document is written with this in mind. To take advantage of modern hardware the 64 bit edition may be used. If you are testing on older hardware, it may be necessary to install the 32 bit edition. It is available at http://www.ubuntu.com/download/ubuntu/download Please note that the Newfies-Dialer install scripts are only designed to work on Ubuntu LTS 10.04 and CentOS 6.2 Burn the image to CD, and install onto your hardware. The installation of Ubuntu is straight forward and simple.

How to Improve Web Traffic QoS on MikroTik: Best Practices and Configuration Tips

/ip firewall mangle add action=mark-packet chain=prerouting comment="Local traffic" disabled=no \    in-interface=Local new-packet-mark=local_traffic passthrough=yes how to create a packet mark for VoIP traffic: /ip firewall mangle add action=mark-packet chain=prerouting comment="Mark VoIP traffic" disabled=no \   new-packet-mark=voip passthrough=yes protocol=udp dscp=46   create a simple QoS policy for VoIP traffic: /queue tree add name=voip parent=global-out packet-mark=voip limit-at=384k \   max-limit=384k priority=1 queue=default   To prioritize web traffic using QoS on Mikrotik, you can follow these steps: Identify the web traffic that you want to prioritize: In this case, we assume that you want to prioritize HTTP and HTTPS traffic. Create a new packet mark: Go to IP -> Firewall -> Mangle and add a new rule to mark packets with protocol TCP and destination port 80 or 443 (HTTP and HTTPS respectively) with a new packet mark, for example "http_high_pr