Configuration and Administration > Devices > Proxies > Configuring PC Routing Tables

Configuring PC Routing Tables
Caution: A console associated with a device on a private network cannot be accessed via an APM web proxy connection.
If any of your devices are on a network that is different than your PC’s network, you will need to configure the routing table on your PC so the private network can be accessed by a Forward Proxy setting. The APM will connect to your local network (the one with the PC) via the Eth0 port. The APM will connect to the private network via the Eth1 port.
In this procedure, the following parameters are assumed:
APM Eth1 IP Address and Private Network Default Gateway
To Configure PC Routing Tables
Windows PC Routing Table
1.
2.
c:\>route -p add 10.10.10.0 mask 255.255.255.0 192.168.48.162
Note: Adding the “-p” to the “route add” command, makes the new route stay configured when you reboot your PC.
3.
c:\>netstat -rn
You should see a display similar to the following:
C:\Documents and Settings\Gregg>netstat -rn

Route Table
===========================================================================
Interface List
0x1 ........................... MS TCP Loopback interface
0x2 ...52 2d bc c2 f5 b4 ...... MAC Bridge Miniport - Packet Scheduler Miniport
===========================================================================
===========================================================================
Active Routes:
Network Destination        Netmask          Gateway       Interface  Metric
          0.0.0.0          0.0.0.0     192.168.48.1   192.168.48.26       10
       10.10.10.0    255.255.255.0   192.168.48.162   192.168.48.26       1
        127.0.0.0        255.0.0.0        127.0.0.1       127.0.0.1       1
     192.168.48.0    255.255.252.0    192.168.48.26   192.168.48.26       10
    192.168.48.26  255.255.255.255        127.0.0.1       127.0.0.1       10
   192.168.48.255  255.255.255.255    192.168.48.26   192.168.48.26       10
        224.0.0.0        240.0.0.0    192.168.48.26   192.168.48.26       10
  255.255.255.255  255.255.255.255    192.168.48.26   192.168.48.26       1
Default Gateway:      192.168.48.1
===========================================================================
Persistent Routes:
  Network Address          Netmask  Gateway Address  Metric
       10.10.10.0    255.255.255.0    192.168.48.162       1 
Linux PC Routing Table
1.
2.
# route add -net 10.10.10.0 netmask 255.1255.255.0 gw 192.168.48.162
3.
# netstat -rn
You should see a display similar to the following:
# netstat -rn
Kernel IP routing table
Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface
10.10.10.0      192.168.48.162  255.255.255.0   UG        0 0          0 eth0
192.168.48.0    0.0.0.0         255.255.252.0   U         0 0          0 eth0
169.254.0.0     0.0.0.0         255.255.0.0     U         0 0          0 eth0
127.0.0.0       0.0.0.0         255.0.0.0       U         0 0          0 lo
0.0.0.0         192.168.48.1    0.0.0.0         UG        0 0          0 eth0

Configuration and Administration > Devices > Proxies > Configuring PC Routing Tables