cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
481
Views
0
Helpful
2
Replies

ADSL NAT e loopback interface

scolombo
Cisco Employee
Cisco Employee

Hi I've a quite simple question but I cannot find how to get out of it .

I've a cisco 1700 with an ADSL interface .

I need to configure the ethernet interface with private IP and assign the one of the assigned public ip to a loopback interface and have it natting the inside traffic .

below an extract of the configuration , which doesn't work

can anyone point me out where I'm wrong ?

thanks

interface Loopback2

ip address 85.x.x.x 255.255.255.248

ip nat outside

interface ATM1

no ip address

atm vc-per-vp 256

no atm ilmi-keepalive

dsl operating-mode auto

no fair-queue

!

interface ATM1.1 point-to-point

ip address 85.y.y.y 255.255.255.252

pvc 8/35

encapsulation aal5snap

interface FastEthernet0

ip address 172.31.1.254 255.255.255.0

no ip redirects

no ip unreachables

no ip proxy-arp

ip nat inside

no ip route-cache

no ip mroute-cache

ip nat inside source list 101 interface Loopback2 overload

access-list 101 permit ip 172.31.1.0 0.0.0.255 any log

2 Replies 2

tekha
Level 3
Level 3

Remove the "ip nat outside" from the Loopback2 interface, and place under the ATM1.1 interface.

Hello ,

thanks for the input , in effect I found that the problem was exactly this

Stefano