dslreports logo
uniqs
17

Hank
Searching for a new Frontier
Premium Member
join:2002-05-21
Burlington, WV

Hank to KUppiano

Premium Member

to KUppiano

Re: Netgear 7550 Routing Table -- How To?

That may work.

I find it hard to understand why anyone would buy a production device without documentation.

Ben J
My spoon is too big
Premium Member
join:2011-09-16
Elk Grove, CA

Ben J

Premium Member

said by Hank:

I find it hard to understand why anyone would buy a production device without documentation.

Does that really surprise you at all about Frontier? Actually, there is documentation, just none that's externally published and little that's provided to technicians. The modem is supposed to be simple to subscribers. It's the whole "if we supply documentation on how to do other things with it, then our CSRs/techs get roped into supporting those other things." I won't argue if that's really a good business idea or not (I'm pretty sure I can guess where you guys all stand on the matter), but the documentation is intentionally bleak and not all config items are available in the GUI. You are literally on your own to make anything other than the basic config work, if it's even possible to do what you want.

That said, I run a very similar port forward setup at home and will dogfood this for you over the weekend with a 7550 and maybe a couple of our other modems. I suspect a simple WAN route is not going to be sufficient to get this done. If I can't make it work, I'll relay the question up to Netgear on Monday for a definitive (though officially unofficial) answer.
gozer9
Premium Member
join:2010-08-09
Rochester, NY

gozer9

Premium Member

One question can you get to your server from your lan with the the DDNS pub resolution using just the dsl modems router?
gozer9

gozer9 to Ben J

Premium Member

to Ben J
One question can you get to your server from your lan with the the DDNS pub resolution using just the dsl modems router? I have used telnet to access some routers to gain access to all of its settings not shown in the GUI.
I would apreciate if you could test my idea and set up a new DDNS name w/staic ip that is your lans host private IP and set a static route in the modem/router and see if this works.

Ben J
My spoon is too big
Premium Member
join:2011-09-16
Elk Grove, CA

Ben J

Premium Member

said by gozer9:

I would apreciate if you could test my idea and set up a new DDNS name w/staic ip that is your lans host private IP and set a static route in the modem/router and see if this works.

Well, that would work but wouldn't meet the OP's requirements of using the same hostname for both internal and external. If his service is a web server and his DynDNS service supported DNS round robin (multiple A records), it would work as most modern browsers will automatically move to the next A record if the first doesn't respond. But services like DynDNS don't support multiple A records. Maybe multiple /etc/host entries to get the same?

Along that concept (and not using DNS), you could add the WAN IP of your modem as a secondary IP to the server. Then on the clients you want to access the server using the "WAN IP" address from inside the network, you static route (on the client) the WAN IP to the real LAN IP of the server.

For example, I configured this for my terminal server:

int eth0
ip address 192.168.1.200 255.255.255.0
ip address real.wan.ip 255.255.255.252 secondary (or as a loopback interface)

Then on my PC, I did:

route add -p real.wan.ip mask 255.255.255.255 192.168.1.200

This caused my PC to send all packets for the WAN IP of the modem directly to the terminal server, bypassing the modem. That works fine until I take my laptop with the static route off the private LAN network and somewhere else (say to the coffee shop down the street). Then my connections back home get blackholed if I forget to remove the static route.

I can get around that by forgetting about the static route on the PC entirely, artificially widening the mask (or changing the subnet) on my LAN DHCP pool to be inclusive of the WAN IP, and enabling proxy-arp on my terminal server. That works for me, but I suspect his "server" is not a Cisco router which supports proxy-arp. Also, all of these would be annoying in that I'd have to update the server manually every time my WAN IP changed. Not really a clean solution.