X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Fsvc_IP_Mixin.pm;h=8b2b5f17e9709e73fdb8d8f00b89d263fd74164c;hp=c0f202e6d5469145ebb6368e0b45d2253200137b;hb=97dab063eab4cd6106b2d4f96d574a9594984cf7;hpb=7109ab0b7108ee365fbc958eaaf9e473f2332c08 diff --git a/FS/FS/svc_IP_Mixin.pm b/FS/FS/svc_IP_Mixin.pm index c0f202e6d..8b2b5f17e 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 @@ -184,7 +186,9 @@ means "Framed-Route" if there's an attached router. sub radius_reply { my $self = shift; + my %reply = (); + if ( my $block = $self->attached_block ) { # block routed over dynamic IP: "192.168.100.0/29 0.0.0.0 1" # or @@ -192,11 +196,11 @@ 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'; - - $reply{'Motorola-Canopy-Gateway'} = $block->ip_gateway - if FS::Conf->new->exists('radius-canopy'); - } + + $reply{'Motorola-Canopy-Gateway'} = $self->addr_block->ip_gateway + if FS::Conf->new->exists('radius-canopy') && $self->addr_block; + %reply; }