From ctshyd218 at gmail.com Mon Aug 24 06:37:14 2015 From: ctshyd218 at gmail.com (jam li) Date: Mon, 24 Aug 2015 17:07:14 +0530 Subject: [karoo-users] karoo bridge installation Message-ID: Dear Sir, I am new bee to voip, we are using freeswitch to provide voip solutions, we want to use karoo bridge, can you please guide me how to install and configure karoo. i am unable download repo from http://bridge.ossapp.com/karoo/karoo-1.5.0-centos.repo given in your tutorial. Please help... Thank you Regards -------------- next part -------------- An HTML attachment was scrubbed... URL: From joegen at ossapp.com Mon Aug 24 07:05:36 2015 From: joegen at ossapp.com (Joegen E. Baclor) Date: Mon, 24 Aug 2015 20:05:36 +0800 Subject: [karoo-users] karoo bridge installation In-Reply-To: References: Message-ID: <55DB0890.7080001@ossapp.com> The most recent repository is http://ossapp.com/karoo/2.0.1/CentOS_6/x86_64/ On 08/24/2015 07:37 PM, jam li wrote: > Dear Sir, > > I am new bee to voip, we are using freeswitch to provide voip > solutions, we want to use karoo bridge, can you please guide me how to > install and configure karoo. i am unable download repo from > http://bridge.ossapp.com/karoo/karoo-1.5.0-centos.repo given in your > tutorial. > > > Please help... > > Thank you > Regards > > > _______________________________________________ > karoo-users mailing list > karoo-users at ossapp.com > http://www.ossapp.com/mailman/listinfo/karoo-users_ossapp.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From ctshyd218 at gmail.com Sat Aug 29 05:43:09 2015 From: ctshyd218 at gmail.com (jam li) Date: Sat, 29 Aug 2015 16:13:09 +0530 Subject: [karoo-users] karoo config problem Message-ID: I installed karoo on my centos 64 bit server, and have freeswitch server also installed on the same machine, but when i try to login freeswtich user(sip users) from my android softphone i am unable to login. can you please guide me what could be the problem. Below are my karoo configuration details: I configured karoo by reading the tutorial given in http://www.ossapp.com/karoo/Cookbook.pdf *I configured karoo as follows:* *my /etc/karoo.conf.d/config/sip.cfg file looks as follows.* listeners : { interfaces = ( { default = true; // Set to true if you want peripheral services to use this transport as the default interface. ip-address = "209.121.111.211"; // The Host IP Address //external-address = ""; // (Optional) External IP address if the virtual IP is behind a port mapped firewall tcp-enabled = true; // Enable TCP transport udp-enabled = true; // Enable UDP Transport //ws-enabled = true; // Enable WebSocket Transport //tls-enabled = true; // Enable TLS Transport sip-port = 5060; // Port for TCP and UDP //tls-port = 5061; // Port for TLS //ws-port = 5062; // Port for WebSocket //subnets = "0.0.0.0/0"; // (Optional) Comma delimited subnets reachable by this transport } ); *rest all in this file is same.* ----------------------------------------------------------------------------------------------------------- *i created a new file abc.js in /etc/karoo.con.d/routes/ directory and added this funtion to it.* function is_mysipdomain_routable(profile) { var ip = profile.sipMessage.getSourceAddress(); var domain = profile.sipMessage.getFromHost(); if (ip != "209.121.111.211" && domain == "209.121.111.211") { profile.setTargetAddress( "udp", "209.121.111.211", "5060"); return true; }else { return false; } } *below is what i added to route.js file after commenting the all-ready existing isRoutable function.* Route.prototype.isRoutable = function() { if (is_mysipdomain_routable(this)) return true; else return false; } -------------- next part -------------- An HTML attachment was scrubbed... URL: From joegen at ossapp.com Sat Aug 29 18:12:28 2015 From: joegen at ossapp.com (Joegen E. Baclor) Date: Sun, 30 Aug 2015 07:12:28 +0800 Subject: [karoo-users] karoo config problem In-Reply-To: References: Message-ID: <55E23C5C.4000205@ossapp.com> I assume you have freeswitch running on a different port other than 5060? Let's assume FS is ilstening on port 5070 on the same box as karoo, then you must set the target as follows profile.setTargetAddress( "udp", "209.121.111.211", "5070"); Attach /var/logs/karoo/sbc.log when reporting issues. On 08/29/2015 06:43 PM, jam li wrote: > > I installed karoo on my centos 64 bit server, and have freeswitch > server also installed on the same machine, but when i try to login > freeswtich user(sip users) from my android softphone i am unable to > login. can you please guide me what could be the problem. > > Below are my karoo configuration details: > > > I configured karoo by reading the tutorial given in > http://www.ossapp.com/karoo/Cookbook.pdf > > > *I configured karoo as follows: > > * > *my /etc/karoo.conf.d/config/sip.cfg file looks as follows.* > > listeners : > { > interfaces = ( > { > default = true; // Set to true if you want peripheral services > to use this transport as the default interface. > ip-address = "209.121.111.211"; // The Host IP Address > //external-address = ""; // (Optional) External IP address if > the virtual IP is behind a port mapped firewall > tcp-enabled = true; // Enable TCP transport > udp-enabled = true; // Enable UDP Transport > //ws-enabled = true; // Enable WebSocket Transport > //tls-enabled = true; // Enable TLS Transport > sip-port = 5060; // Port for TCP and UDP > //tls-port = 5061; // Port for TLS > //ws-port = 5062; // Port for WebSocket > //subnets = "0.0.0.0/0 "; // (Optional) > Comma delimited subnets reachable by this transport > } ); > * > * > *rest all in this file is same.* > > ----------------------------------------------------------------------------------------------------------- > > *i created a new file abc.js in /etc/karoo.con.d/routes/ directory and > added this funtion to it.* > > function is_mysipdomain_routable(profile) > { > var ip = profile.sipMessage.getSourceAddress(); > var domain = profile.sipMessage.getFromHost(); > if (ip != "209.121.111.211" && domain == "209.121.111.211") > { > profile.setTargetAddress( > "udp", > "209.121.111.211", > "5060"); > return true; > }else > { > return false; > } > } > > *below is what i added to route.js file after commenting the all-ready > existing isRoutable function.* > > Route.prototype.isRoutable = function() > { > if (is_mysipdomain_routable(this)) > return true; > else > return false; > } > > > _______________________________________________ > karoo-users mailing list > karoo-users at ossapp.com > http://www.ossapp.com/mailman/listinfo/karoo-users_ossapp.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From ctshyd218 at gmail.com Mon Aug 31 03:25:37 2015 From: ctshyd218 at gmail.com (jam li) Date: Mon, 31 Aug 2015 13:55:37 +0530 Subject: [karoo-users] karoo is creating files with name core.9999 Message-ID: Karoo is creating lots of files with name core.number each file is 237 mb size this is making my hard disk memory full. How to solve this problem. please help. If log file is needed to solve this problem i will send it. -------------- next part -------------- An HTML attachment was scrubbed... URL: From ctshyd218 at gmail.com Mon Aug 24 05:37:14 2015 From: ctshyd218 at gmail.com (jam li) Date: Mon, 24 Aug 2015 17:07:14 +0530 Subject: [karoo-users] karoo bridge installation Message-ID: Dear Sir, I am new bee to voip, we are using freeswitch to provide voip solutions, we want to use karoo bridge, can you please guide me how to install and configure karoo. i am unable download repo from http://bridge.ossapp.com/karoo/karoo-1.5.0-centos.repo given in your tutorial. Please help... Thank you Regards -------------- next part -------------- An HTML attachment was scrubbed... URL: From joegen at ossapp.com Mon Aug 24 06:05:36 2015 From: joegen at ossapp.com (Joegen E. Baclor) Date: Mon, 24 Aug 2015 20:05:36 +0800 Subject: [karoo-users] karoo bridge installation In-Reply-To: References: Message-ID: <55DB0890.7080001@ossapp.com> The most recent repository is http://ossapp.com/karoo/2.0.1/CentOS_6/x86_64/ On 08/24/2015 07:37 PM, jam li wrote: > Dear Sir, > > I am new bee to voip, we are using freeswitch to provide voip > solutions, we want to use karoo bridge, can you please guide me how to > install and configure karoo. i am unable download repo from > http://bridge.ossapp.com/karoo/karoo-1.5.0-centos.repo given in your > tutorial. > > > Please help... > > Thank you > Regards > > > _______________________________________________ > karoo-users mailing list > karoo-users at ossapp.com > http://www.ossapp.com/mailman/listinfo/karoo-users_ossapp.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From ctshyd218 at gmail.com Sat Aug 29 04:43:09 2015 From: ctshyd218 at gmail.com (jam li) Date: Sat, 29 Aug 2015 16:13:09 +0530 Subject: [karoo-users] karoo config problem Message-ID: I installed karoo on my centos 64 bit server, and have freeswitch server also installed on the same machine, but when i try to login freeswtich user(sip users) from my android softphone i am unable to login. can you please guide me what could be the problem. Below are my karoo configuration details: I configured karoo by reading the tutorial given in http://www.ossapp.com/karoo/Cookbook.pdf *I configured karoo as follows:* *my /etc/karoo.conf.d/config/sip.cfg file looks as follows.* listeners : { interfaces = ( { default = true; // Set to true if you want peripheral services to use this transport as the default interface. ip-address = "209.121.111.211"; // The Host IP Address //external-address = ""; // (Optional) External IP address if the virtual IP is behind a port mapped firewall tcp-enabled = true; // Enable TCP transport udp-enabled = true; // Enable UDP Transport //ws-enabled = true; // Enable WebSocket Transport //tls-enabled = true; // Enable TLS Transport sip-port = 5060; // Port for TCP and UDP //tls-port = 5061; // Port for TLS //ws-port = 5062; // Port for WebSocket //subnets = "0.0.0.0/0"; // (Optional) Comma delimited subnets reachable by this transport } ); *rest all in this file is same.* ----------------------------------------------------------------------------------------------------------- *i created a new file abc.js in /etc/karoo.con.d/routes/ directory and added this funtion to it.* function is_mysipdomain_routable(profile) { var ip = profile.sipMessage.getSourceAddress(); var domain = profile.sipMessage.getFromHost(); if (ip != "209.121.111.211" && domain == "209.121.111.211") { profile.setTargetAddress( "udp", "209.121.111.211", "5060"); return true; }else { return false; } } *below is what i added to route.js file after commenting the all-ready existing isRoutable function.* Route.prototype.isRoutable = function() { if (is_mysipdomain_routable(this)) return true; else return false; } -------------- next part -------------- An HTML attachment was scrubbed... URL: From joegen at ossapp.com Sat Aug 29 17:12:28 2015 From: joegen at ossapp.com (Joegen E. Baclor) Date: Sun, 30 Aug 2015 07:12:28 +0800 Subject: [karoo-users] karoo config problem In-Reply-To: References: Message-ID: <55E23C5C.4000205@ossapp.com> I assume you have freeswitch running on a different port other than 5060? Let's assume FS is ilstening on port 5070 on the same box as karoo, then you must set the target as follows profile.setTargetAddress( "udp", "209.121.111.211", "5070"); Attach /var/logs/karoo/sbc.log when reporting issues. On 08/29/2015 06:43 PM, jam li wrote: > > I installed karoo on my centos 64 bit server, and have freeswitch > server also installed on the same machine, but when i try to login > freeswtich user(sip users) from my android softphone i am unable to > login. can you please guide me what could be the problem. > > Below are my karoo configuration details: > > > I configured karoo by reading the tutorial given in > http://www.ossapp.com/karoo/Cookbook.pdf > > > *I configured karoo as follows: > > * > *my /etc/karoo.conf.d/config/sip.cfg file looks as follows.* > > listeners : > { > interfaces = ( > { > default = true; // Set to true if you want peripheral services > to use this transport as the default interface. > ip-address = "209.121.111.211"; // The Host IP Address > //external-address = ""; // (Optional) External IP address if > the virtual IP is behind a port mapped firewall > tcp-enabled = true; // Enable TCP transport > udp-enabled = true; // Enable UDP Transport > //ws-enabled = true; // Enable WebSocket Transport > //tls-enabled = true; // Enable TLS Transport > sip-port = 5060; // Port for TCP and UDP > //tls-port = 5061; // Port for TLS > //ws-port = 5062; // Port for WebSocket > //subnets = "0.0.0.0/0 "; // (Optional) > Comma delimited subnets reachable by this transport > } ); > * > * > *rest all in this file is same.* > > ----------------------------------------------------------------------------------------------------------- > > *i created a new file abc.js in /etc/karoo.con.d/routes/ directory and > added this funtion to it.* > > function is_mysipdomain_routable(profile) > { > var ip = profile.sipMessage.getSourceAddress(); > var domain = profile.sipMessage.getFromHost(); > if (ip != "209.121.111.211" && domain == "209.121.111.211") > { > profile.setTargetAddress( > "udp", > "209.121.111.211", > "5060"); > return true; > }else > { > return false; > } > } > > *below is what i added to route.js file after commenting the all-ready > existing isRoutable function.* > > Route.prototype.isRoutable = function() > { > if (is_mysipdomain_routable(this)) > return true; > else > return false; > } > > > _______________________________________________ > karoo-users mailing list > karoo-users at ossapp.com > http://www.ossapp.com/mailman/listinfo/karoo-users_ossapp.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From ctshyd218 at gmail.com Mon Aug 31 02:25:37 2015 From: ctshyd218 at gmail.com (jam li) Date: Mon, 31 Aug 2015 13:55:37 +0530 Subject: [karoo-users] karoo is creating files with name core.9999 Message-ID: Karoo is creating lots of files with name core.number each file is 237 mb size this is making my hard disk memory full. How to solve this problem. please help. If log file is needed to solve this problem i will send it. -------------- next part -------------- An HTML attachment was scrubbed... URL: