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

From OnnoWiki
Jump to navigation Jump to search
 
(4 intermediate revisions by the same user not shown)
Line 22: Line 22:
 
  # tasksel
 
  # 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
  
Root
+
# sudo passwd root
 +
Enter new UNIX password:
 +
Retype new UNIX password:
  
To make the installation easier create a root user. Many files can only be changed with root user.
+
# su root
 +
Password:
  
Login user, then enter command:
+
==Konfigurasi Repository==
  
#sudo passwd root
+
sudo apt-get update
Enter new UNIX password:
+
sudo apt-get upgrade
Retype new UNIX password:
 
#su root
 
Password:
 
  
SSH
+
==Setup Network==
  
So we can cut and paste commands to make life easier
+
Edit /etc/network/interfaces
  
Install putty on you windows machine
+
nano -w /etc/network/interfaces
  
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
+
Pastikan ada isi
  
ifconfig
+
auto lo
 
+
iface lo inet loopback
Type in your ip address and connect
+
 
+
auto eth0
Repository
+
iface eth0 inet dhcp
 
+
Use default repository or better
+
auto eth1
 
 
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
 
  
  
Line 85: Line 65:
 
* [[WiFi: HotSpot - CoovaChilli Fitur dan Keterangan Tambahan]]
 
* [[WiFi: HotSpot - CoovaChilli Fitur dan Keterangan Tambahan]]
 
* [[WiFi: HotSpot]]
 
* [[WiFi: HotSpot]]
 +
 +
[[Category: WiFi]]
 +
[[Category: HotSpot]]
 +
[[Category: CoovaChilli]]

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