Answer: Router>enable
Explanation:
Router# config terminal
Router(config)# hostname munford
munford(config)#ip nat pool test 198.18.154.57 198.18.154.62 netmask 255.255.255.192 munford (config)#ip nat inside source list 1 pool test overload munford (config)#access-list 1 permit 192.168.42.64. 0.0.0.31 munford (config)#interface fa0/0
munford (config-if)# ip address 192.168.42.94 255.255.255.224 munford (config-if)#ip nat inside
munford (config-if)#interface serial 0/0
munford (config-if)#ip nat outside
it is correct that the wildcard for the 192.168.42.64 will be 0.0.0.31???
why is not 63???
please help :'(
Because it wants the network address. It is correct.
ip nat pool test 198.18.154.57 198.18.154.62 netmask 255.255.255.248
why using 64bits for the range of 5 ip address?
refer to Q.176