Nat connection issue
Hi All, can anyone help me please, i have bridged my local network connection and ms loopbackup, assigned and ip address in the range of the cisco router(gns3), i have configured the router as pppoe client with BT modem, i could access the internet from the router but not from the pc althought i can ping the router from the pc, when i run show ip nat transalations it is empty, here is my config:
interface FastEthernet0/0
ip address 192.168.1.254 255.255.255.0
duplex auto
speed auto
pppoe enable group global
pppoe-client dial-pool-number 1
!
interface Dialer1
ip address negotiated
ip mtu 1492
ip nat outside
ip virtual-reassembly
encapsulation ppp
dialer pool 1
dialer-group 1
ppp chap hostname //hostname
ppp chap password 0 passord
!
no ip http server
no ip http secure-server
ip route 0.0.0.0 0.0.0.0 Dialer1
!
!
ip name-server 8.8.8.8
This is the config for the many to one NAT.
ip nat inside source list 1 interface Dialer1 overload
!
access-list 1 permit 192.168.1.0 0.0.0.255
!
!
!
control-plane
!
!
!
!
!
!
!
!
!
!
line con 0
logging synchronous
line aux 0
line vty 0 4
!
!
end
interface FastEthernet0/0
ip address 192.168.1.254 255.255.255.0
duplex auto
speed auto
pppoe enable group global
pppoe-client dial-pool-number 1
!
interface Dialer1
ip address negotiated
ip mtu 1492
ip nat outside
ip virtual-reassembly
encapsulation ppp
dialer pool 1
dialer-group 1
ppp chap hostname //hostname
ppp chap password 0 passord
!
no ip http server
no ip http secure-server
ip route 0.0.0.0 0.0.0.0 Dialer1
!
!
ip name-server 8.8.8.8
This is the config for the many to one NAT.
ip nat inside source list 1 interface Dialer1 overload
!
access-list 1 permit 192.168.1.0 0.0.0.255
!
!
!
control-plane
!
!
!
!
!
!
!
!
!
!
line con 0
logging synchronous
line aux 0
line vty 0 4
!
!
end
Comments
-
tomtom1 Member Posts: 3751) Where's the ip nat inside statement?
2) Does the PC have a default gateway?
3) Does the PC have valid DNS servers?
4) How do you know you can route to the internet on the router? -
tsiamer Member Posts: 8 ■□□□□□□□□□1) Where's the ip nat inside statement?
2) Does the PC have a default gateway?
3) Does the PC have valid DNS servers?
4) How do you know you can route to the internet on the router?
Thanks Tomtom1 for your reply, i had added ip nat inside in f0/0 and it worked, i really appreciate it.
Regards