Re: [asterisk-users] OT: Want to capture all SIP messages

2017-06-02 Thread Marcelo Terres
You can save individual calls with voipmonitor too, and it save the
info in a mysql db, allowing you to search the pcap files easily.
Marcelo H. Terres 
IM: mhter...@jabber.mundoopensource.com.br
https://www.mundoopensource.com.br
https://twitter.com/mhterres
https://linkedin.com/in/marceloterres


On 2 June 2017 at 17:00, ewieling  wrote:
>
> I use pcapsipdump.  It has the added advantage of splitting the captures
> into individual calls
>
>
>
> On 06/01/2017 06:09 AM, Tony Mountifield wrote:
>>
>> In article ,
>> Steve Edwards  wrote:
>>>
>>> On Wed, 31 May 2017, Steve Edwards wrote:
>>>
 I want to capture all SIP messages.

 I have about 30 hosts in about 6 colos.

 My first thought was dumpcap, but the output file name format bugs me.

 What do you use for long term SIP capture?
>>>
>>> A little more specificity...
>>>
>>> I'd like the capture to be in a series of files that can be 'rotated' or
>>> 'aged out' so that I can always have x days of traffic on hand but not
>>> have to prune the files to keep the storage requirements reasonable.
>>
>> On most of my systems I have a script sip-capture:
>>
>> ---
>> #!/bin/sh
>>
>> DATE=`date '+%Y%m%d-%H%M%S'`
>> FILE=sip-`hostname -s`-$DATE.pkt
>>
>> cd /var/tmp
>>
>> tcpdump -C 8 -i any -n -p -s 0 -w $FILE udp port 5060 > >/dev/null 2>&1 &
>> ---
>>
>> I start it in /etc/rc.d/rc.local for want of anywhere better.
>>
>> Being in /var/tmp, cron.daily/tmpwatch deletes files older than 30 days.
>> I could just have easily put them somewhere else and used the -W option
>> to tcpdump to remove old files on a rolling basis.
>>
>> Cheers
>> Tony
>
>
>
> --
> _
> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
>
> Check out the new Asterisk community forum at:
> https://community.asterisk.org/
>
> New to Asterisk? Start here:
>  https://wiki.asterisk.org/wiki/display/AST/Getting+Started
>
> asterisk-users mailing list
> To UNSUBSCRIBE or update options visit:
>   http://lists.digium.com/mailman/listinfo/asterisk-users

-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] OT: Want to capture all SIP messages

2017-06-02 Thread ewieling


I use pcapsipdump.  It has the added advantage of splitting the captures 
into individual calls



On 06/01/2017 06:09 AM, Tony Mountifield wrote:

In article ,
Steve Edwards  wrote:

On Wed, 31 May 2017, Steve Edwards wrote:


I want to capture all SIP messages.

I have about 30 hosts in about 6 colos.

My first thought was dumpcap, but the output file name format bugs me.

What do you use for long term SIP capture?

A little more specificity...

I'd like the capture to be in a series of files that can be 'rotated' or
'aged out' so that I can always have x days of traffic on hand but not
have to prune the files to keep the storage requirements reasonable.

On most of my systems I have a script sip-capture:

---
#!/bin/sh

DATE=`date '+%Y%m%d-%H%M%S'`
FILE=sip-`hostname -s`-$DATE.pkt

cd /var/tmp

tcpdump -C 8 -i any -n -p -s 0 -w $FILE udp port 5060 /dev/null 2>&1 
&
---

I start it in /etc/rc.d/rc.local for want of anywhere better.

Being in /var/tmp, cron.daily/tmpwatch deletes files older than 30 days.
I could just have easily put them somewhere else and used the -W option
to tcpdump to remove old files on a rolling basis.

Cheers
Tony



--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
 https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] OT: Want to capture all SIP messages

2017-06-01 Thread Tony Mountifield
In article ,
Steve Edwards  wrote:
> On Wed, 31 May 2017, Steve Edwards wrote:
> 
> > I want to capture all SIP messages.
> >
> > I have about 30 hosts in about 6 colos.
> >
> > My first thought was dumpcap, but the output file name format bugs me.
> >
> > What do you use for long term SIP capture?
> 
> A little more specificity...
> 
> I'd like the capture to be in a series of files that can be 'rotated' or 
> 'aged out' so that I can always have x days of traffic on hand but not 
> have to prune the files to keep the storage requirements reasonable.

On most of my systems I have a script sip-capture:

---
#!/bin/sh

DATE=`date '+%Y%m%d-%H%M%S'`
FILE=sip-`hostname -s`-$DATE.pkt

cd /var/tmp

