It sorta paints a picture, but I'm a little confused on the network layout of this example. the address that you are tuneling to, the 1.100.200.100, is that a router on the inside of the central site's ethernet side, or is that a workstation? Also, I assume that the link between 20.21.79.6 and 10.11.1.1 is an internet connection (since the addresses lie on different networks) I drew your description out on paper, but I'm not really sure where everything goes, hence I'm having trouble applying it to my situation. Any more ip descriptions of the interfaces you could give me would be greatly helpful. I'm sure it will clear up if we hammer at it.
Main Topics
Browse All Topics





by: hstPosted on 2000-12-20 at 04:50:52ID: 35051
Here is an example (really running, although the net numbers are changed). We're tunneling the access to host 1.100.200.100, which is somehow connected to the central's site router:
Central site (net 20.21.0.0)
int ser 4
ip address 20.21.79.6
int tunnel 135
ip address 20.21.73.157 255.255.255.252
tunnel source 20.21.79.6
tunnel destination 10.11.1.1
no shutdown
ip classless
ip route 10.11.0.0 255.255.0.0 20.21.73.158
ip route 1.100.200.100 255.255.255.255 ethernet 8
Remote site (net 10.11.0.0)
int ser 0
ip address 10.11.1.1 255.255.255.0
int tunnel 100
ip address 20.21.73.158 255.255.255.252
tunnel source 10.11.1.1
tunnel destination 20.21.79.6
no shutdown
ip classless
ip route 1.100.200.100 255.255.255.255 20.21.73.157
Hope that helps.