Para que podamos logearnos al servidor y utilizar los usuarios que tenemos creados en nuestro LDAP (openldap), debemos seguir estos pasos:
VPN Pfsense con L2PT o OpenVPN
OpenVPN
Primero debemos crear el certificado CA
System/Cert. Manager
Configurar TP LINK TL-SG108E con VLAN
El switch soporta VLAN 802.1Q, para configurarlo debemos entrar al menu de las VLAN.
Configurar VPN IPSEC en Pfsense
Bloqueo de Navegacion en PfSense por medio de Reglas
Si queremos realizar el bloqueo de la navegacion, sin utilizar el proxy realizamos los siguientes pasos:
Continuar leyendo «Bloqueo de Navegacion en PfSense por medio de Reglas»
Arreglar Squid al actualizar a pfsense 2.3
Entrar al servidor por ssh y borrar la configuracion anterior:
1 2 3 4 5 6 7 |
rm -rf /usr/local/etc/c-icap rm -rf /usr/local/include/c_icap rm -rf /usr/local/share/c_icap rm -rf /usr/local/lib/c_icap rm -rf /usr/local/etc/c-icap rm -rf /var/log/squid rm -rf /var/squid/ |
Volver a instalar el squid
Instalar board netgate
Proxy mas bloqueo de navegación
Instalar los paquetes
Ingrese a su administrador web pfSense, y haga clic en «Servidor -> Paquetes», desplácese hacia abajo la lista y encontrar el calamar y haga clic en el botón «+» para instalar, esperar a que el proceso finalice y luego volver a la sección de paquetes y buscar squidguard e instalar ese paquete también.
pfsense – Proxy Automatico
Crear wpad.dat
1 2 3 4 5 6 7 8 9 10 11 12 |
function FindProxyForURL(url,host) { if(isInNet(host,"127.0.0.1","255.255.255.0")) { return "DIRECT"; } if(isInNet(host,"10.210.0.1","255.255.0.0")) { return "DIRECT"; } return "PROXY 192.168.1.1:3128"; } |
Copiar el archivo en
1 2 3 |
/var/www/wpad.dat /var/www/wpad.da /var/www/proxy.pac |
LIGHTSQUID FIX
Log into the console to run the below commands:
create missing symbiotic links:
1 2 3 4 5 6 7 |
amd64 ln -s /usr/pbi/lightsquid-amd64/local/www/lightsquid /usr/local/www/lightsquid ln -s /usr/pbi/lightsquid-amd64/local/etc/lightsquid /usr/local/etc/lightsquid i386 ln -s /usr/pbi/lightsquid-i386/local/www/lightsquid /usr/local/www/lightsquid ln -s /usr/pbi/lightsquid-i386/local/etc/lightsquid /usr/local/etc/lightsquid |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
pkg install perl5 Updating FreeBSD repository catalogue... FreeBSD repository is up-to-date. All repositories are up-to-date. The following 1 packages will be affected (of 0 checked): New packages to be INSTALLED: perl5: 5.18.4_11 The process will require 49 MB more space. 13 MB to be downloaded. Proceed with this action? [y/N]: y Fetching perl5-5.18.4_11.txz: 100% 13 MB 1.5M/s 00:09 Checking integrity... done (0 conflicting) [1/1] Installing perl5-5.18.4_11... [1/1] Extracting perl5-5.18.4_11: 100% makewhatis: not found makewhatis: not found pkg: POST-INSTALL script failed |
the post install fails but perl5 is installed
run this to generate your first report
1 2 3 4 5 |
amd64 /usr/bin/perl /usr/pbi/lightsquid-amd64/www/lightsquid/lightparser.pl today i386 /usr/bin/perl /usr/pbi/lightsquid-i386/www/lightsquid/lightparser.pl today |