Link to home
Start Free TrialLog in
Avatar of NUdovich2
NUdovich2

asked on

Dual Wan Router

I have two WAN connections into the network, they are segmented by giving some computers reservations in DHCP.  Thats all working fine.  However, we have a secure VPN that uses the other router and we use RDP to access that VPN to that secure connection.  That uses the primary router - .1

Is there a way to make someone who is using the secondary router - .111 to use .1 when calling this application?  Or RDP ing to that address?

Thanks
Avatar of SolracM
SolracM

If you are using the Windows vOS try the route command to route the correct IP packets to the corresponding gateway IP.
http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/route.mspx?mfr=true
Avatar of NUdovich2

ASKER

When I try this it says "bad gateway address gateway"

I go to cmd
route add (RDP address) netmask (RDP subnet mask) gateway (desired gateway .1)

the gateway OPRAND is IMPLIED no need to use the word gateway
just user the IP address
(drop the word GATEWAY)
Now i get bad gateway address netmask.

I know the subnet is 255.255.255.0 for the desired address, that is also our internal DG

ASKER CERTIFIED SOLUTION
Avatar of SolracM
SolracM

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Undestod, that is my format.  
may I please see the coomand you are using?
can you cut and paste it here?
route ADD 192.168.201.xxx MASK 255.255.255.0 192.168.1.1

says the route addition failed:  Teh specified mask parameter is invalid (Destination & Mak) != Destination.

However if I do this

route ADD 192.168.201.0 MASK 255.255.255.0 192.168.1.1 it adds the route.  and that is what the solution was.  Points to you.