Cisco 2610 running as home router help

Joined
2 Mar 2009
Posts
228
Location
republic of Agdgdgwngo
I’m currently studding for my CCNA and I’ve just started semester 2, I have a cisco lab at home with a mix of 2610 and 2621 routers and I have a spare 2610 with an ADSL WIC installed my plan is to set the cisco 2610 up as my home router but I’m unsure what to actually set up i.e. WAN interface and the rest I’ve set up cisco routers in a LAN before but not like this before can anyone help
 
What ISP are you with? If its Be* you'll need to bridge without a dialer, most of the others use a dialer on the interface. Let me know that and I can throw an example up

- Pea0n
 
Not a clue what they use :P

Try this, just replace your UN/PW they supplied with below:

Code:
interface ATM0
 no ip address
 no ip redirects
 no ip unreachables
 ip virtual-reassembly
 no atm ilmi-keepalive
 pvc 0/38
  encapsulation aal5mux ppp dialer
  dialer pool-member 1

interface Dialer0
 ip address negotiated
 no ip redirects
 no ip unreachables
 no ip proxy-arp
 ip nat outside
 ip virtual-reassembly
 encapsulation ppp
 ip route-cache flow
 dialer pool 1
 dialer-group 1
 no cdp enable
 ppp authentication chap callin
 ppp chap hostname <YOUR USERNAME>
 ppp chap password 0 <YOUR PASSWORD>

ip route 0.0.0.0 0.0.0.0 Dialer0

dialer-list 1 protocol ip permit

ip nat inside source list NAT-RULES interface Dialer0 overload
!
ip access-list extended NAT-RULES
 permit ip <your internal subnet> <your internal subnet mask> any

youll also need an ip nat inside on your LAN interface

Give that a whirl

- Pea0n
 
Back
Top Bottom