Olivier
2008-Mar-31 09:02 UTC
[asterisk-users] The most efficient way to know SIP phones IP addresses ?
Hi, Sometimes, you need to send requests to SIP phones either from Linux command line or from Asterisk dialplan. Which is the most efficient way to know a SIP phone IP address ? Today, I think I would use : asterisk -rx "sip show peer 692" | grep "Addr->IP" | awk '{print $3}' I'm wondering if anything more concise and efficient exists ? Regards -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20080331/79e1af09/attachment.htm
Simon Elliston Ball
2008-Mar-31 09:43 UTC
[asterisk-users] The most efficient way to know SIP phones IP addresses ?
You could try: asterisk -rx "database get SIP/Registry 101" | cut -f 2 -d ':' Which is not much shorter, but probably more efficient Simon Elliston Ball simon at simonellistonball.com http://www.simonellistonball.com/ On 31 Mar 2008, at 10:02, Olivier wrote:> Hi, > > Sometimes, you need to send requests to SIP phones either from Linux > command line or from Asterisk dialplan. > Which is the most efficient way to know a SIP phone IP address ? > > Today, I think I would use : > asterisk -rx "sip show peer 692" | grep "Addr->IP" | awk '{print $3}' > > I'm wondering if anything more concise and efficient exists ? > > Regards > _______________________________________________ > -- Bandwidth and Colocation Provided by http://www.api-digital.com -- > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users