ExamNotes.net  -  IT certification portal

ForumsCertResearchTop sitesNewslettersFree email
HomeRegister
Exams Notes
Practice exams
Exam games
Questions by email
Online training
Training videos
College degrees
Boot camps
Book store
Links directory
Tell a friend
For webmasters

CompTIA Exam Vouchers
Save money on CompTIA exams
Question of the day
Sign up to receive
interactive practice questions
for MCSE, CompTIA
Cisco and other exams
TestKing
Get MCSE, MCSD, CCNA, CCNP,A+, N+ and many more

* ExamSheets *
Guide for Success!
Actual Questions & Answers
MCSE, MCSD, A+ ,CCNA, CCNP
Oracle 8i, Oracle 9i

Online practice tests

Certification sites

Online university

Online college

Online education

Distance learning

Software forum

Server administration forum

Programming resources






This is interesting: Free IT Magazines | Databases help forum



Cisco > CCNP > want some help with dialup...

Show a Printable Version
Email This Page to Someone!
Receive updates to this thread




Featured site: Online CCNP practice exams from Cert21.com



Author want some help with dialup...
gohar
Member
M




Registered: Apr 2001
Location: Bombay
Country: Kuwait
State:
Certifications: MCP, A+, Net+, i-Net+, CCNA, CIW Prof.
Working on: CCNP, CCDA, CCDP, CCIE, Server+, Linux+, Sun Solaris, Win2K

Total Posts: 84
Question want some help with dialup...

hello all,

ok i have a problem and i will try to explain it as simply as possible. i have a cisco as2511rj router with 16 async ports. what i want is to setup the router in such a way that i can use one of the async port with a async modem to connect to the local ISP. i have already a running network at my home right now. i wanted to use the router as a proxy server so all the hosts can connect to the internet via the router.

i was hoping if u can send me all the configurations need for this and how do i go about it. i think i will require to apply NAT to make this work. pls help me in all ways possible so i can set it up as soon as possible. i was wondering if some1 can show me how to implement this.

thanks to one and all. i hope i have given all the required info so u all can work on it. if u require any other info pls do let me know so i can tell u all that i missed here.

thanks once again and hope u guys/gals can reply soon.

thanks.

__________________
Always Keep

Report this post to a moderator

Old Post 11-22-01 08:01 PM
gohar is offline Click Here to See the Profile for gohar Click here to Send gohar a Private Message Add gohar to your buddy list Find more posts by gohar Send a message to gohar Reply w/Quote Edit/Delete Message IP: Logged
sidodgers
Member




Registered: Nov 2001
Location: Melbourne
Country: Australia
State:
Certifications: CCNA, CCNP, CCIE (written)
Working on: CCIE (other bit), SCSA/SCNA

Total Posts: 72
Re: want some help with dialup...

quote:
Originally posted by gohar
hello all,

ok i have a problem and i will try to explain it as simply as possible. i have a cisco as2511rj router with 16 async ports. what i want is to setup the router in such a way that i can use one of the async port with a async modem to connect to the local ISP. i have already a running network at my home right now. i wanted to use the router as a proxy server so all the hosts can connect to the internet via the router.

i was hoping if u can send me all the configurations need for this and how do i go about it. i think i will require to apply NAT to make this work. pls help me in all ways possible so i can set it up as soon as possible. i was wondering if some1 can show me how to implement this.

thanks to one and all. i hope i have given all the required info so u all can work on it. if u require any other info pls do let me know so i can tell u all that i missed here.

thanks once again and hope u guys/gals can reply soon.

thanks.



OK. Without trying to remember too much theory from BCRAN, here's how I'd do it.

--

interface Async#
dialer pool-member 1
(other async interface params go here)
no shut

interface Dialer1
encapsulation ppp
dialer string (isp phone number)
dialer map ip (isp terminal server ip) (isp phone number)
ip address (isp assigned ip address, or 'negotiated 'if dynamically assigned)
dialer-group 1
no shut

int Ethernet0/0 (substitute correct interface here)
no shut
ip address (x.y.z.a) (b.c.d.e)

dialer-list 1 protocol ip permit

ip route 0.0.0.0 0.0.0.0 (isp ts ip)
--

