Community discussions

MikroTik App
 
User avatar
Ikatsu
just joined
Topic Author
Posts: 16
Joined: Thu Jan 08, 2009 11:00 am
Location: Spain

How to monitorize the number of PPPoE connections

Fri Jan 09, 2009 1:30 pm

Hi to all,

I have Mikrotik equipments used to have PPPoE tunnels, and my question is if it's possible monitorize how many tunnels are active in a mikrotik.

Thanks.
 
User avatar
mrz
MikroTik Support
MikroTik Support
Posts: 7195
Joined: Wed Feb 07, 2007 12:45 pm
Location: Latvia
Contact:

Re: How to monitorize the number of PPPoE connections

Fri Jan 09, 2009 2:57 pm

From where you want to monitor active tunnel count?
 
User avatar
Ikatsu
just joined
Topic Author
Posts: 16
Joined: Thu Jan 08, 2009 11:00 am
Location: Spain

Re: How to monitorize the number of PPPoE connections

Wed Jan 14, 2009 5:18 pm

From where you want to monitor active tunnel count?
From the PPPoE server, a machine with RouterOS installed
 
patt
newbie
Posts: 32
Joined: Sat Jan 27, 2007 7:18 pm

Re: How to monitorize the number of PPPoE connections

Wed Jan 14, 2009 10:18 pm

/ppp active print (?)

You, can get the list via ssh and grep it by PPPoE-out interfaces

similar like this:

ssh user@ip ppp active print > /tmp/pppoe.tmp
cat /tmp/pppoe.tmp |grep PPPoE |wc

when user [user] is authenticated on mikrotik [ip] via ssh key (without password).

regards