tcpdump -C 8 -i any -n -p -s 0 -w $FILE udp port 5060 /dev/null 
2>&1 &
---

I start it in /etc/rc.d/rc.local for want of anywhere better.

Being in /var/tmp, cron.daily/tmpwatch deletes files older than 30 days.
I could just have easily put them somewhere else and used the -W option
to tcpdump to remove old files on a rolling basis.

Cheers
Tony
-- 
Tony Mountifield
Work: t...@softins.co.uk - http://www.softins.co.uk
Play: t...@mountifield.org - http://tony.mountifield.org

-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] OT: Want to capture all SIP messages

2017-05-31 Thread Steve Edwards

On Thu, 1 Jun 2017, Pete Mundy wrote:


Heya Steve

I use the same Jeff recommended.

Eg this command would capture SIP traffic in capture files up to 
100Mbytes each, with a maximum of 10 files in play and overwriting the 
oldest automatically:


tcpdump -i eth0 -w rollingSIPtrace. -C 100 -W 10 port 5060

Eventually you'd end up with files called 'rollingSIPtrace.00' through 
to 'rollingSIPtrace.09', and when rollingSIPtrace.09 reaches 100MB, 
overwriting of rollingSIPtrace.00 (then rollingSIPtrace.01 etc) would 
commence.


Does that achieve your goal?

Or was the problem that if your server restarts and the command 
auto-executes at boot time then the first file overwritten will be 
rollingSIPtrace.00, not necessarily whichever file was the last 
modified?


I'd like it to only overwrite the oldest, but server restarts are rare 
enough that I think this will be acceptable.


--
Thanks in advance,
-
Steve Edwards   sedwa...@sedwards.com  Voice: +1-760-468-3867 PST
https://www.linkedin.com/in/steve-edwards-4244281

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
 https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] OT: Want to capture all SIP messages

2017-05-31 Thread Pete Mundy
> On 1/06/2017, at 9:24 AM, Jeff LaCoursiere  wrote:
> 
> On 05/31/2017 04:13 PM, Steve Edwards wrote:
>> On Wed, 31 May 2017, Barry Flanagan wrote:
>> 
>>> sngrep
>> 
>> Isn't sngrep a great tool? Since discovering it my use of tcpdump/wireshark 
>> has cratered.
>> 
>> Being able to compare an INVITE that worked with one that didn't (with color 
>> highlighting) rocks.
> 
> On sites where I want an always available packet history I use tcpdump with 
> the -C and -W options to manage a ring buffer of X bytes.  Then you can use 
> cool tools like sngrep or really anything that operates on pcap files at whim.
> 
> Cheers,

Heya Steve

I use the same Jeff recommended.

Eg this command would capture SIP traffic in capture files up to 100Mbytes 
each, with a maximum of 10 files in play and overwriting the oldest 
automatically:

tcpdump -i eth0 -w rollingSIPtrace. -C 100 -W 10 port 5060

Eventually you'd end up with files called 'rollingSIPtrace.00' through to 
'rollingSIPtrace.09', and when rollingSIPtrace.09 reaches 100MB, overwriting of 
rollingSIPtrace.00 (then rollingSIPtrace.01 etc) would commence.

Does that achieve your goal?

Or was the problem that if your server restarts and the command auto-executes 
at boot time then the first file overwritten will be rollingSIPtrace.00, not 
necessarily whichever file was the last modified?

Pete




signature.asc
Description: Message signed with OpenPGP
-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] OT: Want to capture all SIP messages

2017-05-31 Thread Steve Edwards

On Wed, 31 May 2017, Matt Riddell wrote:


Easier just to use logrotate no?


Neither dumpcap or tcpdump know what to do with a HUP (I suspect I could 
configure logrotate to kill dumpcap and then start another instance) but 
I'm still in a position to have to enable/disable the logrotate script as 
I change which hosts need monitoring.


I know... First world problems :)

--
Thanks in advance,
-
Steve Edwards   sedwa...@sedwards.com  Voice: +1-760-468-3867 PST
https://www.linkedin.com/in/steve-edwards-4244281

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
 https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] OT: Want to capture all SIP messages

2017-05-31 Thread Jeff LaCoursiere

On 05/31/2017 04:13 PM, Steve Edwards wrote:

On Wed, 31 May 2017, Barry Flanagan wrote:


sngrep


Isn't sngrep a great tool? Since discovering it my use of 
tcpdump/wireshark has cratered.


Being able to compare an INVITE that worked with one that didn't (with 
color highlighting) rocks.


On sites where I want an always available packet history I use tcpdump 
with the -C and -W options to manage a ring buffer of X bytes.  Then you 
can use cool tools like sngrep or really anything that operates on pcap 
files at whim.


