Re: [PacketFence-users] Service Disappeared

2017-09-26 Thread Fabrice Durand via PacketFence-users
ok so do:

systemctl restart packetfence-config

/usr/local/pf/bin/pfcmd service pf restart


Le 2017-09-26 à 09:16, Nathan, Josh via PacketFence-users a écrit :
> OK.  That gives me:
>
> Failed to connect to config service for namespace
> resource::URI_Filters, retrying
>
>
> And that message just keeps getting repeated until I kill it.
>
>
>   
> Joshua Nathan
> *IT Technician*
> Black Forest Academy
>
> p:+49 (0) 7626 9161 630  m: +49 (0) 152 3452 0056
> a:
> w:Hammersteiner Straße 50, 79400 Kandern
> bfacademy.de 
>
>   
>
>
>
> On Tue, Sep 26, 2017 at 2:15 PM, Fabrice Durand via PacketFence-users
>  > wrote:
>
> Hello Nathan,
>
> there is no systemd script to restart the whole packetfence's
> services.
>
> What you can do is the following:
>
> /usr/local/pf/bin/pfcmd service pf start
>
>
> Regard
>
> Fabrice
>
>
>
> Le 2017-09-26 à 04:43, Nathan, Josh via PacketFence-users a écrit :
>> Sorry, to be a little more specific... it seems that at least a
>> number of the files are still in /etc/systemd/system... but when
>> I issue "systemctl start packetfence", I get:
>>
>> Failed to start packetfence.service: Unit not found.
>>
>>
>>
>>  
>> Joshua Nathan
>> *IT Technician*
>> Black Forest Academy
>>
>> p:   +49 (0) 7626 9161 630  m: +49 (0) 152 3452 0056
>> a:
>> w:   Hammersteiner Straße 50, 79400 Kandern
>> bfacademy.de 
>>
>>  
>>
>>
>>
>> On Tue, Sep 26, 2017 at 10:37 AM, Nathan, Josh
>> > wrote:
>>
>> Strange issue... I just did a clean install of PacketFence
>> 7.2.0 on a CentOS 7 server.  However, at some point over
>> night, my PacketFence service disappeared.  The directory and
>> configurations seem to all still be in place, but the service
>> is gone.  Is there a way to readily recreate that?
>>
>> Thanks,
>>
>>  
>> Joshua Nathan
>> *IT Technician*
>> Black Forest Academy
>>
>> p:   +49 (0) 7626 9161 630   m: +49
>> (0) 152 3452 0056 
>> a:
>> w:   Hammersteiner Straße 50, 79400 Kandern
>> bfacademy.de 
>>
>>  
>>
>>
>>
>>
>>
>> 
>> --
>> Check out the vibrant tech community on one of the world's most
>> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>>
>>
>> ___
>> PacketFence-users mailing list
>> PacketFence-users@lists.sourceforge.net
>> 
>> https://lists.sourceforge.net/lists/listinfo/packetfence-users
>> 
>
> -- 
> Fabrice Durand
> fdur...@inverse.ca  ::  +1.514.447.4918 
>  (x135) ::  www.inverse.ca 
> Inverse inc. :: Leaders behind SOGo (http://www.sogo.nu) and PacketFence 
> (http://packetfence.org) 
>
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> PacketFence-users mailing list
> PacketFence-users@lists.sourceforge.net
> 
> https://lists.sourceforge.net/lists/listinfo/packetfence-users
> 
>
>
>
>
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>
>
> ___
> PacketFence-users mailing list
> PacketFence-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/packetfence-users

-- 
Fabrice Durand
fdur...@inverse.ca ::  +1.514.447.4918 (x135) ::  www.inverse.ca
Inverse inc. :: Leaders behind SOGo (http://www.sogo.nu) and PacketFence 
(http://packetfence.org) 

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
PacketFence-users mailing list
PacketFence-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/packetfence-users


Re: [PacketFence-users] 7.2 and IPv6 functionality issues with patches.

2017-09-26 Thread Tim DeNike via PacketFence-users
And Firewall SSO doesn't send updates for V6 addresses. :(

On Mon, Sep 25, 2017 at 3:29 PM, Tim DeNike  wrote:

> PS:  This doesn't solve the potential issue of the # of active IPv6
> addresses a device could potentially have on 1 interface.
>
> 1.  Link Local
> 2.  SLAAC temporary address
> 3.  SLAAC address
> 4.  DHCPv6 address
> 5.  DHCPv6 PD Prefix
>
> The only issue that would affect my network is on the wireless side with
> multiple SLAAC addresses.  We can't use DHCPv6 there because of Android
> problems.
>
>
>
> On Mon, Sep 25, 2017 at 2:57 PM, Tim DeNike  wrote:
>
>> Finally getting around to 7.2 upgrade and testing IPv6 functionality.
>> Couple issues.
>>
>> #1.  Our switches send multiple Framed-IPv6-Address values in a single
>> accounting packet.  Needed to keep the value of Framed-IPv6-Address from
>> API into an array and break it down in handle_accounting_metadata.
>> #2.  IPlog from accounting packets wasn't working at all because it was
>> set to == when it should have been != in api.pm
>> #3.  IPlog from accounting packets wasn't set to function on IP6
>> addresses.
>> #4.  pf/util/dictionary is missing:
>> ATTRIBUTE Framed-IPv6-Address 168 ipv6addr
>> ATTRIBUTE Framed-IPv6-Prefix  97 ipv6prefix #Could
>> be used in future
>>
>> The following diffs against 7.2 appear to function properly in my lab.
>>
>> lib/pf/radius/rest.pm
>> 70,71c70
>> < $_ =~ /Framed-IPv6-Address/ ? ($_ => $request->{$_}->{value}) :
>> ($_ => $request->{$_}->{value}->[0]);
>> < #$_ => $request->{$_}->{value}->[0];
>> ---
>> > $_ => $request->{$_}->{value}->[0];
>>
>>
>> lib/pf/api.pm
>> 1349c1349
>> < if ($RAD_REQUEST{'Acct-Status-Type'} != $ACCOUNTING::STOP){
>> ---
>> > if ($RAD_REQUEST{'Acct-Status-Type'} == $ACCOUNTING::STOP){
>> 1352,1361c1352,1353
>> < if ($RAD_REQUEST{'Framed-IP-Address'} ) {
>> < $logger->info("Updating ip4log from accounting request
>> wit $RAD_REQUEST{'Framed-IP-Address'}");
>> < $client->notify("update_ip4log", mac => $mac, ip =>
>> $RAD_REQUEST{'Framed-IP-Address'});
>> < }
>> < if ( $RAD_REQUEST{'Framed-IPv6-Address'} ) {
>> < foreach my $ip6addr ( 
>> @{$RAD_REQUEST{'Framed-IPv6-Address'}}
>> ) {
>> <$logger->info("Updating ip6log froun accounting
>> $ip6addr");
>> <$client->notify("update_ip6log", mac => $mac, ip =>
>> $ip6addr) if ($ip6addr !~ m/^fe80.*/ );
>> < }
>> < }
>> ---
>> > $logger->info("Updating iplog from accounting request");
>> > $client->notify("update_ip4log", mac => $mac, ip =>
>> $RAD_REQUEST{'Framed-IP-Address'}) if ($RAD_REQUEST{'Framed-IP-Address'}
>> );
>>
>>
>>
>>
>>
>> Tim - MCC
>>
>
>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
PacketFence-users mailing list
PacketFence-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/packetfence-users


Re: [PacketFence-users] Service Disappeared

2017-09-26 Thread Nathan, Josh via PacketFence-users
OK.  That gives me:

Failed to connect to config service for namespace resource::URI_Filters,
retrying


And that message just keeps getting repeated until I kill it.


Joshua Nathan
*IT Technician*
Black Forest Academy

p: +49 (0) 7626 9161 630  m: +49 (0) 152 3452 0056
a:
w: Hammersteiner Straße 50, 79400 Kandern
bfacademy.de



On Tue, Sep 26, 2017 at 2:15 PM, Fabrice Durand via PacketFence-users <
packetfence-users@lists.sourceforge.net> wrote:

> Hello Nathan,
>
> there is no systemd script to restart the whole packetfence's services.
>
> What you can do is the following:
>
> /usr/local/pf/bin/pfcmd service pf start
>
>
> Regard
>
> Fabrice
>
>
>
> Le 2017-09-26 à 04:43, Nathan, Josh via PacketFence-users a écrit :
>
> Sorry, to be a little more specific... it seems that at least a number of
> the files are still in /etc/systemd/system... but when I issue "systemctl
> start packetfence", I get:
>
> Failed to start packetfence.service: Unit not found.
>
>
>
> Joshua Nathan
> *IT Technician*
> Black Forest Academy
>
> p: +49 (0) 7626 9161 630  m: +49 (0) 152 3452 0056
> a:
> w: Hammersteiner Straße 50, 79400 Kandern
> bfacademy.de
>
>
>
>
> On Tue, Sep 26, 2017 at 10:37 AM, Nathan, Josh 
> wrote:
>
>> Strange issue... I just did a clean install of PacketFence 7.2.0 on a
>> CentOS 7 server.  However, at some point over night, my PacketFence service
>> disappeared.  The directory and configurations seem to all still be in
>> place, but the service is gone.  Is there a way to readily recreate that?
>>
>> Thanks,
>>
>> Joshua Nathan
>> *IT Technician*
>> Black Forest Academy
>>
>> p: +49 (0) 7626 9161 630 <+49%207626%209161630>  m: +49 (0) 152 3452 0056
>> <+49%201523%204520056>
>> a:
>> w: Hammersteiner Straße 50, 79400 Kandern
>> bfacademy.de
>>
>>
>>
>>
>
>
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>
>
>
> ___
> PacketFence-users mailing 
> listPacketFence-users@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/packetfence-users
>
>
> --
> Fabrice durandfdur...@inverse.ca ::  +1.514.447.4918 <(514)%20447-4918> 
> (x135) ::  www.inverse.ca
> Inverse inc. :: Leaders behind SOGo (http://www.sogo.nu) and PacketFence 
> (http://packetfence.org)
>
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> PacketFence-users mailing list
> PacketFence-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/packetfence-users
>
>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
PacketFence-users mailing list
PacketFence-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/packetfence-users


Re: [PacketFence-users] Captive Portal fiels translation

2017-09-26 Thread Fabrice Durand via PacketFence-users
Hello Luís,

there https://www.transifex.com/inverse/packetfence/

Regards

Fabrice



Le 2017-09-25 à 05:57, Luís Torres via PacketFence-users a écrit :
>
> Hello mates,
>
>  
>
> how can I translate the captive portal to other language? any guides?
>
>  
>
> thanks
>
>  
>
>
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>
>
> ___
> PacketFence-users mailing list
> PacketFence-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/packetfence-users

-- 
Fabrice Durand
fdur...@inverse.ca ::  +1.514.447.4918 (x135) ::  www.inverse.ca
Inverse inc. :: Leaders behind SOGo (http://www.sogo.nu) and PacketFence 
(http://packetfence.org) 

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
PacketFence-users mailing list
PacketFence-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/packetfence-users


Re: [PacketFence-users] Service Disappeared

2017-09-26 Thread Fabrice Durand via PacketFence-users
Hello Nathan,

there is no systemd script to restart the whole packetfence's services.

What you can do is the following:

/usr/local/pf/bin/pfcmd service pf start


Regard

Fabrice



Le 2017-09-26 à 04:43, Nathan, Josh via PacketFence-users a écrit :
> Sorry, to be a little more specific... it seems that at least a number
> of the files are still in /etc/systemd/system... but when I issue
> "systemctl start packetfence", I get:
>
> Failed to start packetfence.service: Unit not found.
>
>
>
>   
> Joshua Nathan
> *IT Technician*
> Black Forest Academy
>
> p:+49 (0) 7626 9161 630  m: +49 (0) 152 3452 0056
> a:
> w:Hammersteiner Straße 50, 79400 Kandern
> bfacademy.de 
>
>   
>
>
>
> On Tue, Sep 26, 2017 at 10:37 AM, Nathan, Josh
> > wrote:
>
> Strange issue... I just did a clean install of PacketFence 7.2.0
> on a CentOS 7 server.  However, at some point over night, my
> PacketFence service disappeared.  The directory and configurations
> seem to all still be in place, but the service is gone.  Is there
> a way to readily recreate that?
>
> Thanks,
>
>   
> Joshua Nathan
> *IT Technician*
> Black Forest Academy
>
> p:+49 (0) 7626 9161 630   m: +49 (0)
> 152 3452 0056 
> a:
> w:Hammersteiner Straße 50, 79400 Kandern
> bfacademy.de 
>
>   
>
>
>
>
>
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>
>
> ___
> PacketFence-users mailing list
> PacketFence-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/packetfence-users

-- 
Fabrice Durand
fdur...@inverse.ca ::  +1.514.447.4918 (x135) ::  www.inverse.ca
Inverse inc. :: Leaders behind SOGo (http://www.sogo.nu) and PacketFence 
(http://packetfence.org) 

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
PacketFence-users mailing list
PacketFence-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/packetfence-users


[PacketFence-users] Service Disappeared

2017-09-26 Thread Nathan, Josh via PacketFence-users
Strange issue... I just did a clean install of PacketFence 7.2.0 on a
CentOS 7 server.  However, at some point over night, my PacketFence service
disappeared.  The directory and configurations seem to all still be in
place, but the service is gone.  Is there a way to readily recreate that?

Thanks,

Joshua Nathan
*IT Technician*
Black Forest Academy

p: +49 (0) 7626 9161 630  m: +49 (0) 152 3452 0056
a:
w: Hammersteiner Straße 50, 79400 Kandern
bfacademy.de
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
PacketFence-users mailing list
PacketFence-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/packetfence-users


Re: [PacketFence-users] Service Disappeared

2017-09-26 Thread Nathan, Josh via PacketFence-users
Sorry, to be a little more specific... it seems that at least a number of
the files are still in /etc/systemd/system... but when I issue "systemctl
start packetfence", I get:

Failed to start packetfence.service: Unit not found.



Joshua Nathan
*IT Technician*
Black Forest Academy

p: +49 (0) 7626 9161 630  m: +49 (0) 152 3452 0056
a:
w: Hammersteiner Straße 50, 79400 Kandern
bfacademy.de



On Tue, Sep 26, 2017 at 10:37 AM, Nathan, Josh 
wrote:

> Strange issue... I just did a clean install of PacketFence 7.2.0 on a
> CentOS 7 server.  However, at some point over night, my PacketFence service
> disappeared.  The directory and configurations seem to all still be in
> place, but the service is gone.  Is there a way to readily recreate that?
>
> Thanks,
>
> Joshua Nathan
> *IT Technician*
> Black Forest Academy
>
> p: +49 (0) 7626 9161 630 <+49%207626%209161630>  m: +49 (0) 152 3452 0056
> <+49%201523%204520056>
> a:
> w: Hammersteiner Straße 50, 79400 Kandern
> bfacademy.de
>
>
>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
PacketFence-users mailing list
PacketFence-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/packetfence-users