FREE WEBHOSTING

Monday, September 27, 2010

Free cPanel Web Hosting with PHP5/Mysql - no advertising!
Register now: http://www.000webhost.com/358732.html

We can offer you a free web hosting package packed with advanced features for hosting & building professional dynamic websites. We provide secure free web space with all the web hosting tools you could possibly ever need.

Our package includes:
- 1500 MB of Disk Space, 100 GB Bandwidth
- Host your own domain (http://www.yourdomain.com)
- cPanel Powered Hosting (you will love it)
- Over 500 website templates ready to download
- Easy to use website builder
- Free POP3 Email Box with Webmail access
- FTP and Web based File Manager
- PHP, MySQL, Perl, CGI, Ruby.
- And many more..

Read more...

OpenVPN server configuration

Friday, September 24, 2010

I wanted to have as much of the configuration on the server as possible so that I could easily add more clients and wouldn't have a need to update client configuration when ever the server preferences change.

Here is my OpenVPN server configuration:

mode server
tls-server
dev tap0
server-bridge 10.5.6.1 255.255.255.0 10.5.6.200 10.5.6.209
ifconfig-pool-persist /var/run/openvpn-ip.txt
keepalive 10 60
ping-timer-rem
persist-tun
push "route 10.5.6.0 255.255.255.0"
push "dhcp-option DNS 10.5.6.1"
ca /root/easy-rsa-2.0/keys/ca.crt
key /root/easy-rsa-2.0/keys/ressukka.net.key
cert /root/easy-rsa-2.0/keys/ressukka.net.crt
dh /root/easy-rsa-2.0/keys/dh1024.pem
client-to-client
up /etc/openvpn/ovpn-ressukka.sh

and the up script:

#!/bin/sh
# Bind the tunnel interface to the bridge

BRIDGE=br0

ifup $1
brctl addif $BRIDGE $1

There is nothing really special about that configuration. The server is in TLS mode configures a bridge. The keys are generated with easy-rsa by following a openvpn howto entry. The up script just binds the tap0 device to the network bridge after bringing up the device.

Next I created the interface configuration by adding the following to /etc/network/interfaces:

iface br0 inet static
address 10.5.6.17
gateway 10.5.6.1
netmask 255.255.255.0
bridge-ports eth0

The trick here is to create a single bridge with just the eth0 device. We use the up script for openvpn to add the tunnel device to the bridge. Otherwise the bridge would never contain the proper devices.
Client

As for the client, you simply set the client to use the CA-certificate and Host key created with easy-rsa, set the hostname and tunnel type. Tunnel type is assumed to be a tun-device instead of tap, so in my case I needed to change it too.

There is no need to tell the client anything else. Everything else will be negotiated through the tunnel. And since I use NetworkManager to set up my tunnels I didn't have a need to drop in to a shell even once at the client.

Read more...

FREE WEBHOSTING

Free cPanel Web Hosting with PHP5/Mysql - no advertising!
Register now: http://www.000webhost.com/358732.html

Free Website Hosting


We can offer you a free web hosting package packed with advanced features for hosting & building professional dynamic websites. We provide secure free web space with all the web hosting tools you could possibly ever need.

Our package includes:
- 1500 MB of Disk Space, 100 GB Bandwidth
- Host your own domain (http://www.yourdomain.com)
- cPanel Powered Hosting (you will love it)
- Over 500 website templates ready to download
- Easy to use website builder
- Free POP3 Email Box with Webmail access
- FTP and Web based File Manager
- PHP, MySQL, Perl, CGI, Ruby.
- And many more..

Read more...

How to install WordPress on 000webhost free hosting without cPanel

Tuesday, September 21, 2010

Free Website Hosting


For this click on create new > Enter domain name and password >Set up new account.
In the next page, they will show up nameservers, note up that and change it your domain control panel.
Wait 12 hours for complete transfer of domain to 000webhost account.
Now we are going to install WordPress on 000webhost account.
Download latest version of WordPress.
1. Extract the files to desktop and rename the file wp_config.php. to wp-config.php This file is WordPress configuration file where we keep important informations like MySQL database user name and password.
2. Now create a New MySQL database for WordPress.
Open up 000webhost control panel and select MySQL.
Now enter MySQL database name, MySQL user name,password for MySQL user. Furthermore, note the MySQL host address (It will be something like mysql9.000webhost.com).
3. Download any free HTML editor (Notepad also works) and open wp-config.php
Now under MySQL settings,
define(‘DB_NAME’, ‘enter full database name’);
/** MySQL database username */define(‘DB_USER’, ‘enter the full database user name’);
/** MySQL database password */define(‘DB_PASSWORD’, ‘enter the full database password’);
/** MySQL hostname */define(‘DB_HOST’, ‘enter full database host name’);
Now move down to these strings:
define (‘AUTH_KEY’, ‘ Enter key1 ‘); define(‘SECURE_AUTH_KEY’, ‘ Enter key 2′); define(‘LOGGED_IN_KEY’, ‘Enter key 3′); define(‘NONCE_KEY’, ‘Enter key 4′);
These keys are intended for providing security to WordPress installation. So make sure to use different characters in each line and should contain letters and numbers.
4. Save wp-config.php (WordPress configuration) file to the WordPress folder.
5. Now use our tutorial to upload WordPress via FTP to the public_html folder.
6. Now we can start WordPress installation to the directory where the files are uploaded.
Open up your browser and type http://www.yourdomain/wp-admin/install.php and hit enter. If everything went fine, the following screen will appear.

Read more...

Install phpMyAdmin on Server CentOS 5.5

Monday, September 13, 2010

Install phpMyAdmin on Server CentOS 5.5

phpMyAdmin is a free software tool written in PHP intended to handle the administration of MySQL over the World Wide Web. phpMyAdmin supports a wide range of operations with MySQL. The most frequently used operations are supported by the user interface (managing databases, tables, fields, relations, indexes, users, permissions, etc), while you still have the ability to directly execute any SQL statement.

Install repository from rpmforge to server
# cd /tmp

On Centos x86 (i386)
# wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.1-1.el5.rf.i386.rpm
# rpm -Uvh rpmforge-release-0.5.1-1.el5.rf.i386.rpm

On Centos x64 (x86_64)
# wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.1-1.el5.rf.x86_64.rpm
# rpm -Uvh rpmforge-release-0.5.1-1.el5.rf.x86_64.rpm
Command to view version of CentOS is x86 (32bit) or x86_64 (64bit)
# uname -i

Install phpMyAdmin
# yum -y install phpmyadmin
edit file phpmyadmin.conf
# vi /etc/httpd/conf.d/phpmyadmin.conf
delete the other settings and leave only the following:
Alias /phpmyadmin /usr/share/phpmyadmin
Alias /phpMyAdmin /usr/share/phpmyadmin
Alias /mysqladmin /usr/share/phpmyadmin
save (press key "Esc" and then type ":wq")

edit file config.inc.php
# vi /usr/share/phpmyadmin/config.inc.php
find the following line
$cfg['Servers'][$i]['auth_type'] = 'cookie';
and replace 'cookie' with 'http'

Restart Apache
# service httpd restart

go to http://ServerIPaddress/phpmyadmin and you'll find a page like this after login with user and password mysqladmin which was created when installing MySQL.

Read more...

Install ptunnel on Server CentOS 5.5 for Tunneling via ICMP

Install ptunnel on Server CentOS 5.5 for Tunneling via ICMP
Ptunnel is an application that allows you to reliably tunnel TCP connections to a remote host using ICMP echo request and reply packets, commonly known as ping requests and replies. It is not a feature-rich tool by any means, but it does what it advertises. So here is what it can do:

* Tunnel TCP using ICMP echo request and reply packets
* Connections are reliable (lost packets are resent as necessary)
* Handles multiple connections
* Acceptable bandwidth (150 kb/s downstream and about 50 kb/s upstream are the currently measured maximas for one tunnel)
* Authentication, to prevent just anyone from using your proxy



PTunnel will not work in the condition that when an outgoing/incoming ping not allowed, or filtered by a gateway somewhere along the way. Also, it does not involve any congestion control. But a good thing is that it is open source and supports both Linux, Windows & Mac. For Windows, you will also need WinPcap.

There is the step for installing ptunnel 0.71:

ON SERVER

# yum -y install gcc*
# yum -y install libpcap*
# mkdir /tmp
# cd /tmp
# wget http://www.cs.uit.no/~daniels/PingTunnel/PingTunnel-0.71.tar.gz
# tar -zxvf PingTunnel-0.71.tar.gz
# cd PingTunnel
# make
# make install


On server CentOS 5.5 32bit

# ptunnel &




On server CentOS 5.5 64bit

# ptunnel > /dev/null 2 >&1 &



Open Port on Server (8000 or whatever it that will be used for tunneling)

# setup

and then choose Firewall configuration >> Customize

http://a.imageshack.us/img535/3217/b004j.jpg

ON CLIENT

ptunnel -p ptunnel.example.org -lp 8000 -da ssh.example.org -dp 22

If you using ptunnel client on windows, make sure you copy ptunnel.exe to folder system32 before running that command on command prompt and WinPcap has installed on your system.

ON SSH CLIENT

Using PuTTY or Bidvise Tunnelier to login to your SSH.

Setting on SSH Client:
Host : 127.0.0.1
Port : 8000

Read more...

password situs site xxx free

Sunday, September 12, 2010

This summary is not available. Please click here to view the post.

Read more...
Powered by Blogger.

  © Blogger template The Professional Template II by Ourblogtemplates.com 2009

Back to TOP