Categories
Archives
June 2023 M T W T F S S « Jul 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
Tag Archives: openbsd
OpenBSD+Squid+Dansguardian+ldap+Active Directory
This setup was tested with OpenBSD 5.1, squid-2.7-ldap, dansguardian-2.10.1.1 and Windows 2008 Server I will show how to authenticate Squid Proxy in Active Directory using squid_ldap_auth and squid_ldap_group. The basic for this is: At squid.conf put auth_param basic program /usr/local/libexec/squid_ldap_auth … Continue reading
Posted in OpenBSD
Tagged active directory, ad, dansguardian, ldap, openbsd, squid, squid_ldap_auth, squid_ldap_group
Leave a comment
Possible Bug at OpenBSD
Hello there, My apologies, I’m working so much, and the time is scarce. Coming soon, I will to back post regularly. by hour, I will post a video with a possible bug that I discovered at OpenBSD Follow the video: … Continue reading
How to block TOR Network with OpenBSD and PF
1 – Fetch tor master nodes ( Used for tor clients fetch exit node list ) * Trick viewed on Network Security Hacks – #hack 53 Download tor source: and edit the following file. mybox@knights ~/tor-0.2.1.26 $ vi src/or/config.c look … Continue reading
Configuring WPAD under OpenBSD
Hello there, First of all, what is wpad ? WPAD is acronym to Web Proxy Autodiscovey Protocol, it is reponsible for automatic detecting of proxy under web browsers. I will assume that you know OpenBSD, know configure a basic DHCP … Continue reading
IP and MAC Address Association on OpenBSD
On this tutorial, I will show how associate mac and ip address and filter it on OpenBSD 4.8. Create a bridge # ifconfig bridge0 create Assuming that your LAN network card is rl0, add this to bridge and block non … Continue reading
Testing Network with Iperf
Iperf is an traffic generator. It is distributed under BSD License . Iperf has a client and server functionality, and can measure the throughput between the two ends, either unidirectonally or bi-directionally. It is open source software and runs on … Continue reading
Building VPN’s with OpenBSD and IPSEC
In this tutorial, I’ll show how to create a VPN using OpenBSD Making a VPN on OpenBSD is very easy. Within minutes Follow the scenario: Consider A and B OpenBSD’s respectively . Adjust /etc/sysctl.conf on both sides. net.inet.ip.forwarding=1 net.inet.ah.enable=1 net.inet.esp.enable=1 … Continue reading