the dialer-list and dialer-group commands specify 'interesting' traffic to the access server; i.e. traffic which will force the connection to be dialled when the Cisco attempts to route it across the dialer interface.

If you're running an IGP on the box, make sure that you put the Dialer1 interface into 'passive-interface' mode.

HTH

Sid

Report this post to a moderator

Old Post 11-22-01 10:57 PM
sidodgers is offline Click Here to See the Profile for sidodgers Click here to Send sidodgers a Private Message Add sidodgers to your buddy list Find more posts by sidodgers Reply w/Quote Edit/Delete Message IP: Logged
gohar
Member
M




Registered: Apr 2001
Location: Bombay
Country: Kuwait
State:
Certifications: MCP, A+, Net+, i-Net+, CCNA, CIW Prof.
Working on: CCNP, CCDA, CCDP, CCIE, Server+, Linux+, Sun Solaris, Win2K

Total Posts: 84
thanks for ur help....

thanks for ur help in what u said and i will try to implement it as u have told but i was wondering... dont u think that v have to use NAT in order to use the router with a real IP to link to the IP on the network? pls advise if u can...

thanks once again...

__________________
Always Keep

Report this post to a moderator

Old Post 11-23-01 05:36 PM
gohar is offline Click Here to See the Profile for gohar Click here to Send gohar a Private Message Add gohar to your buddy list Find more posts by gohar Send a message to gohar Reply w/Quote Edit/Delete Message IP: Logged
sidodgers
Member




Registered: Nov 2001
Location: Melbourne
Country: Australia
State:
Certifications: CCNA, CCNP, CCIE (written)
Working on: CCIE (other bit), SCSA/SCNA

Total Posts: 72
Re: thanks for ur help....

quote:
Originally posted by gohar
thanks for ur help in what u said and i will try to implement it as u have told but i was wondering... dont u think that v have to use NAT in order to use the router with a real IP to link to the IP on the network? pls advise if u can...

thanks once again...



No hassles man,

yes, you will need NAT, specifically overloaded NAT (aka PAT), and I forgot the specifics in my original post because I wrote it in quite a rush.

you'll need a config like the following:
access-list 1 permit (ip-net-to-nat) (cisco-mask-of-net)
ip nat pool outside-global (valid-ip-outside-address start) (address end) (subnet mask)
ip nat inside source list 1 pool outside-global
interface Dialer1
ip nat outside
interface Ethernet0
ip nat inside

HTH, Sid

Report this post to a moderator

Old Post 11-24-01 01:59 AM
sidodgers is offline Click Here to See the Profile for sidodgers Click here to Send sidodgers a Private Message Add sidodgers to your buddy list Find more posts by sidodgers Reply w/Quote Edit/Delete Message IP: Logged
gohar
Member
M




Registered: Apr 2001
Location: Bombay
Country: Kuwait
State:
Certifications: MCP, A+, Net+, i-Net+, CCNA, CIW Prof.
Working on: CCNP, CCDA, CCDP, CCIE, Server+, Linux+, Sun Solaris, Win2K

Total Posts: 84

hi!

thanks sidodgers. i am grateful to u for ur help and all others... i will def. try this config. and let u know if it works... i have not done NAT till now so i have no idea about it, but will study n let u know.

i wanted to know if it is possible to dial-out the AS2511-RJ as default as it is made for dial-in access and what r the parameters that r to be setup for dial-out.

thanks for 1 and all....

__________________
Always Keep

Report this post to a moderator

Old Post 11-25-01 10:20 AM
gohar is offline Click Here to See the Profile for gohar Click here to Send gohar a Private Message Add gohar to your buddy list Find more posts by gohar Send a message to gohar Reply w/Quote Edit/Delete Message IP: Logged
All times are GMT.
Post new thread   Post reply

Click here for CCNP study guides

Cisco exam notes



Forum Jump:
Rate This Thread:
Forum Rules:
Who Can Read The Forum? Any registered user or guest.
Who Can Post New Topics? Any registered user.
Who Can Post Replies? Any registered user.
Changes: Messages can be edited by their author.
Posts: HTML code is OFF. Smilies are ON. vB code is ON. [IMG] code is ON.
 

ExamNotes forum archive


Powered by: vBulletin 2.2.8
Copyright ©2000, Jelsoft Enterprises Limited.

  Free Braindumps | mcse braindumps