Search Results
Search found 1676 results on 68 pages for 'dr squid'.
Page 38/68 | < Previous Page | 34 35 36 37 38 39 40 41 42 43 44 45 | Next Page >
-
-
Windows 7 Application Readiness Solution
Full lifecycle solution automates application migration and continuous application readiness projects; InstallShield for VS 2010 also available Windows 7 - InstallShield - Microsoft Windows - Microsoft - Operating SystemsRead the article
-
Silverlight Chasing Broadcasters
Goal is a single runtime platform, server infrastructure, and free programming frameworks Microsoft - Programming - Microsoft Visual Studio - Server - .NET FrameworkRead the article
-
Presented By:
Read the article
-
This Week's Developer Reading List
ExpressionEngine 2, Information Architecture, and Scrum EllisLab - Information Architecture - Knowledge Management - Programming - WebsiteRead the article
-
SmartInspect 3.3 Released
Logging tool introduces support for .NET 4 and Visual Studio 2010 Microsoft Visual Studio - Microsoft - Programming - Component Frameworks - NETRead the article
-
Silverlight Chasing Broadcasters
Goal is a single runtime platform, server infrastructure, and free programming frameworks Microsoft - Programming - Microsoft Visual Studio - Server - .NET FrameworkRead the article
-
UIWEBVIEW: The iPhone's Built-in Browser
Using MonoTouch to integrate a full-featured browser into your application iPhone - IPhone OS - MonoTouch - Handhelds - SmartphonesRead the article
-
F#: Putting the 'Fun' into 'Functional'
The functional language F# is a first-class language in Visual Studio 2010 Microsoft Visual Studio - Microsoft - Language - Visual Studio 2010 - ProgrammingRead the article
-
Virtualization for Developers with VirtualBox
Open source virtualization for multiple platforms VirtualBox - Open source - Virtual machine - Programming - LanguagesRead the article
-
CoreDet and Deterministic Multithreaded Execution
A compiler and runtime system for deterministic multithreaded execution Programming - Compiler - Languages - FAQs Help and Tutorials - CRead the article
-
COBOL Tool Suite Updated
Code in Java, Deploy in COBOL COBOL - Programming - Languages - Java - Commercial Products and ServicesRead the article
-
Presented By:
Read the article
-
Presented By:
Read the article
-
Memory Management as a Separate Thread
New technique for hard-to-parallelize programs Programming - Memory management - Hardware - C++ - LanguagesRead the article
-
What's New in Visual Studio 2010 & .NET 4 for Web Developers
Simplifying the development cycle, while still building quality applications Microsoft Visual Studio - .NET Framework - Microsoft - Programming - Component FrameworksRead the article
-
What's New in Visual Studio 2010 & .NET 4 for Web Developers
Simplifying the development cycle, while still building quality applications Microsoft Visual Studio - .NET Framework - Microsoft - Programming - Component FrameworksRead the article
-
PRACE Award 2010 Winners Announced
"Massively Parallel Granular Flow Simulations with Non-Spherical Particles" paper wins competition Arts - High-performance computing - Business - Instrumentation - Electronics and ElectricalRead the article
-
Top 10 List of Vulnerabilities for Web Developers Released
Injection, XSS at the top of the list Business - Polymers - Chemicals - Processing Methods - MoldingRead the article
-
Presented By:
Read the article
-
The Data Distribution Service for Real-Time Systems: Part 2
Structuring and managing your data Data Distribution Service - Business - Data Distribution Service for Real-Time Systems - Databases - Data WarehousingRead the article
-
Other Voices: Is the Custom Application Dead?
Is the love-fest between CIOs and packaged software is over? Chief information officer - Business - Arts - Companies - ConsultantsRead the article
-
Intel Science Talent Search 2010 Winners
New Mexico Teen Awarded $100,000 New Mexico - United States - Intel Science Talent Search - Government - Business and EconomyRead the article
-
iptables rules for DNS/Transparent proxy with ip exceptions
- by SlimSCSI
I am running a router (A Netgear WNDR3700 if that matters) with dd-wrt. For content filtering I am using OpenDNS. I wanted to make sure a user could not bypass OpenDNS by putting in their own name servers, so I have a rule to catch all DNS traffic. iptables -t nat -A PREROUTING -i br0 -p all --dport 53 -j DNAT --to $LAN_IP I did have one computer on the network I wanted to allow past OpenDNS filters. On that machine I manually set the name servers, and created another rule to allow it to pass iptables -t nat -I PREROUTING -i br0 -s 192.168.1.2 -j ACCEPT This worked well. Today, I installed a transparent proxy (squid) on the router and added these rules: iptables -t nat -A PREROUTING -i br0 -s $LAN_NET -d $LAN_NET -p tcp --dport 80 -j ACCEPT iptables -t nat -A PREROUTING -i br0 -s ! $PROXY_IP -p tcp --dport 80 -j DNAT --to $PROXY_IP:$PROXY_PORT iptables -t nat -I POSTROUTING -o br0 -s $LAN_NET -d $PROXY_IP -p tcp -j SNAT --to $LAN_IP iptables -I FORWARD -i br0 -o br0 -s $LAN_NET -d $PROXY_IP -p tcp --dport $PROXY_PORT -j ACCEPT This also works, however the 192.168.1.2 address does not get routed through squid. How can I have 192.168.1.2 (and maybe others in the future) by-pass the port 53 rules, but not the port 80 rules?Read the article
-
Follow through - How to setup equivalent USVIDEO.ORG DNS-Proxy on Linux
- by DNSDC
I'm quite keen to setup similar service (but FREE) and seems you know how to do this. "you need to run your own private dns with artificial records for example pandora.com you also need a real dns to fall back on. now that all requests for these sites are going to your US located box you can open up port 80 on squid and listen for the traffic. your cache_peer settings should allow you to map each domain to their real ip. The trafic now flows initially from your US located box to the service but then the server responds it responds directly to the host. no magic here. I won't share the fine details as it probably best serves all to not over exploit this." Did you mean we need to 1. Setup Forward-only DNS on a US-based server/ip? 2. Setup cache_peer and cache_peer_domain in Squid, I got this. 3. Any iptables rule, prerouting, postrouting rules needed to accomplish this? Appreciate your expert advice. Cheers, DonRead the article