cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
391
Views
0
Helpful
6
Replies

restrict dial-in access

rusdijunaidi
Level 1
Level 1

I have cisco router 2509 and I need to restrict user dial in based on username,password and ip address.

for example: username test password test and ip address 10.10.10.1

in this case user dial in using static ip address 10.10.10.1 from his pc to the access server,

does anyone know how to setup the Cisco router to authenticate the user ? without implemented Radius/TACACS server.

thanks,

-rusdi-

6 Replies 6

deilert
Level 6
Level 6

Unfortunately by using this config, IP Address assignment is dynamic which is assign by the IP Pool, in this case user doesn't have the static IP Address assignment for particular username and password.

What I need to have is user has specific IP Address for specific username and password, therefore any user with the same IP Address but has different username and password or vice versa wouldn't be authenticate.

-rusdi-

dbellazetin
Level 4
Level 4

Rusdi,

You can configure dialer profile's using dialer pool members. This way each user has its own defined interface so to speak.

http://www.cisco.com/warp/public/793/access_dial/ddr_dialer_profile.html

Daniel

Daniel,

thanks for your respond. Currently I am using interface async and connected to external modem, the path that you mentioned is ISDN DDR Dialer profiles.

Is there a way to configure int async to be like that ?

The phone line connected to the modem is hunting line which is has 1 parent line and 8 child lines.

In case there is a way to configure Int asyn into separate int dialer , I just do not know how to route the call into the specific line since the incoming call will be route to the idle line randomly.

thanks,

-rusdi-

Yes , you can also use dialer profiles with async interfaces.

Use the above link and also here is a helpful link for external modems

http://www.cisco.com/en/US/tech/tk713/tk507/technologies_configuration_example09186a0080093c31.shtml

you can combine them to get it work!

Eduardo

if you are using legacy async interfaces you could do something like this:

aaa new-model

aaa authentication login default local

aaa authorization network default local

!

username foo password bar

!

interface asyncX

dialer in-band

dialer map ip x.x.x.x name foo #

then watch:

debug aaa authen

debug aaa author

debug ppp nego

debug ip peer

is there a really good reason not to use a tac+ or radius box? you can get the software for free and it doesnt require a powerhouse server to run it.

josh