Hi I was doing some bandwidth testing, and my incomming usage is 36% more than my outgoing bandwidth. The setup is IAX2 trunking using GSM codec. Is there any obvious reason I am overlooking to figure out why there is such a big difference between the two.? I am using CVS-head September 3rd, maybe there is a version skew? Any suggestions will be appreciated. Thanks Clive
Clive wrote:> Hi > > I was doing some bandwidth testing, and my incomming usage is > 36% more than my outgoing bandwidth.In my case the calls come in separately (i.e. untrunked) and get trunked by the Asterisk machine and sent out. This causes an imbalance. Are your calls coming from many to one or one to one? -- Cheers, Matt Riddell _______________________________________________ http://www.sineapps.com/news.php (Daily Asterisk News - html) http://www.sineapps.com/rssfeed.php (Daily Asterisk News - rss)
On 21 Sep 2005 at 19:48, Matt Riddell wrote:> Clive wrote: > > Hi > > > > I was doing some bandwidth testing, and my incomming usage is > > 36% more than my outgoing bandwidth. > > In my case the calls come in separately (i.e. untrunked) and get trunked by > the Asterisk machine and sent out. This causes an imbalance. > > Are your calls coming from many to one or one to one? > > -- > Cheers, > > Matt RiddellHi My setup is: telco-----asterisk----(voip)-----asterisk{ITSP}----telco so there should be an almost balanced transmit and receive rate on the voip leg. My suspicion is that perhaps the packets are not getting trunked on the ITSP side. regards Clive> _______________________________________________ > > http://www.sineapps.com/news.php (Daily Asterisk News - html) > http://www.sineapps.com/rssfeed.php (Daily Asterisk News - rss) > _______________________________________________ > --Bandwidth and Colocation sponsored by Easynews.com -- > > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users
On Wednesday 21 September 2005 07:27, Clive wrote:> My setup is: telco-----asterisk----(voip)-----asterisk{ITSP}----telcoAre both your asterisk boxes peered to each other? IIRC trunking ONLY works between peers. -A.
Andrew Kohlsmith wrote:> On Wednesday 21 September 2005 07:27, Clive wrote: > >>My setup is: telco-----asterisk----(voip)-----asterisk{ITSP}----telco > > > Are both your asterisk boxes peered to each other? IIRC trunking ONLY works > between peers.If you do iax2 show peers in the console, it should show a (T) for trunked connections. -- Cheers, Matt Riddell _______________________________________________ http://www.sineapps.com/news.php (Daily Asterisk News - html) http://www.sineapps.com/rssfeed.php (Daily Asterisk News - rss)
I have two Asterisk boxes that I thought were trunked, but based on not seeing the (T) in iax2 show peers, now I'm not sure. Server 192.168.xxx.1 extensions.conf has: Exten => _2XXX,1,Dial(IAX2/interoffice:password@192.168.xxx.2/${EXTEN}) Server 192.168.xxx.1 iax.conf has: [general] trunk=yes [interoffice] type=friend host=dynamic context=extensions secret=password disallow=all allow=g729 Server 192.168.xxx.2 extensions.conf has: Exten => _3XXX,1,Dial(IAX2/interoffice:password@192.168.xxx.1/${EXTEN}) Server 192.168.xxx.2 iax.conf has: [general] trunk=yes [interoffice] type=friend host=dynamic context=extensions secret=password disallow=all allow=g729 Should I plug in the actual IP addresses instead of host=dynamic? Also, I do not currently have "register" statements. In iax.conf for these. -----Original Message----- From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Matt Riddell Sent: Wednesday, September 21, 2005 10:56 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] iax2 trunking wackyness Andrew Kohlsmith wrote:> On Wednesday 21 September 2005 07:27, Clive wrote: > >>My setup is:telco-----asterisk----(voip)-----asterisk{ITSP}----telco> > > Are both your asterisk boxes peered to each other? IIRC trunking ONLY> works between peers.If you do iax2 show peers in the console, it should show a (T) for trunked connections. -- Cheers, Matt Riddell _______________________________________________ http://www.sineapps.com/news.php (Daily Asterisk News - html) http://www.sineapps.com/rssfeed.php (Daily Asterisk News - rss) _______________________________________________ --Bandwidth and Colocation sponsored by Easynews.com -- Asterisk-Users mailing list Asterisk-Users@lists.digium.com http://lists.digium.com/mailman/listinfo/asterisk-users To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users The contents of this email message and any attachments are confidential and are intended solely for addressee. The information may also be legally privileged. This transmission is sent in trust, for the sole purpose of delivery to the intended recipient. If you have received this transmission in error, any use, reproduction or dissemination of this transmission is strictly prohibited. If you are not the intended recipient, please immediately notify the sender by reply email and delete this message and its attachments, if any.
On Wednesday 21 September 2005 13:52, Adam Robins wrote:> Should I plug in the actual IP addresses instead of host=dynamic? Also, > I do not currently have "register" statements. > In iax.conf for these.register => each to the other. -A.