Custom Search


Main Contents

Safe1405 - Automated or Interactive Asterisk backup solution -with auto FTP upload

April 27, 2009

Summary:

Safe1405 is a bash script that will backup the popular Asterisk directories and place them in a tar.gz file. The script can be used in 1 of 2 modes.
The first mode is interactive, with a menu to choose:

  • Backup Everything (/etc/asterisk, Voicemail, Recordings, Sounds)
  • Just VM
  • Just Recordings
  • Just Sounds

After the file is created, it will prompt to upload to a remote FTP server.

The second mode is silent, and is best suited for automated execution via cron or at.
Just enable the UNATTENDED and PUT_FTP variables by setting them to “1″.  You can directly edit the paths to each directory if yours are non-standard.

The script can be directly downloaded here: Safe1405 Download Link

Code:

#!/bin/bash
# Safe1405
# Author: Gregg Hansen - www.thiscoolsite.com
# Safely tar and gzip Asterisk files

# Version 1.0 20090427
#-Backs up all important Asterisk files - Tar/Gz
#-Choose the file name, or Date by default
#-GUI-like. Able to be silent for cron, or interactive

#EDIT the below ABSOLUTE paths to match your directory structure:
VAR_LIB=”/var/lib/asterisk”
ETC_AST=”/etc/asterisk”
VM=”/var/spool/asterisk/voicemail”
MON=”/var/spool/asterisk/monitor”

#Date Var
FILEDATE=”$(date +%Y%m%d)”
#Your ServerName
#Filename is FILEDATE-SERVERNAME.tar.gz
SERVERNAME=”Chicago-Ast01″

#Enable unattended mode/Remote FTP put (useful for Cron):
# Backup of /etc/asterisk ONLY (default)
# 1 = On, 0 = Off
UNATTENDED=”0″
PUT_FTP=”0″

#FTP Credentials
FTP_IP=”127.0.0.1″
FTP_USER=”admin”
FTP_PASS=”secret”

###–START CODE—###

### Interactive Mode Functions ###
prompt()
{
cat <<EOF

Safe1405 Backup

1) Everything
2) /etc/asterisk
3) Voicemail
4) Recordings
5) Sounds
Q) Quit

EOF

echo -n “Prompt> ”
read INPUT
case $INPUT in
1) everything;;
2) etc-ast;;
3) vm;;
4) recordings;;
5) sounds;;
q) exit;;
Q) exit;;
esac

}
everything()
{
FILENAME=”$FILEDATE-$SERVERNAME-FULL.tar.gz”
tar cfvz $FILENAME $ETC_AST $VM $MON $VAR_LIB
ftpprompt
}
etc-ast()
{
FILENAME=”$FILEDATE-$SERVERNAME-ETC_AST.tar.gz”
tar cfvz $FILENAME $ETC_AST
ftpprompt
}
vm()
{
FILENAME=”$FILEDATE-$SERVERNAME-VM.tar.gz”
tar cfvz $FILENAME $VM
ftpprompt
}
recordings()
{
FILENAME=”$FILEDATE-$SERVERNAME-REC.tar.gz”
tar cfvz $FILENAME $MON
ftpprompt
}
sounds()
{
FILENAME=”$FILEDATE-$SERVERNAME-SOUNDS.tar.gz”
tar cfvz $FILENAME $VAR_LIB
ftpprompt
}
ftpprompt()
{
echo -en “Upload $FILENAME to FTP? (y or n) ”
read INPUT
if [ "$INPUT" == "y" ]; then
quietftp
fi
}

### Unattended Mode Functions ###
silent()
{
tar cfvz $FILEDATE-$SERVERNAME-ETC-AST.tar.gz $ETC_AST ##Uncomment##$VM #$MON #$VAR_LIB
FILENAME=”$FILEDATE-$SERVERNAME-ETC-AST.tar.gz”
}

quietftp()
{
ftp -ivn <<EOF
open $FTP_IP

user $FTP_USER $FTP_PASS
binary
put $FILENAME
bye
EOF
}
#### Start Program Flow ###
clear
#Unattended Function Call(s)
if [ "$UNATTENDED" == "1" ]; then
silent
if [ "$PUT_FTP" == "1" ]; then
quietftp
exit
fi
exit
fi
#Interactive Function Calls
prompt
exit

###–END CODE—###
Leave a comment if you have questions/suggestions or would like help setting up the script.
-Gregg

Filed under: Asterisk VoIP, Linux, Tech, Uncategorized | Comments (2)

SourceCode: QuickKey Portable for Windows

April 17, 2009

Summary:

“QuickKey” is an application I created with AutoIt to take text from the clipboard and save it to a hot-key combo. I needed it to do repetitive form filling. It’s written to be lean, quick and dirty. Here are the usage instructions:

  1. When launched for the first time, it creates and populates the “Clips” directory with it’s required files.
  2. The hotkeys to save text from the clipboard are all “CTRL” + “SHIFT” + any number key or function key from the top 2 rows of your keyboard (total of 22 available saved clips).
  3. The hotkeys to use a saved clip is simply “CTRL” + the number or function key you used when saving that clip.
  4. Example: “CTRL” + “SHIFT” + “6″ saves text from the clipboard to the 6.txt file. “CTRL” + “6″ sends the contents of the 6.txt file. Its like pasting it, but its more like automated typing.

Source Code:

(more…)

Filed under: Tech | Comments (0)

Fastest Route to Single Booting Linux on the new 2009 Mac Mini

March 30, 2009

See IMPORTANT NOTES section below… there’s currently a catch with rebooting….
If you find a fix for the reboot issue, please leave a comment (that will email me)..

Special thanks to Victor Costan http://blog.costan.us

