> OK, I appended my original post so the picture would be available. To > answer several responders: convincing my network people is no problem, > the > problem is they don't know any more than I do because I'm the network peo > ple > ;-( > Any ideas?
On the device that is the default route for 192.168.1.x, insert a route for 192.168.200.x/24 that points to 192.168.1.221. That will cause all the PCs on your external LAN segment to know that the 192.168.200.x is reached via 192.168.1.221. If your router is a Linux box or something like it, your route statement might look like this: route add net 192.168.200.0 mask 255.255.255.0 gw 192.168.1.221 metric 0 PROXYARP won't help you because the hosts on the GLAN aren't connected directly to the VM stack, so it doesn't have any way to know they're there and that it's supposed to answer for them. If you can't modify the box that is the default route for 192.168.1.x, you can insert an individual route entry on the PCs: For Windows: ROUTE ADD 192.168.200.0 MASK 255.255.255.0 192.168.1.221 METRIC 0 Use the above route add command if you have Linux/Unix PCs. -- db
