Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Re: Why proxy server set to 127.0.0.1?

0 views
Skip to first unread message
Message has been deleted

Jan Il

unread,
Feb 12, 2005, 8:53:50 PM2/12/05
to
Hi Zak :-)

If you do not need the proxy, the try the following and see if it helps:

Disable Proxy Settings
Tools>Internet Options> Connections tab> LAN Settings button
Under Proxy server, make sure the box there is unchecked

Disable Automatic Proxy configuration
http://charterpipelinentx.net/disableproxy.htm


Hope this helps

Jan :)
Smiles are meant to be shared,
that's why they're so contagious.

Replies are posted only to the newsgroup for the benefit or other readers.
How to make a good newsgroup post:
http://www.dts-l.org/goodpost.htm


>I use XP+SP1. I am in the UK and I am connected to NTL broadband.
>
> I am almost certain that I used to have no proxy sevrer set in IE6 >
> Tools > Internet Options > Connections > Lan Settings.
>
> However I now see that the Use Proxy Server box is ticked and the IP
> address entered is the loopback address 127.0.0.1 on port 81.
>
> Some web sites do not like this and they have problems.
>
> I also have Zome Alarm 4.5 and also the antivirus Avast (version 4.5
> home edition). Perhaps one of these two applications change the LAN
> Settings?
>
> I also use Firefox and Opera as browsers. Their own settings seem
> unchanged and do not refer to a proxy server but when I try to go to
> the problem web pages (eg http://www.firstdirect.com/) then they
> return a message protesting about proxy servers.
>
> How can I get around this?
>


Charlie Tame

unread,
Feb 12, 2005, 9:09:24 PM2/12/05
to
A popup blocker might do this, check Zone Alarm if it has one, stop blocking
and see if settings change.

In that case what would happen is that ZA is taking over reading the site
and filtering it's content, leaving IE to look at the ZA proxy for the
filtered output.

I hasten to add that I don't know this for sure but it's possible.

There could also be spyware or malware doing this, however try the obvious
first and look for popup blockers, possible antivirus with similar and then
check task manager to see what's running in case that helps.

Charlie

"Zak" <z...@nomail.invalid> wrote in message
news:95FC120DB...@205.188.138.161...

It's Me

unread,
Feb 13, 2005, 2:22:29 AM2/13/05
to
You have installed something that is routing you through your local IP.

What have you installed recently?

Dr Teeth

unread,
Feb 13, 2005, 3:55:15 AM2/13/05
to
On Sat, 12 Feb 2005 20:09:24 -0600, "Charlie Tame" <cha...@tames.net>
wrote:

>I hasten to add that I don't know this for sure but it's possible.

Some email antivirus scanners do it.
--
Cheers,

Guy

** Stress - the condition brought about by having to
** resist the temptation to beat the living daylights
** out of someone who richly deserves it.

steve

unread,
Feb 13, 2005, 7:31:38 AM2/13/05
to
On Sun, 13 Feb 2005 01:46:29 +0000, Zak wrote:

> I use XP+SP1. I am in the UK and I am connected to NTL broadband.
>
> I am almost certain that I used to have no proxy sevrer set in IE6 >
> Tools > Internet Options > Connections > Lan Settings.
>
> However I now see that the Use Proxy Server box is ticked and the IP
> address entered is the loopback address 127.0.0.1 on port 81.

Unfortunately last time I looked windows does not allow you to see what is
listening on a port (does XPSP2? the most secure ever?)

Download this
http://www.sysinternals.com/ntw2k/source/tcpview.shtml

and see what is listening on TCP port 81.

If it is something like rundll.exe or the other easily hijacked system
process you will need to do futher investigation.

> Some web sites do not like this and they have problems.

Well it is best to have only proxying of HHTP and not everything, I am
sure you can do that on windows.



> I also have Zome Alarm 4.5 and also the antivirus Avast (version 4.5
> home edition). Perhaps one of these two applications change the LAN
> Settings?
>
> I also use Firefox and Opera as browsers. Their own settings seem
> unchanged and do not refer to a proxy server but when I try to go to the
> problem web pages (eg http://www.firstdirect.com/) then they return a
> message protesting about proxy servers.

I run a transparent proxy and never have problems with firstdirect.

BTW: Avoid using your home banking until you get to the bottom of this.

steve

unread,
Feb 13, 2005, 7:32:05 AM2/13/05
to
On Sun, 13 Feb 2005 08:55:15 +0000, Dr Teeth wrote:

> On Sat, 12 Feb 2005 20:09:24 -0600, "Charlie Tame" <cha...@tames.net>
> wrote:
>
>>I hasten to add that I don't know this for sure but it's possible.
>
> Some email antivirus scanners do it.

For HTTP?

Muxton

unread,
Feb 13, 2005, 7:42:29 AM2/13/05
to
On Sun, 13 Feb 2005 12:31:38 +0000, steve <st...@nospam.invalid>
wrote:


>
>Unfortunately last time I looked windows does not allow you to see what is
>listening on a port (does XPSP2? the most secure ever?)

Command prompt -> netstat -b

Tells you which app has opened which port.

Command prompt -> netstat -a

Tells you which ports are listening.

Command prompt -> netstat /? gives you the whole rundown of options.

Jake

Dave J

unread,
Feb 13, 2005, 11:03:01 AM2/13/05
to
In MsgID<8aiu01hb5e7bdl1m3...@4ax.com> within
uk.telecom.broadband, 'Muxton' wrote:

>On Sun, 13 Feb 2005 12:31:38 +0000, steve <st...@nospam.invalid>
>wrote:
>
>
>>
>>Unfortunately last time I looked windows does not allow you to see what is
>>listening on a port (does XPSP2? the most secure ever?)
>
>Command prompt -> netstat -b
>
>Tells you which app has opened which port.

I think you'll find that's netstat -o

>Command prompt -> netstat -a
>
>Tells you which ports are listening.

This can be combined with -o, so

Command prompt -> netstat -a -o

lists all open ports, and gives the process identity number (PID) of the
owner of each port.

Then, to find the name, window title and username of the process, use

-> tasklist /V /FI "PID eq NNNN"

where NNNN is the PID number you got from netstat.

--
Dave Johnson - req...@freeuk.com

Charlie Tame

unread,
Feb 13, 2005, 2:14:41 PM2/13/05
to

"Dr Teeth" <no_email_h...@tardis.com> wrote in message
news:be5u01t232jll5c3d...@4ax.com...

> On Sat, 12 Feb 2005 20:09:24 -0600, "Charlie Tame" <cha...@tames.net>
> wrote:
>
>>I hasten to add that I don't know this for sure but it's possible.
>
> Some email antivirus scanners do it.
> --
> Cheers,
>
> Guy

Yes I guess they would have to for web based email, but I was not thinking
of that :)


Robert Aldwinckle

unread,
Feb 14, 2005, 9:40:54 PM2/14/05
to
(posted from ie6.browser on msnews server (not USENET);
all crossposting left for possible propagation but I would be just as happy
to drop the USENET newsgroup if it is not needed.)

"steve" <st...@nospam.invalid> wrote in message
news:pan.2005.02.13....@nospam.invalid...


> On Sun, 13 Feb 2005 01:46:29 +0000, Zak wrote:
>
>> I use XP+SP1. I am in the UK and I am connected to NTL broadband.
>>
>> I am almost certain that I used to have no proxy sevrer set in IE6 >
>> Tools > Internet Options > Connections > Lan Settings.
>>
>> However I now see that the Use Proxy Server box is ticked and the IP
>> address entered is the loopback address 127.0.0.1 on port 81.
>
> Unfortunately last time I looked windows does not allow you to see what is
> listening on a port (does XPSP2? the most secure ever?)


Look again. <eg>

netstat -ao | find /i "listening"

Then use tasklist /v /fi "PID eq ..." (or Task Manager's Processes tab)


---

0 new messages