Yes its prefectly possible...
lets say your outgoing connection is ppp0 and the internal lan is
connected through eth0. then the following should achieve the goal...
(port forwarding logically unrelated at the ISP end, hence I presume
it should be unrelated to wether we take tata, or BSNL)
$EXTERNALIP = {ppp0's ip address}
$DESKTOPIP = { Your Desktop's IP }iptables -I INPUT -i ppp0 -d $EXTERNALIP -s 0.0.0.0/0 --dport 8080 -j ACCEPT iptables -I FORWARD -p tcp -i ppp0 -o eth0 -d $DESKTOPIP--dport 8080 --sport 1024:65535 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT iptables -t nat -I PREROUTING -p tcp -i ppp0 -d $EXTTERNALIP --dport 8080 --sport 1024:65535 -j DNAT --to $DESKTOPIP:8080 regards Sanjay Upadhyay On 3/4/06, saugata ghosh <[EMAIL PROTECTED]> wrote: > Have anyone successfully configured port forwarding > with the tataindicom modem/router ? > I have been trying to do this. Right now the fixed IP > points to the router. Now I want the port 8080 on the > fixed IP to point to my desktop's web server. > The router has got a web interface for configuration. > I played with the NAT, firewall and other settings but > unable to achieve port forwarding. > Am I trying somthing meaningful ? I think it should be > possible. > > -Saugata > > > --- "A. Mani" <[EMAIL PROTECTED]> wrote: > > > On Friday 03 March 2006 11:45, dan trevino wrote: > > > BSNL Data One just charged my wife 885 Rps for > > > usage fees over 1 GB in a month which she didnt > > even use the Internet > > It usually means somebody else has the password and > > the userid. > > > (January, her brother's winblows pc was down). > > This confirms it. > > > OTOH, it also works > > > flawlessly with Linux and I am able to use my > > Vonage VOIP service here, > > > albeit with less quality. > > It is a 256kbps connection clearly. It is nightime > > unlimited. > > > > Best, > > > > > > A. Mani > > Member, Cal. Math. Soc > > Send instant messages to your online friends > > http://in.messenger.yahoo.com > > > > -- > > To unsubscribe, send mail to [EMAIL PROTECTED] > > with the body > > "unsubscribe ilug-cal" and an empty subject line. > > FAQ: http://www.ilug-cal.org/node.php?id=3 > > > > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > > -- > To unsubscribe, send mail to [EMAIL PROTECTED] with the body > "unsubscribe ilug-cal" and an empty subject line. > FAQ: http://www.ilug-cal.org/node.php?id=3 > -- To unsubscribe, send mail to [EMAIL PROTECTED] with the body "unsubscribe ilug-cal" and an empty subject line. FAQ: http://www.ilug-cal.org/node.php?id=3
