stop all http traffic

  • Thread starter Thread starter ACMEuser
  • Start date Start date
A

ACMEuser

Hi all
Can I stop all http traffic whit batch file?
I want to do:

StopHTTP.cmd (stop all http traffic, include all browser navigation)

GoHTTP.cmd (go all http traffic, include all browser navigation)

I need this 2 files. :))
thanks
Regards

***************
winXP sp2
IE6
***************
 
ACMEuser said:
Hi all
Can I stop all http traffic whit batch file?
I want to do:

StopHTTP.cmd (stop all http traffic, include all browser navigation)

GoHTTP.cmd (go all http traffic, include all browser navigation)

I need this 2 files. :))
thanks
Regards

***************
winXP sp2
IE6
***************
use 'netsh' command on windows xp .

bye
pep
 
Hello, ACMEuser:
On Fri, 1 Jul 2005 09:45:51 +0200: you wrote...

A> Hi all
A> Can I stop all http traffic whit batch file?
A> I want to do:
A>
A> StopHTTP.cmd (stop all http traffic, include all browser navigation)
A>
A> GoHTTP.cmd (go all http traffic, include all browser navigation)

for IIS look in \Inetpub\AdminScripts

Regards, PaulR. Sadowski [MVP].
 
Not with what is built into Windows XP

The built-in firewall stops inbound traffic to port 80 on your machine (so
people cannot access servers listening on port 80 on your Windows XP
machine).
NETSH.EXE FIREWALL SET PortOpening ENABLE Profile=ALL Scope=ALL
protocol=TCP port=80 name=HTTP

However, there isn't anything that stops outbound traffic to port 80. So,
browsers can freely connect to port 80 of other machines. You will have to
find another solution to that (for example, force all browsers to have to
connect to your proxy server to see the outside world, and then control what
they can see from the proxy server. Whether this proxy server runs on their
machine or yours, that's for you to decide -- as long as they cannot
override your settings.

--
//David
IIS
http://blogs.msdn.com/David.Wang
This posting is provided "AS IS" with no warranties, and confers no rights.
//
Hi all
Can I stop all http traffic whit batch file?
I want to do:

StopHTTP.cmd (stop all http traffic, include all browser navigation)

GoHTTP.cmd (go all http traffic, include all browser navigation)

I need this 2 files. :))
thanks
Regards

***************
winXP sp2
IE6
***************
 
Back
Top