Estou tentando fazer com que meu roteador Cisco se conecte à Internet.
Eu tenho o PPPoE funcionando, eu acho, porque eu ativei a depuração e vi que ele foi autenticado corretamente, e ele também dá à minha interface do discador um endereço IP.
Mas não consigo fazer ping na Internet (8.8.8.8) nem na interface do discador ...
Aqui está minha configuração:
service tcp-keepalives-in
service tcp-keepalives-out
service timestamps debug datetime msec
service timestamps log datetime msec
service password-encryption
!
hostname RouterName
!
boot-start-marker
boot-end-marker
!
no logging console
enable secret 5 password
!
no aaa new-model
ip cef
!
!
!
!
ip ssh version 2
!
multilink bundle-name authenticated
!
!
!
!
username name privilege 5 password 7 password
!
!
!
!
!
!
interface FastEthernet0/0
no ip address
duplex auto
speed auto
pppoe enable group gloabl
pppoe-client dial-pool-number 1
!
interface FastEthernet0/1
ip address 192.168.0.254 255.255.255.0
ip nat inside
ip virtual-reassembly
duplex auto
speed auto
!
interface Dialer1
ip address negotiated
ip access-group 101 in
no ip unreachables
ip mtu 1492
ip nat outside
ip virtual-reassembly
encapsulation ppp
dialer pool 1
ppp chap hostname [email protected]
ppp chap password 7 password
ppp pap sent-username [email protected] password 7 password
!
ip route 0.0.0.0 0.0.0.0 Dialer1
!
!
no ip http server
no ip http secure-server
ip nat inside source list 101 interface Dialer1 overload
!
access-list 101 permit ip 192.168.0.0 0.0.0.255 any
E aqui está minha interface de discagem obtendo o ip:
Interface IP-Address OK? Method Status Protocol
FastEthernet0/0 unassigned YES NVRAM up up
FastEthernet0/1 192.168.0.254 YES NVRAM up up
NVI0 unassigned NO unset up up
Virtual-Access1 unassigned YES unset up up
Dialer1 XXX.XXX.XX.XX YES IPCP up up
E por último, aqui estão as minhas rotas:
XX.0.0.0/32 is subnetted, 2 subnets
C XXX.XXX.XX.XX is directly connected, Dialer1
C XXX.XXX.YY.1 is directly connected, Dialer1
192.168.0.0/24 is subnetted, 1 subnets
C 192.168.0.0 is directly connected, FastEthernet0/1
S* 0.0.0.0/0 is directly connected, Dialer1
Eu fiquei sem ideias aqui ... Alguém tem algum pensamento?