Yet another Accel-PPP web interface

Questions related to general functionality
s.lobanov
Posts: 29
Joined: 11 Oct 2014, 08:28
Contact:

Yet another Accel-PPP web interface

Post by s.lobanov »

Hi

I'd like to introduce new Accel-PPP Web UI (accel-web-manager). https://github.com/svlobanov/accel-web-manager

Features (v0.2.0):
  • View Sessions (using 'accel-cmd show sessions')
  • View Accel-PPP statistics (using 'accel-cmd show stat')
  • Drop session (soft and hard)
  • Find sessions (sort, per-column filters, multiple filters)
  • Find duplicate sessions (by User-Name, IPv4, Calling-Sid, Called-Sid)
  • Multiple BRAS (one view for multiple BRAS)
  • Customizable session viewer (column settings, default filter logic)
  • Exception handling (System continues to work (show what it can) and notifies user if some BRAS are down)
  • Simple role system (Possible to disable some features, e.g. disable session dropping)
Demo: https://svlobanov.github.io/accel-web-manager-demo/ (with some limitations, please check first link for the details)
hashbang
Posts: 135
Joined: 12 Jul 2015, 10:28

Re: Yet another Accel-PPP web interface

Post by hashbang »

hi,
Good!
Just one missing thing. Realtime graphs
thanks
s.lobanov
Posts: 29
Joined: 11 Oct 2014, 08:28
Contact:

Re: Yet another Accel-PPP web interface

Post by s.lobanov »

hashbang wrote: 24 Aug 2022, 15:51 Just one missing thing. Realtime graphs
Hi. This feature will be released soon (this week or next week I think)
s.lobanov
Posts: 29
Joined: 11 Oct 2014, 08:28
Contact:

Re: Yet another Accel-PPP web interface

Post by s.lobanov »

hashbang wrote: 24 Aug 2022, 15:51 Just one missing thing. Realtime graphs
Implemented in v0.3.0. You can check the demo to see how it works
hashbang
Posts: 135
Joined: 12 Jul 2015, 10:28

Re: Yet another Accel-PPP web interface

Post by hashbang »

hi,
I'm loving it. Gr8. Doest it have login credentials or straight to home page ?

thanks
hashbang
Posts: 135
Joined: 12 Jul 2015, 10:28

Re: Yet another Accel-PPP web interface

Post by hashbang »

Hi,
Another request ;)
accel-cmd -p $port -P $password pppoe show interface
summary of server
thanks
s.lobanov
Posts: 29
Joined: 11 Oct 2014, 08:28
Contact:

Re: Yet another Accel-PPP web interface

Post by s.lobanov »

hashbang wrote: 30 Aug 2022, 06:49 hi,
I'm loving it. Gr8. Doest it have login credentials or straight to home page ?

thanks
accel-web-manager uses http-auth to protect itself from unauthorised access. it is implemented through .htpasswd files (using nginx). README.md file describes how to change admin password (also, you can create more users)
hashbang
Posts: 135
Joined: 12 Jul 2015, 10:28

Re: Yet another Accel-PPP web interface

Post by hashbang »

Hi,
I read the readme later on.
Installed on ubuntu 18.04 but not working :(
I have password protected accel-ppp cli
added "-Ppassword" in bras_settings also
"System is not ready"
link for screenshot : https://ibb.co/TRWMvs4
thanks
s.lobanov
Posts: 29
Joined: 11 Oct 2014, 08:28
Contact:

Re: Yet another Accel-PPP web interface

Post by s.lobanov »

hashbang wrote: 30 Aug 2022, 08:44 Hi,
I read the readme later on.
Installed on ubuntu 18.04 but not working :(
I have password protected accel-ppp cli
added "-Ppassword" in bras_settings also
"System is not ready"
link for screenshot : https://ibb.co/TRWMvs4
thanks
You can set any accel-cmd options in /var/lib/accel-web-manager/backend/bras_settings.py . Just add more options like this:

Code: Select all

root@deb11:/var/lib/accel-web-manager/backend# cat bras_settings.py 
# Please do not use special name 'all' for BRAS
bras_options = {
    "br1": ["accel-cmd", "-Hlocalhost", "-p2001","-Pyourpasswordhere"],
    # "br2": ["accel-cmd", "-H127.0.0.2", "-p2001"],
}
s.lobanov
Posts: 29
Joined: 11 Oct 2014, 08:28
Contact:

Re: Yet another Accel-PPP web interface

Post by s.lobanov »

> "System is not ready"

It means that backend is not ready. Check its status using "systemctl status accel-web-manager"

BTW, how do you install it on ubuntu 18.04? ubuntu 18.04 has unsupported python version. did you use --force option during install?
Post Reply