Step 1 - Get your linux on the HD
-Power On / Insert Linux Install Disk With Kernel 2.6.26 or higher / Power Off
-Power On / Wait 4 Seconds / Hold “c” key to boot from DVD drive
-I couldn’t get linux to work after deleting the EFI partition, so don’t.
-Get to your distro’s partitioning utility and delete the main MAC partition
-After deleting the big partition, create your linux partitions
-If you delete the EFI partition on accident, the Leopard install will fix it
-Direct the installer to put GRUB on the first sector of your /boot partition
-Install whatever other options you want and let installer run
-Remove Linux Install Disk / Insert MAC OSX Install Disk / Reboot

Step 2 - Tell MAC’s Open Firmware What To Do
-Power On / Wait 4 Seconds / Hold “c” key to boot from DVD drive
-Get to “Terminal” under “Utilities” on MAC Installation Setup
-Type the following command to determine how your /boot partition was identified
diskutil list
-Type the following command to set that partition as bootable (mine was disk0s2)
bless –device /dev/disk0s2 –setboot –legacy –verbose

IMPORTANT NOTES
-After these steps, linux will boots fine but when trying to reload it will hangs (more likely the shutdown process hangs).  It appears to require a hard reset at this time…bummer.
-Earlier Kernels (Such as 2.6.18 in Centos 5.2 and lower) may install successfully but do not properly load drivers for all the hardware once installed.

WINDOWS KEYBOARD NOTES
Hold “c” key to boot from DVD drive
Hold “F12″ key to eject the DVD drive
Hold “ALT” to emulate the option key (not used in this procedure)

SOURCES

Debian Success Documented here (by Thomas Glanzmann): http://lkml.indiana.edu/hypermail/linux/kernel/0903.1/01828.html

Discussion and bless command from Veiho in Ubuntuforums :  http://ubuntuforums.org/archive/index.php/t-493393.html

Status on reload problem being worked by ubuntu developers: https://bugs.launchpad.net/ubuntu/+source/linux

Filed under: Linux, Mac, Tech | Comments (0)

*NUX Terminal Junkies.

March 19, 2009

This is probably the first post I’ve done that links to content that I had no part in creating/publishing. Dave over at Neozaz.com posted an great article about the pros and cons of different terminals/OS(s) and his experience over the years.

Check it out here.

Filed under: Tech | Comments (0)

Browse the Web Securely and Safely on Public WiFi - Encrypt your Traffic

February 26, 2009

Whenever you are on a Public WiFi connection, you need to have your traffic encrypted so no one can snoop on what you are doing or poison your DNS/etc.   Since every wireless packet is broadcast over the open-air, anyone can snoop in on your traffic.  Unencrypted sessions can be captured and your precious passwords grabbed by the evil ‘Cracker’ (Cracker=Bad Hacker).  I briefly discussed this in a previous post when I was in Japan, but it’s time to provide a detailed howto because too many people are getting taken advantage of.

Prerequisites:
A linux box that you have public access to and a valid username
Windows, Linux, or Mac as your OS for the client machine

Windows:
1. Download PuTTY and save the .exe to your desktop
2. Make sure you have Firefox installed
3. Open PuTTY
4. Type in the address or hostname of your public Linux server that you have access to

ss-05-20090225-1516
5. Expand the +SSH option in the left-pane of the PuTTY program
6. Click on ‘Tunnels’
7. Type in 8888 for the Source port
8. Click on the ‘Dynamic’ radio button below
ss-06-20090225-1517
9. Click Add
10. Make sure it looks like my screenshot
ss-07-20090225-1517
11. Click on ‘Open’ and connect to your Linux server
12. Log in with your user and password
13. Once logged in, minimize your PuTTY Session and switch to Firefox
14. In Firefox: Click on ‘Tools’ at the top, then Options
15. Click on the Advanced tab
16. Click on the Network sub-tab
17. Click on Settings
18. Click the ‘Manual Proxy Configuration’ radio button
19. The line that says ‘SOCKS Host’ put ‘localhost’ and port ‘8888′, SOCKS V5 below
ss-08-20090226-1248
20. Click OK

Now all of your TCP web traffic will run through the encrypted SSH tunnel to your Linux server, then go out to the internet.  Lets take it one step further and have your DNS lookups sent through the tunnel too.  :)

In Firefox:
1. In the address bar, type:     ‘about:config’ and hit enter (don’t include the ticks)
2. Hit OK, I know what I’m doing on the prompt
3. Search for DNS in the top field and click on the line that reads:
network.proxy.socks_remote_dns until it is set to ‘TRUE’
ss-09-20090226-1249
4. Type in ‘whatismyip.com’ in the address bar and see if it shows the IP of your Linux server’s Public IP and not the Public IP of the network you are currently on.  If you really want to see the magic happening, open up wireshark and watch the packets go by as you browse the web.  All SSH packets with the exception of UDP.

If you have any questions or help, leave a comment and I will assist.

Happy (Safe) Browsing!
–Gregg

Filed under: Linux, Tech | Comments (0)

FreePBX Round Robin Trunks Load-Balance/Distribute Calls

February 4, 2009

I’ve seen several posts around the net from users that want to distribute the calls across multiple trunks with FreePBX.  The main reason being that they have a deal with a provider, and each line has 4,000 minutes for free, etc.  After looking around at the different methods to accomplish this, it become very clear what must happen.

If your trunks are FXO ports/Analog then you are in luck.   :)

Go to the FreePBX interface, click on Trunks.
-Add a trunk
-Put ‘r0′ for the Zap identifier (that’s R zero)
-Submit Changes
-Set the round robin Zap as your outbound route and enjoy!

Simple and clean, enjoy.

Filed under: Asterisk VoIP, Linux, Tech | Comments (0)