Cheers,

j

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
 https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] OT: Want to capture all SIP messages

2017-05-31 Thread Steve Edwards

On Wed, 31 May 2017, Barry Flanagan wrote:


sngrepĀ 


Isn't sngrep a great tool? Since discovering it my use of 
tcpdump/wireshark has cratered.


Being able to compare an INVITE that worked with one that didn't (with 
color highlighting) rocks.


--
Thanks in advance,
-
Steve Edwards   sedwa...@sedwards.com  Voice: +1-760-468-3867 PST
https://www.linkedin.com/in/steve-edwards-4244281-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] OT: Want to capture all SIP messages

2017-05-31 Thread Matt Riddell

> On 31/05/2017, at 3:52 PM, Steve Edwards  wrote:
> 
> On Wed, 31 May 2017, Daniel Tryba wrote:
> 
>> On Wed, May 31, 2017 at 01:39:25PM -0700, Steve Edwards wrote:
 What bugs you about the output format?
>>> 
>>> It's been a while, but as I recollect, it included the date/timestamp in the
>>> file name of the 'ring buffer' which meant that each time the host was
>>> rebooted, dumpcap didn't know the files from the previous run should be
>>> deleted when they 'aged out.'
>> 
>> Solvable by by writing a cleanup script that deletes files over a
>> specific age, just a basic find in the daily crontab:
>> find /path/to/captures -type f -name 'pattern*' -mtime +X -exec rm {} \;
> 
> Been there, done that. Just 1 more thing for me to maintain :)


Easier just to use logrotate no?

That's what it's designed for.

--
Cheers,

Matt Riddell
___

http://www.venturevoip.com/news.php (Daily Asterisk News)
http://www.venturevoip.com/pabx_on_disk.php (PABX on a Disk)
http://www.venturevoip.com/exchange.php (Full ITSP Solution)
http://www.venturevoip.com/cc.php (Call Centre Solutions)

-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] OT: Want to capture all SIP messages

2017-05-31 Thread Steve Edwards

On Wed, 31 May 2017, Daniel Tryba wrote:


On Wed, May 31, 2017 at 01:39:25PM -0700, Steve Edwards wrote:

What bugs you about the output format?


It's been a while, but as I recollect, it included the date/timestamp in the
file name of the 'ring buffer' which meant that each time the host was
rebooted, dumpcap didn't know the files from the previous run should be
deleted when they 'aged out.'


Solvable by by writing a cleanup script that deletes files over a
specific age, just a basic find in the daily crontab:
find /path/to/captures -type f -name 'pattern*' -mtime +X -exec rm {} \;


Been there, done that. Just 1 more thing for me to maintain :)

--
Thanks in advance,
-
Steve Edwards   sedwa...@sedwards.com  Voice: +1-760-468-3867 PST
https://www.linkedin.com/in/steve-edwards-4244281

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
 https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] OT: Want to capture all SIP messages

2017-05-31 Thread Daniel Tryba
On Wed, May 31, 2017 at 01:39:25PM -0700, Steve Edwards wrote:
> >What bugs you about the output format?
> 
> It's been a while, but as I recollect, it included the date/timestamp in the
> file name of the 'ring buffer' which meant that each time the host was
> rebooted, dumpcap didn't know the files from the previous run should be
> deleted when they 'aged out.'

Solvable by by writing a cleanup script that deletes files over a
specific age, just a basic find in the daily crontab:
find /path/to/captures -type f -name 'pattern*' -mtime +X -exec rm {} \;


-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] OT: Want to capture all SIP messages

2017-05-31 Thread Steve Edwards

On Wed, 31 May 2017, Steve Edwards wrote:


I want to capture all SIP messages.

I have about 30 hosts in about 6 colos.

My first thought was dumpcap, but the output file name format bugs me.

What do you use for long term SIP capture?


A little more specificity...

I'd like the capture to be in a series of files that can be 'rotated' or 
'aged out' so that I can always have x days of traffic on hand but not 
have to prune the files to keep the storage requirements reasonable.


--
Thanks in advance,
-
Steve Edwards   sedwa...@sedwards.com  Voice: +1-760-468-3867 PST
https://www.linkedin.com/in/steve-edwards-4244281

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
 https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] OT: Want to capture all SIP messages

2017-05-31 Thread Steve Edwards

On Wed, May 31, 2017 at 12:36:47PM -0700, Steve Edwards wrote:

I want to capture all SIP messages.

I have about 30 hosts in about 6 colos.

My first thought was dumpcap, but the output file name format bugs me.

What do you use for long term SIP capture?


