quinta-feira, 10 de janeiro de 2013

daloRADIUS

daloRADIUS is an advanced RADIUS web platform aimed at managing Hotspots and general-purpose ISP deployments. It features rich user management, graphical reporting, accounting, and integrates with GoogleMaps for geo-locating (GIS). daloRADIUS is written in PHP and JavaScript and utilizes a database abstraction layer which means that it supports many database systems, among them the popular MySQL, PostgreSQL, Sqlite, MsSQL, and many others.

http://www.daloradius.com/

quinta-feira, 3 de janeiro de 2013

Bitvise Tunnelier is an SSH and SFTP client for Windows.


Tunnelier is an SSH and SFTP client for Windows. It is developed and supported professionally by Bitvise. Tunnelier is robust, easy to install, easy to use, and supports all features supported by PuTTY, as well as the following:
  • graphical SFTP file transfer;
  • single-click Remote Desktop tunneling;
  • auto-reconnecting capability;
  • dynamic port forwarding through an integrated proxy;
  • an FTP-to-SFTP protocol bridge.
Tunnelier is free for personal use, as well as for individual commercial use inside organizations. You can download Tunnelier here.

terça-feira, 1 de janeiro de 2013

Setting Reverse Proxy With Apache2 on Debian 6


Load modules

#a2enmod proxy
#a2enmod proxy_http

Reload Apache

#/etc/init.d/apache2 force-reload

Virtualhost Configuration

#cd /etc/apache2/sites-available/
#vi website

<VirtualHost *:80>
        ServerName website.no-ip.org
        ProxyPass       /       http://192.168.x.y
        ProxyPassReverse        /       http://192.168.x.y
</VirtualHost>

Disable Default

#a2dissite default

Enable new Virtualhost

#a2ensite website

Restart Apache

#/etc/init.d/apache2 restart

Ok!