All of lore.kernel.org
 help / color / mirror / Atom feed
* yahoo mail problem
@ 2005-03-05  8:22 hareram
  2005-03-05 14:21 ` Nguyen Dinh Nam
  0 siblings, 1 reply; 5+ messages in thread
From: hareram @ 2005-03-05  8:22 UTC (permalink / raw)
  To: netfilter

Hi all

I have iptables running with FC3
I have some different problem
when iam doing NAT and masq.. iam not able to check yahoo mails
when i use the public IP i could able to check mails and send/receive

iam doing ip masq using 1 public ip address.
when i change to another public ip for 2 days iam able to check the yahoo 
mails send/receive ok.
then again start getting the same yahoo mail problem

does any one face this kind of problem or any solution for this kind of 
situation ??

suggestion and some docs will be appreciated

hare 




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: yahoo mail problem
  2005-03-05  8:22 yahoo mail problem hareram
@ 2005-03-05 14:21 ` Nguyen Dinh Nam
  2005-03-07  7:18   ` hareram
  0 siblings, 1 reply; 5+ messages in thread
From: Nguyen Dinh Nam @ 2005-03-05 14:21 UTC (permalink / raw)
  To: hareram; +Cc: netfilter

If you use pppoe, and your ISP blocks ICMP packets (many incompetent 
ISPs do so), you will need tp CLAMP MSS:
http://lists.roaringpenguin.com/pipermail/rp-pppoe/2004-August/000006.html

hareram wrote:

> Hi all
>
> I have iptables running with FC3
> I have some different problem
> when iam doing NAT and masq.. iam not able to check yahoo mails
> when i use the public IP i could able to check mails and send/receive
>
> iam doing ip masq using 1 public ip address.
> when i change to another public ip for 2 days iam able to check the 
> yahoo mails send/receive ok.
> then again start getting the same yahoo mail problem
>
> does any one face this kind of problem or any solution for this kind 
> of situation ??
>
> suggestion and some docs will be appreciated
>
> hare



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: yahoo mail problem
  2005-03-05 14:21 ` Nguyen Dinh Nam
@ 2005-03-07  7:18   ` hareram
  2005-03-07  7:34     ` Navneet Choudhary
  0 siblings, 1 reply; 5+ messages in thread
From: hareram @ 2005-03-07  7:18 UTC (permalink / raw)
  To: Nguyen Dinh Nam; +Cc: netfilter

Hi

no iam not using pppoe
iam using plain ethernet based connectivity to my ISP

any other suggestions

hare
----- Original Message ----- 
From: "Nguyen Dinh Nam" <64vn@cardvn.net>
To: "hareram" <hareram@sol.net.in>
Cc: <netfilter@lists.netfilter.org>
Sent: Saturday, March 05, 2005 7:51 PM
Subject: Re: yahoo mail problem


> If you use pppoe, and your ISP blocks ICMP packets (many incompetent ISPs 
> do so), you will need tp CLAMP MSS:
> http://lists.roaringpenguin.com/pipermail/rp-pppoe/2004-August/000006.html
>
> hareram wrote:
>
>> Hi all
>>
>> I have iptables running with FC3
>> I have some different problem
>> when iam doing NAT and masq.. iam not able to check yahoo mails
>> when i use the public IP i could able to check mails and send/receive
>>
>> iam doing ip masq using 1 public ip address.
>> when i change to another public ip for 2 days iam able to check the yahoo 
>> mails send/receive ok.
>> then again start getting the same yahoo mail problem
>>
>> does any one face this kind of problem or any solution for this kind of 
>> situation ??
>>
>> suggestion and some docs will be appreciated
>>
>> hare
>
>
>
> 




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: yahoo mail problem
  2005-03-07  7:18   ` hareram
@ 2005-03-07  7:34     ` Navneet Choudhary
  2005-03-07  8:53       ` hareram
  0 siblings, 1 reply; 5+ messages in thread
From: Navneet Choudhary @ 2005-03-07  7:34 UTC (permalink / raw)
  To: hareram; +Cc: netfilter

iptables -t nat -A POSTROUTING –s <your LAN network> -o <the eth port
used to go outside> -j SNAT --to-source <Your VALID TROUBLED PUBLIC
IP>

e.g
-A POSTROUTING -s 192.168.0.1/255.255.0.0 -o eth1 -j SNAT --to-source
66.94.234.13


 >> when iam doing NAT and masq.. iam not able to check yahoo mails
> >> when i use the public IP i could able to check mails and send/receive

are you changing Public IP when you sitwch to second IP & won't able
to send/receive mails.


Regards,
Navneet


On Mon, 7 Mar 2005 12:48:32 +0530, hareram <hareram@sol.net.in> wrote:
> Hi
> 
> no iam not using pppoe
> iam using plain ethernet based connectivity to my ISP
> 
> any other suggestions
> 
> hare
> ----- Original Message -----
> From: "Nguyen Dinh Nam" <64vn@cardvn.net>
> To: "hareram" <hareram@sol.net.in>
> Cc: <netfilter@lists.netfilter.org>
> Sent: Saturday, March 05, 2005 7:51 PM
> Subject: Re: yahoo mail problem
> 
> > If you use pppoe, and your ISP blocks ICMP packets (many incompetent ISPs
> > do so), you will need tp CLAMP MSS:
> > http://lists.roaringpenguin.com/pipermail/rp-pppoe/2004-August/000006.html
> >
> > hareram wrote:
> >
> >> Hi all
> >>
> >> I have iptables running with FC3
> >> I have some different problem
> >> when iam doing NAT and masq.. iam not able to check yahoo mails
> >> when i use the public IP i could able to check mails and send/receive
> >>
> >> iam doing ip masq using 1 public ip address.
> >> when i change to another public ip for 2 days iam able to check the yahoo
> >> mails send/receive ok.
> >> then again start getting the same yahoo mail problem
> >>
> >> does any one face this kind of problem or any solution for this kind of
> >> situation ??
> >>
> >> suggestion and some docs will be appreciated
> >>
> >> hare
> >
> >
> >
> >
> 
>


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: yahoo mail problem
  2005-03-07  7:34     ` Navneet Choudhary