On Wed, 31 May 2017, Daniel Tryba wrote:


What bugs you about the output format?


It's been a while, but as I recollect, it included the date/timestamp in 
the file name of the 'ring buffer' which meant that each time the host was 
rebooted, dumpcap didn't know the files from the previous run should be 
deleted when they 'aged out.'


--
Thanks in advance,
-
Steve Edwards   sedwa...@sedwards.com  Voice: +1-760-468-3867 PST
https://www.linkedin.com/in/steve-edwards-4244281

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
 https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] OT: Want to capture all SIP messages

2017-05-31 Thread Barry Flanagan
On 31 May 2017 at 21:29, Barry Flanagan  wrote:

> Voipmonitor, or sngrep
>
>
Sorry, didn't see the "long term" bit. voipmonitor or Homer are your best
best.

-Barry Flanagan


> -Barry Flanagan
>
>
>
>
>
>
> On 31 May 2017 at 20:36, Steve Edwards  wrote:
>
>> I want to capture all SIP messages.
>>
>> I have about 30 hosts in about 6 colos.
>>
>> My first thought was dumpcap, but the output file name format bugs me.
>>
>> What do you use for long term SIP capture?
>>
>> --
>> Thanks in advance,
>> -
>> Steve Edwards   sedwa...@sedwards.com  Voice: +1-760-468-3867 PST
>> https://www.linkedin.com/in/steve-edwards-4244281
>>
>> --
>> _
>> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
>>
>> Check out the new Asterisk community forum at:
>> https://community.asterisk.org/
>>
>> New to Asterisk? Start here:
>>  https://wiki.asterisk.org/wiki/display/AST/Getting+Started
>>
>> asterisk-users mailing list
>> To UNSUBSCRIBE or update options visit:
>>   http://lists.digium.com/mailman/listinfo/asterisk-users
>>
>
>
-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] OT: Want to capture all SIP messages

2017-05-31 Thread Barry Flanagan
Voipmonitor, or sngrep

-Barry Flanagan






On 31 May 2017 at 20:36, Steve Edwards  wrote:

> I want to capture all SIP messages.
>
> I have about 30 hosts in about 6 colos.
>
> My first thought was dumpcap, but the output file name format bugs me.
>
> What do you use for long term SIP capture?
>
> --
> Thanks in advance,
> -
> Steve Edwards   sedwa...@sedwards.com  Voice: +1-760-468-3867 PST
> https://www.linkedin.com/in/steve-edwards-4244281
>
> --
> _
> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
>
> Check out the new Asterisk community forum at:
> https://community.asterisk.org/
>
> New to Asterisk? Start here:
>  https://wiki.asterisk.org/wiki/display/AST/Getting+Started
>
> asterisk-users mailing list
> To UNSUBSCRIBE or update options visit:
>   http://lists.digium.com/mailman/listinfo/asterisk-users
>
-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] OT: Want to capture all SIP messages

2017-05-31 Thread Daniel Tryba
On Wed, May 31, 2017 at 12:36:47PM -0700, Steve Edwards wrote:
> I want to capture all SIP messages.
> 
> I have about 30 hosts in about 6 colos.
> 
> My first thought was dumpcap, but the output file name format bugs me.
> 
> What do you use for long term SIP capture?

What bugs you about the output format? There are multiple ways to
display stored information, wireshark can be extremely usefull (and
unstable) or just dump plain text by replaying the pcap with ngrep.

Ways I used so far:

-tshark to produce pcap file (-b duration:x to split up files into time
 intervals
-"sip set log on" to store it plain text in asterisk log files (or pjsip
 set logger on)
-ngrep -W byline to store it in 

Will look into in the near future:
-Homer via res_hep_pjsip
-voipmonitor (didn't know about till just now thanks to Marks reply)

-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] OT: Want to capture all SIP messages

2017-05-31 Thread Mark Wiater

On 5/31/2017 3:36 PM, Steve Edwards wrote:

I want to capture all SIP messages.

I have about 30 hosts in about 6 colos.

My first thought was dumpcap, but the output file name format bugs me.

What do you use for long term SIP capture?


voipmonitor is what you want.

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
 https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


[asterisk-users] OT: Want to capture all SIP messages

2017-05-31 Thread Steve Edwards

I want to capture all SIP messages.

I have about 30 hosts in about 6 colos.

My first thought was dumpcap, but the output file name format bugs me.

What do you use for long term SIP capture?

--
Thanks in advance,
-
Steve Edwards   sedwa...@sedwards.com  Voice: +1-760-468-3867 PST
https://www.linkedin.com/in/steve-edwards-4244281

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
 https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users