I also need to add a static route to my DNS-323. No, this has nothing to do with Dyndns. Let me explain.
I have the D-Link DNS-323 on my local network at home, it has an address like 192.168.2.11.
I have a Cisco VPN controller (a Pix). When I VPN into my network, the Pix gives me an address like 192.168.50.1.
However, the Pix is not the default route to exit my network. The default route is my Netgear router which is at 192.168.2.1.
The D-Link has no notion how to get to the 192.168.50.x network, it tries erroneously to send packets to the Netgear router (the gateway).
What I need to do is the equivalent of this linux route command, on the DNS-323 tp install a static route:
route add -net 192.168.50.0 netmask 255.255.255.0 gw 192.168.2.11 metric 10
How can I do this in the DNS-323?
Michael Grant