Difference between revisions of "WiFi: HotSpot - CoovaChilli Kebutuhan Hardware dan Software"

From OnnoWiki
Jump to navigation Jump to search
(New page: Hardware Requirements Any PC with 2 network interfaces. Software Versions This howto has been tested with: * Ubuntu 9.04 i386 server * coova-chilli-1.0.13 Software Installati...)
 
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
Hardware Requirements
+
==Kebutuhan Hardware==
  
Any PC with 2 network interfaces.
+
* Komputer dengan dua network Interface / [[NIC]]
  
Software Versions
+
==Versi Software==
  
This howto has been tested with:
+
[[Software]] yang digunakan
  
    * Ubuntu 9.04 i386 server
+
* Ubuntu
    * coova-chilli-1.0.13
+
* CoovaChilli http://coova.org/wiki/index.php/CoovaChilli
  
Software Installation
+
==Instalasi Software==
  
For this howto we start with an installation of Ubuntu Linux.
+
Pastikan kita menginstalasi
  
The base installation is beyond the scope of this document, but the Ubuntu Website has plenty of documentation on installing ubuntu from scratch.
+
* [[Instalasi Apache]]
 +
* [[Instalasi SSHD]]
 +
* [[Instalasi BIND]]
  
Towards the end of the ubuntu server edition install it asks you if you require extra packages. Enable the following:
+
Kalau mau gampang dapat juga menggunakan perintah
  
  LAMP
+
  # tasksel
SSH server
 
DNS Server
 
  
Note:When asked for a mysql password and you want to use the default password for this howto use:
+
==Root==
  
mysqladminsecret
+
Untuk memudahkan proses instalasi akan lebih mudah untuk membuat user root. Banyak file yang hanya dapat diubah oleh user root. Cara membuat user root
  
Of course for a live chillispot access point you will need to change all password to your own
+
# sudo passwd root
 +
Enter new UNIX password:
 +
Retype new UNIX password:
  
If you are using a different version or forget to install extra packages you can install them at a latter date by using the command:
+
# su root
 +
Password:
  
tasksel
+
==Konfigurasi Repository==
  
Root
+
sudo apt-get update
 +
sudo apt-get upgrade
  
To make the installation easier create a root user. Many files can only be changed with root user.
+
==Setup Network==
  
Login user, then enter command:
+
Edit /etc/network/interfaces
  
#sudo passwd root
+
nano -w /etc/network/interfaces
Enter new UNIX password:
 
Retype new UNIX password:
 
#su root
 
Password:
 
  
SSH
+
Pastikan ada isi
  
So we can cut and paste commands to make life easier
+
auto lo
 +
iface lo inet loopback
 +
 +
auto eth0
 +
iface eth0 inet dhcp
 +
 +
auto eth1
  
Install putty on you windows machine
 
  
Assuming that your ubuntu box is connected to your ADSL router/DHCP server you will need to find your IP address of your ubuntu box so you can connect with putty
+
==Pranala Menarik==
  
ifconfig
+
* [[WiFi: HotSpot - CoovaChilli Pendahuluan]]
 +
* [[WiFi: HotSpot - CoovaChilli Kebutuhan Hardware dan Software]]
 +
* [[WiFi: HotSpot - CoovaChilli Instalasi Radius Server]]
 +
* [[WiFi: HotSpot - Instalasi CoovaChilli]]
 +
* [[WiFi: HotSpot - CoovaChilli Instalasi Firewall]]
 +
* [[WiFi: HotSpot - CoovaChilli Instalasi Apache dan SSL]]
 +
* [[WiFi: HotSpot - CoovaChilli Fitur dan Keterangan Tambahan]]
 +
* [[WiFi: HotSpot]]
  
Type in your ip address and connect
+
[[Category: WiFi]]
 
+
[[Category: HotSpot]]
Repository
+
[[Category: CoovaChilli]]
 
 
Use default repository or better
 
 
 
Update Ubuntu
 
 
 
sudo apt-get update
 
 
 
sudo apt-get upgrade
 
 
 
Network setup
 
 
 
Setup up your network hardware/software
 
 
 
Interfaces
 
 
 
nano -w /etc/network/interfaces
 
 
 
auto lo
 
iface lo inet loopback
 
 
 
auto eth0
 
iface eth0 inet dhcp
 
 
 
auto eth1
 

Latest revision as of 09:18, 11 May 2010

Kebutuhan Hardware

  • Komputer dengan dua network Interface / NIC

Versi Software

Software yang digunakan

Instalasi Software

Pastikan kita menginstalasi

Kalau mau gampang dapat juga menggunakan perintah

# tasksel

Root

Untuk memudahkan proses instalasi akan lebih mudah untuk membuat user root. Banyak file yang hanya dapat diubah oleh user root. Cara membuat user root

# sudo passwd root
Enter new UNIX password:
Retype new UNIX password:
# su root
Password:

Konfigurasi Repository

sudo apt-get update
sudo apt-get upgrade

Setup Network

Edit /etc/network/interfaces

nano -w /etc/network/interfaces

Pastikan ada isi

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp

auto eth1


Pranala Menarik