cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
495
Views
0
Helpful
3
Replies

How to Assign username in 2 Group-Async

hari_het
Level 1
Level 1

I am using Cisco 2620XM with nm-8am and runing config as below:

version 12.2

service timestamps debug uptime

service timestamps log uptime

no service password-encryption

!

hostname abclsm2

!

enable secret xxxxxx

!

username guest password xxx

username interen password xxx

ip subnet-zero

ip icmp rate-limit unreachable 2000

!

!

ip domain-name abc.co.id

ip name-server 111.111.254.254

!

!

async-bootp dns-server 111.111.254.254 202.147.xxx.y

!

!

!

interface Loopback0

ip address 1.1.1.1 255.255.255.0

!

interface FastEthernet0/0

ip address 111.111.116.20 255.255.0.0

ip access-group 115 in

ip access-group 115 out

no ip unreachables

ip route-cache flow

speed auto

full-duplex

!

interface Serial0/0

description Link to Remote LAN

bandwidth 64

ip address 111.110.x.x.x.0.0

encapsulation ppp

no keepalive

service-policy output PIM

!

interface Serial0/1

no ip address

shutdown

!

interface Group-Async1

ip unnumbered Loopback0

encapsulation ppp

dialer in-band

dialer idle-timeout 600

dialer-group 1

async mode interactive

peer default ip address pool DIALIN

ppp authentication chap

group-range 33 37

!

interface Group-Async2

ip unnumbered Loopback0

encapsulation ppp

dialer in-band

dialer idle-timeout 600

dialer-group 1

async mode interactive

peer default ip address pool DIALIN2

ppp authentication chap

group-range 38 40

!

ip local pool DIALIN 111.111.119.231 111.111.119.238

ip local pool DIALIN2 111.111.119.241 111.111.119.248

ip classless

ip route 0.0.0.0 0.0.0.0 111.111.254.254

ip route 111.112.0.0 x.x.x.0 111.110.1.2

ip route 202.147.xxx.yy 255.255.255.248 111.111.254.254

ip http server

ip pim bidir-enable

!

!

access-list 100 permit ip host 111.111.254.253 host 111.112.111.254

access-list 115 remark -- block ICMP

access-list 115 deny icmp any any echo

access-list 115 deny icmp any any echo-reply

access-list 115 permit ip any any

dialer-list 1 protocol ip permit

snmp-server community publicpim2 RO

!

line con 0

password xxx

line 33 40

login local

modem InOut

transport input all

autoselect ppp

flowcontrol hardware

line aux 0

line vty 0 4

password xxxx

login local

!

!

end

How assign to interface Group-Async1 only used by username guest, and interface Group-Async2 only used by username interen.

Thanks

Hari

3 Replies 3

makchitale
Level 6
Level 6

Using dialer profiles, users "guest" will bind to dialer 1 & in turn int group-asyc 1 & "interen" to dialer2 / int group-asyn 2.

interface Group-Async1

no ip address

encapsulation ppp

dialer in-band

dialer pool member 1

async mode interactive

peer default ip address pool DIALIN

ppp authentication chap

group-range 33 37

!

interface Group-Async2

no ip address

encapsulation ppp

dialer in-band

dialer pool member 2

async mode interactive

peer default ip address pool DIALIN2

ppp authentication chap

group-range 38 40

interface Dialer1

ip unnumbered Loopback0

enc ppp

dialer pool 1

dialer-group 1

dialer remote-name guest

ppp authentication chap

peer default ip address pool DIALIN

no cdp enable

!

interface Dialer2

ip unnumbered Loopback0

dialer pool 2

dialer-group 1

dialer remote-name interen

peer default ip address pool DIALIN2

no cdp enable

Thanks, Mak

Thanks Mak...

(sorry my english not good)

In 2 days i try configure with your suggest, it's ok.

But if in the same time user connect into Group-Async2 the connection drops out and not stable connection, and only one user can connected to Group-Async2. Why?

Do you help me with this condition?

Thanks, Hari

Under the interface dialer2 do we have the following (as seen under dialer1):

interface Dialer2

ip unnumbered Loopback0

enc ppp <== add

dialer pool 2

dialer-group 1

dialer remote-name interen

ppp authentication chap <== add

peer default ip address pool DIALIN2

no cdp enable

If the call still fails then we do to capture the following debugs:

deb modem / deb asyn state / deb ppp nego

and send outputs of show run / show ver / show modem version

Thanks, Mak