bonald
Members-
Posts
11 -
Joined
-
Last visited
Reputation
5 NeutralAbout bonald

-
Web Filtering/Firewall Suggestions
bonald replied to denwei's topic in Internet Related/Filtering/Firewall
+1 pfsense + squid with ntlm auth. -
Ive built one recently. Works on iPad, android, flash, chrome, Firefox, IE ... You need a Linux server. Latest ffmpeg to stream the m3u8 to have it compatible with iPads. Ffserver to stream webm for chrome, android and Firefox . You takes your live stream source and pass it to ffmpeg and ffserver and point your client to the correct URL. I've used a php script to detect the user agent to redirect the client to the correct URL. Typing this on a phone I'll post more details if your interested.
-
any idea why ?
-
okay, some problems with the extended view. It's working fine with basic view. I am using Win2008R2 with 5.4.5 http://172.16.23.23/extranet/api/mycomputer/listdrives
-
[ms office - 2010] Office 2010 Configuring HELP
bonald replied to riverphoenix12's topic in Office Software
First thing I would do is compare the MSI package installation with a regular Office setup.exe installation. It might be your MSI that is always repairing the installation at startup because it can't find a certain file (ex: document and settings of the guy who made the MSI).- 5 replies
-
- 2010
- configures
-
(and 2 more)
Tagged with:
-
you might want to check packetfence also. PacketFence: Home
-
What we do here : We have two SSID. SSID1 Our RADIUS server only allow domain joined computers to connect (computer authentication). SSID2 Guest-WLAN, RADIUS server only allow the Staff group to connect via a form based-authentication. That way students can only use school computers on our WLAN, no ipod/iphone.
-
What Web Filtering Software does everyone use?
bonald replied to runcmd's topic in Internet Related/Filtering/Firewall
We are running endian here (Endian - Unified Threat Management, Firewall Appliance, UTM Appliance, Hotspot, Antispam, Antivirus, VPN, OpenVPN, Open Source). it's been up for 102 days and pushing around 15mbits and 200 users at peek time. -
You should try opendns.org Use these DNS as your forwarders. Go to their website , setup an account, checkmark the websites categories you want to block and bingo!
-
I am using this method in one classroom. I gave the teacher the right to modify the classroom OU in question. I have created a policies that enforce a dummy proxy server in Internet Explorer. When the teacher activate the policies in question, after 2-3minutes depending on how long your policies are set to refresh, students can't browse the internet anymore because they are redirected to a proxy server that doesn't exist. I've created a MMC Console with only this OU and the teacher only have to click Enable/Disable. The other thing i've also done is I created a OU named NO-INTERNET. The teacher can drag and drop ONE or more specific computer to this OU if he only wants to block a couple of students and not the entire room. Also, if the policy is not refreshing for some reason, i've installed SpecOPS Gpupdate on the teacher computer so he can do a gpupdate /force from the MMC. !!
-
This is what i've been using. I used to have a script for each group. That was a pain. Now i only have to edit one script to make changes. On Error Resume Next Set objSysInfo = CreateObject("ADSystemInfo") strUserDN = objSysInfo.UserName Set objUser = GetObject("LDAP://" & strUserDN) Set objNetwork = CreateObject("Wscript.Network") Set objShell = CreateObject("WScript.Shell") Set FSO = CreateObject("Scripting.FileSystemObject") 'Map network share by group arrGroups = objUser.GetEx("memberOf") For Each strGroup in arrGroups Set objGroup = GetObject("LDAP://" & strGroup) strGroupName = objGroup.CN Select Case strGroupName Case "Students" objNetwork.MapNetworkDrive "X:", "\\fileserver\students$" Case "Teachers" objNetwork.MapNetworkDrive "K:", "\\fileserver\teachers$" End Select Next
