Page 1 of 1
How to monitorize the number of PPPoE connections
Posted: Fri Jan 09, 2009 1:30 pm
by Ikatsu
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.
Re: How to monitorize the number of PPPoE connections
Posted: Fri Jan 09, 2009 2:57 pm
by mrz
From where you want to monitor active tunnel count?
Re: How to monitorize the number of PPPoE connections
Posted: Wed Jan 14, 2009 5:18 pm
by Ikatsu
From where you want to monitor active tunnel count?
From the PPPoE server, a machine with RouterOS installed
Re: How to monitorize the number of PPPoE connections
Posted: Wed Jan 14, 2009 10:18 pm
by patt
/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