diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-03-30 13:02:30 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-03-30 13:02:30 -0700 |
commit | 65573c262573834104caa1bad0d2867150b8a12e (patch) | |
tree | bac00390f957e39078f328545da718ccd0efa29d | |
parent | 07edc34e2840e2724c39d3d06c244ebde1b431a3 (diff) |
set Motorola-Canopy-Gateway, RT#41261
-rw-r--r-- | FS/FS/svc_IP_Mixin.pm | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/FS/FS/svc_IP_Mixin.pm b/FS/FS/svc_IP_Mixin.pm index c0f202e6d..abafe86ad 100644 --- a/FS/FS/svc_IP_Mixin.pm +++ b/FS/FS/svc_IP_Mixin.pm @@ -5,6 +5,8 @@ use strict; use NEXT; use FS::Record qw(qsearchs qsearch); use FS::Conf; +use FS::router; +use FS::part_svc_router; =item addr_block @@ -192,9 +194,21 @@ sub radius_reply { # (the "1" at the end is the route metric) $reply{'Framed-Route'} = $block->cidr . ' ' . ($self->ip_addr || '0.0.0.0') . ' 1'; + } + + if ( $self->router_routernum && FS::Conf->new->exists('radius-canopy') ) { + + my @addr_block = + qsearch('addr_block', { routernum => $self->router_routernum } ); + if ( @addr_block ) { + + #? + warn "Multiple address blocks attached to this service's router; using first" + if scalar(@addr_block) > 1; - $reply{'Motorola-Canopy-Gateway'} = $block->ip_gateway - if FS::Conf->new->exists('radius-canopy'); + $reply{'Motorola-Canopy-Gateway'} = $addr_block[0]->ip_gateway + + } } %reply; |