Monday, February 29, 2016

Web based Terminal -Ajaxterm

Looking into some web based SSH Terminal, Found a really nice Tool Ajaxterm –

Ajaxterm is a web based terminal.
This lets to you SSH trough web browser


Installation steps for Ajaxterm

 
1.      wget  http://antony.lesuisse.org/software/ajaxterm/files/Ajaxterm-0.10.tar.gz
     (or Attached below)    
 
2.      tar -xvzf Ajaxterm-0.10.tar.gz
  1. Now build Ajaxterm as follows.
# ./configure --prefix=/usr/local
# make
# make install
 

  1. Add following lines in /etc/httpd/conf/http.conf
(Proxying is needed for remote access)

   
   ProxyRequests Off
  
           Order deny,allow
           Allow from all
  
   ProxyPass /ajaxterm/ http://localhost:8022/
   ProxyPassReverse /ajaxterm/ http://localhost:8022/

  1. service httpd reload
  2. /usr/local/Ajaxterm-0.10/ajaxterm.py &
  3. Access the page through http://ip_address/ajaxterm/
(leading / is necessary)


Incase you are using lighttpd
Edit lighttpd.conf (settings for proxy server )

proxy.server    = ( "/ajaxterm/" =>
                   (
                    ( "host" => "127.0.0.1",
                      "port" => 8022
                     )
                    )
                   )


No comments:

Post a Comment

Featured Post

XDP - Getting Started with XDP (Linux)