info
copy a folder under linux server to windows server
MS-Windows shared folder: You can share data between windows and linux system for such use : For example you would like to access MS-Windows share called //windowsserver/sharename by mounting to /mnt/win directory under Linux system. So execute these commands: mkdir -p /mnt/win mount -t smbfs -o username=winntuser,password=mypassword //windowsserver/sharename /mnt/win Next create the password file /etc/sambapasswords: … Read more
Recharge Solution | DTH recharge | Datacard Recharge | Mobile Recharge
Recharge Solution | DTH recharge | Datacard Recharge | Mobile Recharge Recharge solution a zero costing. Mail us: info@eduguru.in | info@snettechnology.com [contact-form][contact-field label=’Name’ type=’name’ required=’1’/][contact-field label=’Phone Number’ type=’text’ required=’1’/][contact-field label=’Email’ type=’email’ required=’1’/][contact-field label=’Website’ type=’url’/][contact-field label=’Comment’ type=’textarea’ required=’1’/][/contact-form] mail ur requirement to replytosatya@gmail.com
Story behind your date of Birth !! – Self Confidence
If U were born on the 1st, 10th, 19th, 28th of any month U r number 1… If U were born on the 2nd, 11th, 20th, 29th of any month then U r number 2…If U were born on the 3rd, 12th, 21st, 30th of any month then U r number 3…If U were born … Read more
Adding Listen, Whisper, and Barge to FreePBX or Asterisk
Adding Listen, Whisper, and Barge to FreePBX or Asterisk Listen: Monitor an agents call. The manager can hear both the spied-on and bridged channels, but they cannot hear the manager. Whisper: Whisper to the agent. The manager can hear both the spied-on and bridged channels, and the spied-on channel (agent) can also hear the manager, … Read more
Allow Asterisk Manager Access via HTTP
Make sure you have both “enabled = yes” and “webenabled = yes” setup in /etc/asterisk/manager.conf You may also use “httptimeout” to set a default timeout for HTTP connections. Make sure you have a manager username/secret Once those configurations are complete you can reload or restart Asterisk and you should be able to point your web … Read more
Asterisk Auto Recording even Manual Call on Phone using Monitor
exten => _1NXXNXXXXXX,1,AGI(agi://127.0.0.1:4577/call_log) exten => _1NXXNXXXXXX,2,Set(CALLFILENAME=${CALLERID(all)}-${EXTEN}-${STRFTIME(${EPOCH},,%Y%m%d-%H%M%S)}) exten => _1NXXNXXXXXX,3,Monitor(wav,${CALLFILENAME},m) exten => _1NXXNXXXXXX,4,Dial(${SIPTRUNK}/${EXTEN},,tTor) exten => _1NXXNXXXXXX,5,Congestion exten => _1NXXNXXXXXX,103,Congestion exten => _011.,1,AGI(agi://127.0.0.1:4577/call_log) exten => _011.,2,Set(CALLFILENAME=${CALLERID(all)}-${EXTEN}-${STRFTIME(${EPOCH},,%Y%m%d-%H%M%S)}) exten => _011.,3,Monitor(wav,${CALLFILENAME},m) exten => _011.,4,Dial(${SIPTRUNK}/${EXTEN},,tTor) exten => _011.,5,Congestion exten => _011.,103,Congestion