Hey. I am studying for my CCNA. Infact almost finished.
I get bored of study material quick and like to get my hands of cisco equipment at home to practice. I have had a few routers set up at home connected to my ISP and internal network but had to sacrifice wifi to do this. I got bored of this and bought a 877w so i can have wifi and still mess about with the IOS.
I am in the UK with bt infinity which comes through a VDSL Modem...
Here is what they dont teach you for CCNA
1 VDSL
2 Wireless

so, as you can imagine, I have spent plenty of time banging my head against a wall. I have finally.... FINALLY managed to set up the VDSL connection to my ISP. (different to the 3725 router I had) It turns out I had to move my WAN over to vlan2 and my LAN is now on VLAN1.
I have DHCP running and my devices on VLAN1 have all picked up an internal IP address 192 ect.
I can ping from the IOS CLI to public IP addresses.
I can ping from my device to the router using the VLAN1 Private IP address
BUT
I can NOT ping from the router to my laptop (even though its IP address came from the routers DHCP pool)
AND I can not get my laptop out into the internet.
So... I think I am missing some config which enables routing between the 2 vlans??? But I dont know what.
I have tried loads of things but as I say, I am doing CCNA and not of this is covered so I am just trying to troubleshoot this by google searching. With no Joy.
Here is my config..
I get bored of study material quick and like to get my hands of cisco equipment at home to practice. I have had a few routers set up at home connected to my ISP and internal network but had to sacrifice wifi to do this. I got bored of this and bought a 877w so i can have wifi and still mess about with the IOS.
I am in the UK with bt infinity which comes through a VDSL Modem...
Here is what they dont teach you for CCNA
1 VDSL
2 Wireless
so, as you can imagine, I have spent plenty of time banging my head against a wall. I have finally.... FINALLY managed to set up the VDSL connection to my ISP. (different to the 3725 router I had) It turns out I had to move my WAN over to vlan2 and my LAN is now on VLAN1.
I have DHCP running and my devices on VLAN1 have all picked up an internal IP address 192 ect.
I can ping from the IOS CLI to public IP addresses.
I can ping from my device to the router using the VLAN1 Private IP address
BUT
I can NOT ping from the router to my laptop (even though its IP address came from the routers DHCP pool)
AND I can not get my laptop out into the internet.
So... I think I am missing some config which enables routing between the 2 vlans??? But I dont know what.
I have tried loads of things but as I say, I am doing CCNA and not of this is covered so I am just trying to troubleshoot this by google searching. With no Joy.
Here is my config..
!
ip dhcp pool DSL_DHCP
import all
network 192.168.1.0 255.255.255.0
dns-server 212.159.13.49 212.159.13.50
default-router 192.168.1.1
!
!
ip name-server 212.159.13.49
ip name-server 212.159.13.50
interface ATM0
no ip address
shutdown
no atm ilmi-keepalive
dsl operating-mode auto
!
interface FastEthernet0
switchport access vlan 2
speed 100
pppoe enable group global
pppoe-client dial-pool-number 10
!
interface FastEthernet1
!
interface FastEthernet2
!
interface FastEthernet3
interface Vlan1
description INTERNAL NETWORK
ip address 192.168.1.1 255.255.255.0
ip nat inside
ip virtual-reassembly
!
interface Vlan2
no ip address
no ip redirects
no ip unreachables
no ip proxy-arp
ip virtual-reassembly
pppoe enable group global
pppoe-client dial-pool-number 10
!
interface Dialer1
ip address negotiated
ip mtu 1492
ip nat outside
ip virtual-reassembly
encapsulation ppp
dialer pool 10
ppp authentication chap callin
ppp chap hostname '''''''''
ppp chap password 0 ''''''''
!
router rip
version 2
network 192.168.1.0
!
ip forward-protocol nd
ip route 0.0.0.0 0.0.0.0 Dialer1
!
ip http server
ip http authentication local
ip http secure-server
ip http timeout-policy idle 60 life 86400 requests 10000
ip nat inside source list 1 interface Dialer1 overload
!
ip access-list extended NAT
permit ip 192.168.1.0 0.0.0.255 any
!
!
!
scheduler max-task-time 5000
