Hello Andi,

I attached you a little how-to to update the fingerprints offline.

regards
Loick

On May 06-12:41PM, Morris, Andi wrote:
> Hi all,
> Is there a way I can configure packetfence to access the internet through a 
> proxy server? At the moment I cannot update the DHCP fingerprints, and I can 
> see the requests hitting my perimeter firewall rather than going through our 
> proxy server.
> 
> Cheers,
> Andi
> 
> -------------------------------------
> Andi Morris
> IT Security Officer
> Cardiff Metropolitan University
> T: 02920 205720
> E: [email protected]<mailto:[email protected]>
> --------------------------------------
> 

> ------------------------------------------------------------------------------
> Is your legacy SCM system holding you back? Join Perforce May 7 to find out:
> &#149; 3 signs your SCM is hindering your productivity
> &#149; Requirements for releasing software faster
> &#149; Expert tips and advice for migrating your SCM now
> http://p.sf.net/sfu/perforce

> _______________________________________________
> PacketFence-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/packetfence-users


-- 
[email protected] :: +1.514.447.4918 (x130) :: 
www.inverse.ca<http://www.inverse.ca/>
Inverse inc. :: Leaders behind SOGo (www.sogo.nu<http://www.sogo.nu/>) and 
PacketFence
+(www.packetfence.org<http://www.packetfence.org/>)
gtalk or skype : lpelet.inverse
# Update Packetfence fingerprints database offline mode
# author Loick PELET
# creation 20130208
# update 20130208
#
#
# I assume your INSTALL_DIR is /usr/local/pf/
# and your configuration is a standalone Packetfence server.
#
# Download the file dhcp_fingerprints.conf from our github and
# place the file on your pf server in /tmp by scp or ftp or other file 
transfert tool allowed in your network :
https://github.com/inverse-inc/fingerbank/blob/master/dhcp_fingerprints.conf 
scp ./dhcp_fingerprints.conf root@serverpf:/tmp

# Stop packetfence service :
service packetfence stop

# Back up the old fingerprints file :
mv /usr/local/pf/conf/dhcp_fingerprints.conf 
/usr/local/pf/conf/dhcp_fingerprints.conf.save

# Move the new fingerprints file in your CONF_DIR :
mv /usr/local/pf/conf/dhcp_fingerprints.conf 

# Backup the old fingerprints table on mysql and flush the original:
mysql -u root -p pf
        create table dhcp_fingerprint_save as select * from dhcp_fingerprint;
        delete from dhcp_fingerprint;

# Then restart the packetfence service
service packetfence start;

# Check if the update is ok
mysql -u root -p pf
        select * from dhcp_fingerprint;
------------------------------------------------------------------------------
Is your legacy SCM system holding you back? Join Perforce May 7 to find out:
&#149; 3 signs your SCM is hindering your productivity
&#149; Requirements for releasing software faster
&#149; Expert tips and advice for migrating your SCM now
http://p.sf.net/sfu/perforce
_______________________________________________
PacketFence-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/packetfence-users

Reply via email to