| Author |
NAT rule for internet access
|
|
| zaza230 2002-01-27, 3:17 pm |
| hello, I have a little question concerning nat. ok I have twenty computers on my LAN, on segment 192.168.1.0. the router is connected to the internet via a BRI interface which IP address is 62.62.1.1 . the router is a cisco 1700 . My question is : how can I give internet access to all computer situated on my lan ?.could someone give me the exact NAT rule that will permit me to do this.
I would like to know how to translate 192.168.1.0 to 62.62.1.1 ?
thank in advance | |
| MadChef 2002-01-27, 7:29 pm |
| Assuming the dial happens on bri0 and not a dialer interface:
int e0
ip nat inside
int bri0
ip nat outside
access-list 1 permit 192.168.1.0 0.0.0.255
ip nat inside source list 1 interface bri0 overload
MadChef | |
| zaza230 2002-01-28, 2:53 am |
| thank you very much for your answers. it was very helpful. Sorry for flooding the 3 forums
with the same question, but I needed a answer urgently. Next time I won't do it. again thank a lot | |
| darthfeces 2002-01-28, 9:33 am |
| i don't remember the funtion of overload
(it enables pat on the single ip ?) | |
| MadChef 2002-01-29, 5:05 am |
| quote: Originally posted by darthfeces
i don't remember the funtion of overload
(it enables pat on the single ip ?)
Yes. |
|
|
|