December 2006
Intermediate to advanced
1188 pages
72h 8m
English
You want to set up Local Area Mobility to allow devices to roam throughout your network.
In this example, the roaming device will have a statically
configured address in the 192.168.10.0/24 range. We have to configure
the home router to use Proxy ARP for mobile nodes, allowing other
locally connected devices in the same range to communicate
transparently with the roaming device:
RouterHome#configure terminalEnter configuration commands, one per line. End with CNTL/Z. RouterHome(config)#interfaceRouterHome(config-if)#FastEthernet0/0ip addressRouterHome(config-if)#192.168.10.1 255.255.255.0ip proxy-arpRouterHome(config-if)#ip mobile arpRouterHome(config-if)#exitRouterHome(config)#router eigrpRouterHome(config-router)#99networkRouterHome(config-router)#192.168.10.0default-metricRouterHome(config-router)#10000 10 255 1 1500redistribute mobileRouterHome(config-router)#no auto-summaryRouterHome(config-router)#exitRouterHome(config)#end RouterHome#
Then we have to configure the foreign router, which supports the network segment where our roaming node temporarily finds itself:
RouterForeign#configure terminalEnter configuration commands, one per line. End with CNTL/Z. RouterForeign(config)#interfaceRouterForeign(config-if)#FastEthernet0/0ip addressRouterForeign(config-if)#192.168.110.1 255.255.255.0ip proxy-arpRouterForeign(config-if)#ip mobile arpRouterForeign(config-if)#exitRouterForeign(config)#router eigrpRouterForeign(config-router)# ...99