cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
630
Views
0
Helpful
2
Replies

User Name, Password & IP based login in BRI

md_ani
Level 1
Level 1

Dear All,

I want my Remote ISDN users to Dial-In on my 3640 Router with specific User Name, Password & IP Address. Pls provide a sample configuration for User Name "test" Password "123" and IP address 10.60.5.5

Thanks in advance.

Anis

2 Replies 2

Hello Anis,

you could try and configure a dialer interface for each user, and then apply an access list to the dialer interface allowing only the IP address of that specific user, the config would look like this:

username User_1 password user1password

!

interface Dialer1

description connection to User_1

ip address 10.60.5.6 255.255.255.252

encapsulation ppp

dialer-group 1

dialer pool 1

dialer remote-name User_1

dialer string xxxx

ip access-group 1 in

ppp authentication chap

In addition, you could also use the 'dialer caller' command to specifiy which telephone number is allowed to dial in to that interface...

HTH,

GP

colin
Level 1
Level 1

Hi Anis,

If you really want scalability, I would use AAA, and have and IP address returned based on a RADIUS or TACACS+ profile.

ie:

{

username=test

password=123

service-type=login

framed-protocol=PPP

framed-ip-address=10.60.5.5

}

Much more scalable than hard coding it on the router, especially if you change any parameters.

Cheers,

-colin.