@ 2005-03-07  8:53       ` hareram
  0 siblings, 0 replies; 5+ messages in thread
From: hareram @ 2005-03-07  8:53 UTC (permalink / raw)
  To: Navneet Choudhary; +Cc: netfilter

HI


when i change the Another Public IP some time
it works like charm........but later i again the same problem

hare
----- Original Message ----- 
From: "Navneet Choudhary" <navneetkc@gmail.com>
To: "hareram" <hareram@sol.net.in>
Cc: <netfilter@lists.netfilter.org>
Sent: Monday, March 07, 2005 1:04 PM
Subject: Re: yahoo mail problem


iptables -t nat -A POSTROUTING –s <your LAN network> -o <the eth port
used to go outside> -j SNAT --to-source <Your VALID TROUBLED PUBLIC
IP>

e.g
-A POSTROUTING -s 192.168.0.1/255.255.0.0 -o eth1 -j SNAT --to-source
66.94.234.13


 >> when iam doing NAT and masq.. iam not able to check yahoo mails
> >> when i use the public IP i could able to check mails and send/receive

are you changing Public IP when you sitwch to second IP & won't able
to send/receive mails.


Regards,
Navneet


On Mon, 7 Mar 2005 12:48:32 +0530, hareram <hareram@sol.net.in> wrote:
> Hi
>
> no iam not using pppoe
> iam using plain ethernet based connectivity to my ISP
>
> any other suggestions
>
> hare
> ----- Original Message -----
> From: "Nguyen Dinh Nam" <64vn@cardvn.net>
> To: "hareram" <hareram@sol.net.in>
> Cc: <netfilter@lists.netfilter.org>
> Sent: Saturday, March 05, 2005 7:51 PM
> Subject: Re: yahoo mail problem
>
> > If you use pppoe, and your ISP blocks ICMP packets (many incompetent 
> > ISPs
> > do so), you will need tp CLAMP MSS:
> > http://lists.roaringpenguin.com/pipermail/rp-pppoe/2004-August/000006.html
> >
> > hareram wrote:
> >
> >> Hi all
> >>
> >> I have iptables running with FC3
> >> I have some different problem
> >> when iam doing NAT and masq.. iam not able to check yahoo mails
> >> when i use the public IP i could able to check mails and send/receive
> >>
> >> iam doing ip masq using 1 public ip address.
> >> when i change to another public ip for 2 days iam able to check the 
> >> yahoo
> >> mails send/receive ok.
> >> then again start getting the same yahoo mail problem
> >>
> >> does any one face this kind of problem or any solution for this kind of
> >> situation ??
> >>
> >> suggestion and some docs will be appreciated
> >>
> >> hare
> >
> >
> >
> >
>
>






^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-03-07  8:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-05  8:22 yahoo mail problem hareram
2005-03-05 14:21 ` Nguyen Dinh Nam
2005-03-07  7:18   ` hareram
2005-03-07  7:34     ` Navneet Choudhary
2005-03-07  8:53       ` hareram

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.