Blog

Issues With DD-WRT GRE Forwarding PPTP

A quick fix for DD-WRT not forwarding GRE PPTP packets. Add the following commands to the startup commands (Administration->Commands): /sbin/insmod xt_connmark /sbin/insmod xt_mark /sbin/insmod nf_conntrack_proto_gre /sbin/insmod nf_conntrack_pptp /sbin/insmod nf_nat_proto_gre /sbin/insmod...
Read more

IP Tables Sample

#!/bin/bash service iptables stop iptables -P INPUT DROP iptables -P OUTPUT DROP iptables -P FORWARD DROP iptables -N okay iptables -A okay -p TCP –syn -j ACCEPT iptables -A okay...
Read more

Vitelity SIP Trunks Settings (Using IP Authentication)

Outgoing Settings PEER Details: type=friend dtmfmode=auto context=from-trunk ; (this could be ext-did or from-pstn as well) canreinvite=no host=outbound.vitelity.net Inbound Route Settings: PEER DETAILS: type=peer reinvite=yes port=5060 insecure=invite,port host=inbound22.vitelity.net fromdomain=inbound22.vitelity.net dtmfmode=auto...
Read more

BW (No Nat) Works

This case below works: pbx —> BW canreinvite=yes context=from-pstn dtmfmode=rfc2833 host=216.82.224.202 nat=yes outboundproxy=216.82.224.202 progressinbound=yes qualify=no type=peer disallow=all allow=g729...
Read more

Reset MySQL root password

If you have forgot the root MySQL password and need to reset it, use the following commands: Note: this example applies to RH flavors of linux (RH, Fedora, Centos, etc..)...
Read more