hello, I am running Kamailio 1.5 and siremis. I want to deploy some IP based ACL services. Basically checking the source IP on an INVITE to see if it's in a list of trusted IP addresses. I see in the sirmeis configuration under "ACL Services" there is a tab for "trusted addresses", but I can't figure out what module those are in support of, or what exported functions I would call to check against the list of trusted IPs.
I have had a high fever for 2 days, so perhaps my brain is fried and I am missing something totally obvious :)
Thanks! Geoff
Dear Geoff
Permissions module
cheers
jp
----- Original Message ---- From: Geoffrey Mina geoffreymina@gmail.com To: kamailio users@lists.kamailio.org Sent: Wednesday, March 18, 2009 4:35:39 PM Subject: [Kamailio-Users] point in the right direction
hello, I am running Kamailio 1.5 and siremis. I want to deploy some IP based ACL services. Basically checking the source IP on an INVITE to see if it's in a list of trusted IP addresses. I see in the sirmeis configuration under "ACL Services" there is a tab for "trusted addresses", but I can't figure out what module those are in support of, or what exported functions I would call to check against the list of trusted IPs.
I have had a high fever for 2 days, so perhaps my brain is fried and I am missing something totally obvious :)
Thanks! Geoff
_______________________________________________ Kamailio (OpenSER) - Users mailing list Users@lists.kamailio.org http://lists.kamailio.org/cgi-bin/mailman/listinfo/users http://lists.openser-project.org/cgi-bin/mailman/listinfo/users
El Miércoles, 18 de Marzo de 2009, Geoffrey Mina escribió:
hello, I am running Kamailio 1.5 and siremis. I want to deploy some IP based ACL services. Basically checking the source IP on an INVITE to see if it's in a list of trusted IP addresses. I see in the sirmeis configuration under "ACL Services" there is a tab for "trusted addresses", but I can't figure out what module those are in support of, or what exported functions I would call to check against the list of trusted IPs.
is_trusted() in "permissions" module.
As soon as i knew which module was utilizing the "trusted" configuration data I figured it all out. I was hung up on ACL, totally missed "permissions"... maybe my brain melted over the last two days.
thanks to both of you! Geoff
On Wed, Mar 18, 2009 at 6:40 PM, Iñaki Baz Castillo ibc@aliax.net wrote:
El Miércoles, 18 de Marzo de 2009, Geoffrey Mina escribió:
hello, I am running Kamailio 1.5 and siremis. I want to deploy some IP based ACL services. Basically checking the source IP on an INVITE to see if it's in a list of trusted IP addresses. I see in the sirmeis configuration under "ACL Services" there is a tab for "trusted addresses", but I can't figure out what module those are in support of, or what exported functions I would call to check against the list of trusted IPs.
is_trusted() in "permissions" module.
-- Iñaki Baz Castillo
Kamailio (OpenSER) - Users mailing list Users@lists.kamailio.org http://lists.kamailio.org/cgi-bin/mailman/listinfo/users http://lists.openser-project.org/cgi-bin/mailman/listinfo/users
Hello,
fyi, a mapping of db tables to modules is available at: http://kamailio.org/docs/db-tables/kamailio-db-devel.html
Cheers, Daniel
On 03/19/2009 12:45 AM, Geoffrey Mina wrote:
As soon as i knew which module was utilizing the "trusted" configuration data I figured it all out. I was hung up on ACL, totally missed "permissions"... maybe my brain melted over the last two days.
thanks to both of you! Geoff
On Wed, Mar 18, 2009 at 6:40 PM, Iñaki Baz Castillo ibc@aliax.net wrote:
El Miércoles, 18 de Marzo de 2009, Geoffrey Mina escribió:
hello, I am running Kamailio 1.5 and siremis. I want to deploy some IP based ACL services. Basically checking the source IP on an INVITE to see if it's in a list of trusted IP addresses. I see in the sirmeis configuration under "ACL Services" there is a tab for "trusted addresses", but I can't figure out what module those are in support of, or what exported functions I would call to check against the list of trusted IPs.
is_trusted() in "permissions" module.
-- Iñaki Baz Castillo
Kamailio (OpenSER) - Users mailing list Users@lists.kamailio.org http://lists.kamailio.org/cgi-bin/mailman/listinfo/users http://lists.openser-project.org/cgi-bin/mailman/listinfo/users
Kamailio (OpenSER) - Users mailing list Users@lists.kamailio.org http://lists.kamailio.org/cgi-bin/mailman/listinfo/users http://lists.openser-project.org/cgi-bin/mailman/listinfo/users
You mean allow_trusted()?
Iñaki Baz Castillo wrote:
El Miércoles, 18 de Marzo de 2009, Geoffrey Mina escribió:
hello, I am running Kamailio 1.5 and siremis. I want to deploy some IP based ACL services. Basically checking the source IP on an INVITE to see if it's in a list of trusted IP addresses. I see in the sirmeis configuration under "ACL Services" there is a tab for "trusted addresses", but I can't figure out what module those are in support of, or what exported functions I would call to check against the list of trusted IPs.
is_trusted() in "permissions" module.
El Miércoles, 18 de Marzo de 2009, Alex Balashov escribió:
You mean allow_trusted()?
Iñaki Baz Castillo wrote:
El Miércoles, 18 de Marzo de 2009, Geoffrey Mina escribió:
hello, I am running Kamailio 1.5 and siremis. I want to deploy some IP based ACL services. Basically checking the source IP on an INVITE to see if it's in a list of trusted IP addresses. I see in the sirmeis configuration under "ACL Services" there is a tab for "trusted addresses", but I can't figure out what module those are in support of, or what exported functions I would call to check against the list of trusted IPs.
is_trusted() in "permissions" module.
yes, sorry.