Hey List, I'm looking at an article by Daniel,
http://by-miconda.blogspot.ie/2010/10/best-of-new-in-kamailio-310-5-geoip-ap....
In it he's uses the below to block source IP addresses by country, How could this be used to block multiple country sources?? I've tried a couple of things aleardy but have failed
geoip_match("$si", "src"); if($gip(src=>cc)=="CA") { xlog("SIP message from Canada (ip: $si) - drop it\n"); send_reply("403", "Forbidden"); exit; }
Thanks in advance Ian
Hello,
On 3/4/13 11:48 AM, Ian French wrote:
Hey List, I'm looking at an article by Daniel,
http://by-miconda.blogspot.ie/2010/10/best-of-new-in-kamailio-310-5-geoip-ap....
In it he's uses the below to block source IP addresses by country,How could this be used to block multiple country sources?? I've tried a couple of things aleardy but have failed
geoip_match("$si", "src"); if($gip(src=>cc)=="CA") { xlog("SIP message from Canada (ip: $si) - drop it\n");
send_reply("403", "Forbidden"); exit; }
just make an OR expression:
if($gip(src=>cc)=="CA" || $gip(src=>cc)=="DE" || $gip(src=>cc)=="FR") {
Just as an alternative example, you can use sqlops to make a db query and check againts a list stored in a database table.
Cheers, Daniel
Are there plans to extend geoip module to work in dual stack environment, i.e. lookup both ipv4 and ipv6 addresses? Maxmind provides ipv6 databases.
On Tuesday 05 March 2013 09:36:59 Daniel-Constantin Mierla wrote:
Hello,
On 3/4/13 11:48 AM, Ian French wrote:
Hey List,
I'm looking at an article by Daniel,
http://by-miconda.blogspot.ie/2010/10/best-of-new-in-kamailio-310-5-geoip- api.html.
In it he's uses the below to block source IP addresses by country,How could this be used to block multiple country sources?? I've tried a couple of things aleardy but have failed
geoip_match("$si", "src"); if($gip(src=>cc)=="CA") {
xlog("SIP message from Canada (ip: $si) - drop it\n");
send_reply("403", "Forbidden"); exit;
}
just make an OR expression:
if($gip(src=>cc)=="CA" || $gip(src=>cc)=="DE" || $gip(src=>cc)=="FR") {
Just as an alternative example, you can use sqlops to make a db query and check againts a list stored in a database table.
Cheers, Daniel
Hello,
On 3/5/13 1:31 PM, Sergey Okhapkin wrote:
Are there plans to extend geoip module to work in dual stack environment, i.e. lookup both ipv4 and ipv6 addresses? Maxmind provides ipv6 databases.
is there any change in the API for the IPv6? Or there are two separate databases that should be used?
Cheers, Daniel
On Tuesday 05 March 2013 09:36:59 Daniel-Constantin Mierla wrote:
Hello,
On 3/4/13 11:48 AM, Ian French wrote:
Hey List,
I'm looking at an article by Daniel,
http://by-miconda.blogspot.ie/2010/10/best-of-new-in-kamailio-310-5-geoip- api.html.
In it he's uses the below to block source IP addresses by country,How could this be used to block multiple country sources?? I've tried a couple of things aleardy but have failed
geoip_match("$si", "src"); if($gip(src=>cc)=="CA") {
xlog("SIP message from Canada (ip: $si) - drop it\n"); send_reply("403", "Forbidden"); exit;
}
just make an OR expression:
if($gip(src=>cc)=="CA" || $gip(src=>cc)=="DE" || $gip(src=>cc)=="FR") {
Just as an alternative example, you can use sqlops to make a db query and check againts a list stored in a database table.
Cheers, Daniel
There are 2 separate databases, but common API (I believe).
On Wednesday 06 March 2013 12:28:19 Daniel-Constantin Mierla wrote:
Hello,
On 3/5/13 1:31 PM, Sergey Okhapkin wrote:
Are there plans to extend geoip module to work in dual stack environment, i.e. lookup both ipv4 and ipv6 addresses? Maxmind provides ipv6 databases.
is there any change in the API for the IPv6? Or there are two separate databases that should be used?
Cheers, Daniel