ASSALAMU'ALAIKUM WR.WB
WELCOME TO VISIT MY BLOG AND DON'T FORGET TO COMMENT MY BLOG,BECAUSE YOUR COMMENT IS MY INSPIRATION......

DHCP SERVER DEBIAN LENNY 5

DHCP SERVER DEBIAN LENNY 5


1 Install paket buat bikin DHCP SERVER dulu nama paketnya adalah DHCP3. Ketikkan perintah seperti ini:
# apt-get dhcp3-server

2 Kalau sudah masuk ke folder /etc/dhcp3 :
# cd /etc/dhcp3

3 Setelah masuk didalamnya ada beberapa file dan folder seperti berikut:
dhclient.conf dhclient-enter-hooks.d dhclient-exit-hooks.d dhcpd.conf
kemudian edit file dhcpd.conf,dengan cara sebagai berikut :
# vim dhcpd.conf
Maka akan muncul seperti ini:
#
# Sample configuration file for ISC dhcpd for Debian
#
# $Id: dhcpd.conf,v 1.1.1.1 2002/05/21 00:07:44 peloy Exp $
#

# The ddns-updates-style parameter controls whether or not the server will
# attempt to do a DNS update when a lease is confirmed. We default to the
# behavior of the version 2 packages ('none', since DHCP v2 didn't
# have support for DDNS.)
ddns-update-style none;

# option definitions common to all supported networks...
option domain-name "abdul.com";
option domain-name-servers www.abdul.com, mail.abdul.com;


default-lease-time 600;
max-lease-time 7200;

# If this DHCP server is the official DHCP server for the local
# network, the authoritative directive should be uncommented.
#authoritative;

# Use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
log-facility local7;

# No service will be given on this subnet, but declaring it helps the
# DHCP server to understand the network topology.

#subnet 10.152.187.0 netmask 255.255.255.0 {
#}

# This is a very basic subnet declaration.

#subnet 10.254.239.0 netmask 255.255.255.224 {
# range 10.254.239.10 10.254.239.20;
# option routers rtr-239-0-1.example.org, rtr-239-0-2.example.org;
#}

# This declaration allows BOOTP clients to get dynamic addresses,
# which we don't really recommend.

#subnet 10.254.239.32 netmask 255.255.255.224 {
# range dynamic-bootp 10.254.239.40 10.254.239.60;
# option broadcast-address 10.254.239.31;
# option routers rtr-239-32-1.example.org;
#}

# A slightly different configuration for an internal subnet.
subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.26 192.168.0.30;
option domain-name-servers www.abdul.com;
option domain-name "abdul.com";
option routers 192.168.0.1;
option broadcast-address 192.168.0.254
default-lease-time 600;
max-lease-time 7200;
}


# Hosts which require special configuration options can be listed in
# host statements. If no address is specified, the address will be
# allocated dynamically (if possible), but the host-specific information
# will still come from the host declaration.

#host passacaglia {
# hardware ethernet 0:0:c0:5d:bd:95;
# filename "vmunix.passacaglia";

# server-name "toccata.fugue.com";
#}

# Fixed IP addresses can also be specified for hosts. These addresses
# should not also be listed as being available for dynamic assignment.
# Hosts for which fixed IP addresses have been specified can boot using
# BOOTP or DHCP. Hosts for which no fixed address is specified can only
# be booted with DHCP, unless there is an address range on the subnet
# to which a BOOTP client is connected which has the dynamic-bootp flag
# set.
#host fantasia {
# hardware ethernet 08:00:07:26:c0:a5;
# fixed-address fantasia.fugue.com;
#}

# You can declare a class of clients and then do address allocation
# based on that. The example below shows a case where all clients
# in a certain class get addresses on the 10.17.224/24 subnet, and all
# other clients get addresses on the 10.0.29/24 subnet.

#class "foo" {
# match if substring (option vendor-class-identifier, 0, 4) = "SUNW";
#}

#shared-network 224-29 {
# subnet 10.17.224.0 netmask 255.255.255.0 {
# option routers rtr-224.example.org;
# }
iodyrttwrxsr43fdes3
#}

# server-name "toccata.fugue.com";
#}

# Fixed IP addresses can also be specified for hosts. These addresses
# should not also be listed as being available for dynamic assignment.
# Hosts for which fixed IP addresses have been specified can boot using
# BOOTP or DHCP. Hosts for which no fixed address is specified can only
# be booted with DHCP, unless there is an address range on the subnet
# to which a BOOTP client is connected which has the dynamic-bootp flag
# set.
#host fantasia {
# hardware ethernet 08:00:07:26:c0:a5;
# fixed-address fantasia.fugue.com;
#}

# You can declare a class of clients and then do address allocation
# based on that. The example below shows a case where all clients
# in a certain class get addresses on the 10.17.224/24 subnet, and all
# other clients get addresses on the 10.0.29/24 subnet.

#class "foo" {
# match if substring (option vendor-class-identifier, 0, 4) = "SUNW";
#}

#shared-network 224-29 {
# subnet 10.17.224.0 netmask 255.255.255.0 {
# option routers rtr-224.example.org;
# }
# subnet 10.0.29.0 netmask 255.255.255.0 {
# option routers rtr-29.example.org;
# }
# pool {
# allow members of "foo";
# range 10.17.224.10 10.17.224.250;
# }
# pool {
# deny members of "foo";
# range 10.0.29.10 10.0.29.230;
# }
#}

Setelah sudah jangan lupa di save dengan cara seperti ini....
Tekan Esc:wq

Setelah si save,jangan lupa di restart dengan perintah kayak gini......
# /etc/init.d/dhcp3-server restart

Read More..

SETTING IP ADDRESS DAN DNS SERVER DEBIAN LENNY 5

SETTING IP ADDRESS DEBIAN LENNY 5


1 Sebelum masuk ke DNS SERVER kita setting dulu ip addressnya terlebih dahulu yaaaaaa..... caranaya masuk terlebih dahulu ke root caranya seperti ini……

# su

(masukkan password root)



2 Langsung aja setting ip addressnya dengan cara seperti ini:
# vim /etc/network/interfaces

Maka akan muncul gini……………
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces (5)
# The loopback network interface auto lo
Iface lo inet loopback
#The primary network interface
Allow-hotplug eth0
Iface eth0 inet static
Address : 192.168.0.1
Netmask : 255.255.255.0
Network : 192.168.0.0
Broadcast: 192.168.0.255
Gateway : 192.168.0.1
# dns-* options are implemented by the resolvconf package if installed
Dns-nameservers 192.168.0.1
Dns-search abdul.com


-->Setelah it JANGAN LUPA DI SAVE YA………. caranya mudah kok,emmm tekan Esc : wq

Untuk lebih cepat pakai cara gini --> ifconfig 192.168.0.1/24

Kemudian jangan lupa di -->ifup eth0

Setelah sudah,jangan lupa di restart dengan perintah kayak gini…….
# /etc/init.d/networking restart

DNS SERVER

1 Install paket buat bikin DNS dulu nama paketnya adalah BIND9. Ketikkan perintah seperti ini:
# apt-get install bind9

2 Kalau sudah masulk ke folder /etc/bind :
# cd /etc/bind

Setelah masuk didalamnya ada beberapa file dan folder seperti berikut:
db.0 db.255 db.local named.conf named.conf.option zones.rfc1918
db.127 db.empty db.root named.conf.local rndc.key


3 kemudian edit file named.conf,dengan cara sebagai berikut :
# vim named.conf

maka akan muncul teks yang seperti dibawah ini :
// This is the primary configuration file for the BIND DNS server named.
//
// please read /usr/share/doc/bind9/README.Debian.gz for informationon the
// structure of BIND configuration files in debian, *BEFORE* you customize
//this configuration file.
//
// If you are just adding zones, please do that in
/etc/bind/named.conf.local
Include “/etc/bind/named.conf.option”;
// prime the server with knowledge of the root servers
zone “.” {
type hint;
file “/etc/bind/db.root”;
};
// be authoritative for the localhost forward and revers zones,and for
// broadcast zones as per RFC 1912
zone “localhost” {
type master;
file “/etc/bind/db.local”;
};

zone “127.in-addr.arpa” {
type master;
file “/etc/bind/db.127”;
};

zone “0. in-addr.arpa” {
type master;
file “/etc/bind/db.0”;
};

zone “255.in-addr.arpa” {
type master;
file “/etc/bind/db.255”;
};

zone “abdul.com” {
type master;
file “/etc/bind/db.nama”
};


zone “192.in-addr.arpa” {
type master;
file “/etc/bind/db.ip”;
};


Include “/etc/bind/named.conf.local”;
-->Setelah it JANGAN LUPA DI SAVE YA………. caranya mudah kok,emmm tekan Esc : wq

4 kemudian copy file db.local ke db.nama,caranya gini……
# cp db.local db.nama

5 setelah it edit db.namanya,dengan cara gini……
# vim db.nama

Maka akan muncul teks seperti ini:
;
; BIND data file for local loopback interfaces
;
STTL 604800
@ IN SOA abdul.com. root.abdul.com
(





;
@ IN NS abdul.com.
@ IN A abdul.com.
@ IN AAAA : :1
www IN CNAME abdul.com.
mail IN CNAME abdul.com.


-->Setelah it JANGAN LUPA DI SAVE YA………. caranya mudah kok,emmm tekan Esc : wq

6 Selanjutnya kemudian copy file db.127 ke db.ip,caranya gini……
# cp db.127 db.ip
7 setelah it edit db.namanya,dengan cara gini……
# vim db.ip
Maka akan muncul teks seperti ini:
;
; BIND reverse data file for local loopback interfaces
;
STTL 604800
@ IN SOA abdul.com. root.abdul.com.
(
2 ;Serial
604800 ;Refresh
86400 ;Retry
2419200 ;Expire
604800 ;Negativecache TTL
;
@ IN NS abdul.com.
1 IN PTR abdul.com.

Setelah it JANGAN LUPA DI SAVE YA………. caranya mudah kok,emmm tekan Esc : wq
8 Restartlah paket bind pake perintah kayak gini yaaaaaa……………….
# /etc/init.d/bind9 restart
kalau udah cek hasilnya dengan perintah gini……
# nslookup abdul.com
kalau udah jalan maka akan muncul pesan seperti9 di bawah ini…………
Server: 192.168.0.1
Address: 192.168.0.1#xx

Name: abdul.com
Address: 192.168.0.1

DNS jalankan dan sukses….tp kalau belum coba masuk ke resolf.conf,dengan cara mengeditnya …..
# vim /etc/resolf.conf
search :abdul.com
Name Server: 192.168.0.1

Setelah it JANGAN LUPA DI SAVE YA………. caranya mudah kok,emmm tekan Esc : wq



AKHIRNYA DNS SERVER GUE JADIIIIIII........


Read More..

Setting IP address di mikrotik

Setting IP address di mikrotik

IP – address – add
address 192.168.2.2/24
interface speedy (dari speedy)

IP – address – add
address 192.168.29.1/29
interface proxy (ke proxy)

IP – address – add
address 192.168.90.254/24
interface local (ke local)


setting DNS

IP – DNS – add
nama =
alamat (ip dns) =


setting IP firewall (NAT)

IP – firewall – NAT – add

general : (chain : srcnat ,out interfaces : speedy,)

action : (masquerade)


jika pake proxy linux ditambah

general : (chain : dstnat, src adress :192.168.90.0/24, protocol : 6(tcp) ,dst port : 80, in interface : local

action : (action : dst-nat ,to addresses : 192.168.29.2 ,to port : 3128 (port proxy))


setting MANGLE

ip – firewall – mangle – add

general : (chain : prerouting, src. Address : 192.168.0.1) action : (action : mark connection, new connection mark : mark-comp1) sampe semua client

general : (chain : postrouting, connection mark : mark-comp1) action : (action : mark packet, new_packet_mark : comp1)



setting QUEUE TREE


Flags: X - disabled, I - invalid
0 name="con-down" parent=local packet-mark="" limit-at=0 queue=default
priority=8 max-limit=10000000 burst-limit=0 burst-threshold=0
burst-time=0s

1 name="con-up" parent=proxy packet-mark="" limit-at=0 queue=default-small
priority=8 max-limit=1000000 burst-limit=0 burst-threshold=0
burst-time=0s

2 name="comp1-down" parent=con-down packet-mark=comp1 limit-at=128000
queue=default-small priority=8 max-limit=192000 burst-limit=256000
burst-threshold=192000 burst-time=20s

3 name="comp1-up" parent=con-up packet-mark=comp1 limit-at=64000
queue=default-small priority=8 max-limit=64000 burst-limit=0
burst-threshold=0 burst-time=0s

4 name="comp2-down" parent=con-down packet-mark=comp2 limit-at=128000
queue=default-small priority=8 max-limit=192000 burst-limit=256000
burst-threshold=192000 burst-time=20s

5 name="comp2-up" parent=con-up packet-mark=comp2 limit-at=64000
queue=default-small priority=8 max-limit=64000 burst-limit=0

6 name="comp3-down" parent=con-down packet-mark=comp3 limit-at=128000
queue=default-small priority=8 max-limit=192000 burst-limit=256000
burst-threshold=192000 burst-time=20s

7 name="comp4-down" parent=con-down packet-mark=comp4 limit-at=128000
queue=default-small priority=8 max-limit=192000 burst-limit=256000
burst-threshold=192000 burst-time=20s

8 name="comp5-down" parent=con-down packet-mark=comp5 limit-at=128000
queue=default-small priority=8 max-limit=192000 burst-limit=256000
burst-threshold=192000 burst-time=20s

9 name="comp6-down" parent=con-down packet-mark=comp6 limit-at=128000
queue=default-small priority=8 max-limit=192000 burst-limit=256000
burst-threshold=192000 burst-time=20s

10 name="comp7-down" parent=con-down packet-mark=comp7 limit-at=128000
queue=default-small priority=8 max-limit=192000 burst-limit=256000
burst-threshold=192000 burst-time=20s

11 name="comp8-down" parent=con-down packet-mark=comp8 limit-at=128000
queue=default-small priority=8 max-limit=192000 burst-limit=256000
burst-threshold=192000 burst-time=20s

12 name="comp9-down" parent=con-down packet-mark=comp9 limit-at=128000
queue=default-small priority=8 max-limit=192000 burst-limit=256000
burst-threshold=192000 burst-time=20s

13 name="comp>10-down" parent=con-down packet-mark=comp10 limit-at=128000
queue=default-small priority=8 max-limit=192000 burst-limit=256000
burst-threshold=192000 burst-time=20s

14 name="comp>11-down" parent=con-down packet-mark=comp11 limit-at=128000
queue=default-small priority=8 max-limit=192000 burst-limit=256000
burst-threshold=192000 burst-time=20s

15 name="comp>12-down" parent=con-down packet-mark=comp12 limit-at=128000
queue=default-small priority=8 max-limit=144000 burst-limit=256000
burst-threshold=144000 burst-time=20s

16 X name="comp>13-down" parent=con-down packet-mark=comp13 limit-at=128000
queue=default-small priority=8 max-limit=144000 burst-limit=256000
burst-threshold=144000 burst-time=20s

17 name="comp3-up" parent=con-up packet-mark=comp3 limit-at=64000
queue=default-small priority=8 max-limit=64000 burst-limit=0
burst-threshold=0 burst-time=0s

18 name="comp4-up" parent=con-up packet-mark=comp4 limit-at=64000
queue=default-small priority=8 max-limit=64000 burst-limit=0
burst-threshold=0 burst-time=0s

19 name="comp5-up" parent=con-up packet-mark=comp5 limit-at=64000
queue=default-small priority=8 max-limit=64000 burst-limit=0
burst-threshold=0 burst-time=0s

20 name="comp6-up" parent=con-up packet-mark=comp6 limit-at=64000
queue=default-small priority=8 max-limit=64000 burst-limit=0
burst-threshold=0 burst-time=0s

21 name="comp7-up" parent=con-up packet-mark=comp7 limit-at=64000
queue=default priority=8 max-limit=64000 burst-limit=0 burst-threshold=0
burst-time=0s

22 name="comp8-up" parent=con-up packet-mark=comp8 limit-at=64000
queue=default-small priority=8 max-limit=64000 burst-limit=0
burst-threshold=0 burst-time=0s

23 name="comp9-up" parent=con-up packet-mark=comp9 limit-at=64000
queue=default-small priority=8 max-limit=64000 burst-limit=0
burst-threshold=0 burst-time=0s

24 name="comp>10-up" parent=con-up packet-mark=comp10 limit-at=64000
queue=default-small priority=8 max-limit=64000 burst-limit=0
burst-threshold=0 burst-time=0s

25 name="comp>11-up" parent=con-up packet-mark=comp11 limit-at=64000
queue=default-small priority=8 max-limit=64000 burst-limit=0
burst-threshold=0 burst-time=0s

26 name="comp>12-up" parent=con-up packet-mark=comp12 limit-at=64000
queue=default-small priority=8 max-limit=64000 burst-limit=0
burst-threshold=0 burst-time=0s

27 name="comp>13-up" parent=con-up packet-mark=comp13 limit-at=64000
queue=default-small priority=8 max-limit=64000 burst-limit=0
burst-threshold=0 burst-time=0s

28 name="ICMP" parent=global-in packet-mark=ICMP-PM limit-at=8000
queue=PFIFO-64 priority=1 max-limit=16000 burst-limit=0
burst-threshold=0 burst-time=0s

29 name="DNS" parent=global-in packet-mark=DNS-PM limit-at=8000
queue=PFIFO-64 priority=1 max-limit=16000 burst-limit=0
burst-threshold=0 burst-time=0s


ip firewall nat

Flags: X - disabled, I - invalid, D - dynamic
0 chain=dstnat in-interface=local src-address=192.168.90.0/24 protocol=tcp
dst-port=80 action=dst-nat to-addresses=192.168.29.2 to-ports=3128

1 chain=srcnat out-interface=speedy src-address-list="" action=masquerade



user : 142401100291@telkom.net
pass : ●●●●●●●

semoga postingan ini bisa bermanfaat bagi siapa saja....... selamat mencoba....

By abdulcahtkj

Read More..

Notebook Acer Aspire 7740



Notebook Acer Aspire 7740 merupakan notebook multimedia 17.3 inch yang didesain untuk user yang mencari kualitas dan harga yang murah. Notebook ini dibandrol harga $749, didukung dengan processor Intel Core i3-330M, grafis Intel GMA HD, Blu-ray drive, display HD+ LED backlight. Acer membuat Aspire 7740 dengan baterai 6 cell kapasitas 48Wh. Dengan brightness layar 70 persen, Windows diset ke profil balance, dan wireless aktif, maka notebook 7740 ini dapat bertahan hingga hampir 3 jam.

Kelebihan notebook Acer Aspire 7740 :

* Resolusi layar yang bagus
* Speaker dengan kualitas menakjubkan
* Dilengkapi Blu-ray drive

Kekurangan :

* Tidak didukung dengan software Blu-ray
* Touchpad kurang sensitif

Spesifikasi notebook Acer Aspire 7740 :

* 17.3-inch HD+ LED-backlit display (1600 x 900, glossy finish)
* OS Windows 7 Home Premium
* Processor Intel Core i3-330M (2.13GHz, 3MB Cache)
* RAM 4GB DDR3 Memory (2GB x 2GB)
* Intel GMA HD Integrated Graphics
* Baterai 6-cell 48Wh, 65W 19V AC adapter
* Dimensi : 16.2" x 10.8" x 1.6-1.8"
* Bobot: 6lbs 14.3oz

Read More..

Konfigurasi Proxy Server

Konfigurasi Proxy Server

Proxy merupakan aplikasi yang di dalam Debian Woody, aplikasi ini digunakan untuk memblokir
situs-situs yang tidak diperkenankan untuk masuk atau melewati server atau router yang kita
konfigurasi. Dengan tak panjang lebar, langsung saja saya jabarkan sederetan command konfigurasi
proxy.
Sebelum kita melakukan konfigurasi, lakukan terlebih dahulu installasi paket yang kita perlukan
dalam konfigurasi proxy server, paket yang kita butuhkan ialah “squid”.
#apt-get install squid
Tunggu sejenak hingga proses installasi squid selesai.
Nah kalo installasi squid sudah berhasil, lakukan konfigurasi file “squid.conf”. File squid.conf ada di
directory /etc/, jadi terlebih dahulu masuk ke direktory /etc/.
#cd /etc/
Nah kalo sudah masuk, buka dan edit file squid.conf. Original file squid.conf sebagai berikut :
# WELCOME TO SQUID 2
# ------------------
#
# This is the default Squid configuration file. You may wish
# to look at the Squid home page (http://www.squid-cache.org/)
# for the FAQ and other documentation.
#
# The default Squid config file shows what the defaults for
# various options happen to be. If you don’t need to change the
# default, you shouldn’t uncomment the line. Doing so may cause
# run-time problems. In some cases "none" refers to no default
# setting at all, while in other cases it refers to a valid
# option - the comments for that keyword indicate if this is the
# case.
#
# NETWORK OPTIONS
# -----------------------------------------------------------------------------
# TAG: http_port
# Usage: port
# hostname:port
# 1.2.3.4:port
#
# The socket addresses where Squid will listen for HTTP client
# requests. You may specify multiple socket addresses.
# There are three forms: port alone, hostname with port, and
# IP address with port. If you specify a hostname or IP
# address, then Squid binds the socket to that specific
10
# address. This replaces the old ’tcp_incoming_address’
# option. Most likely, you do not need to bind to a specific
# address, so you can use the port number alone.
#
# The default port number is 3128.
#
# If you are running Squid in accelerator mode, then you
# probably want to listen on port 80 also, or instead.
#
# The -a command line option will override the *first* port
# number listed here. That option will NOT override an IP
...
Lakukan pengeditan file squid.conf seperti berikut :
Dalam keadaan file squid.conf masih terbuka, tekan tombol F7, kemudian input kalimat “INSERT
YOUR OWN RULE”dan tekan tombol “ENTER” setelah layar menampilkan baris INSERT YOUR OWN RULE..., seperti berikut :
# INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS
#
http_access allow localhost
# And finally deny all other access to this proxy
http_access deny all
# TAG: icp_access
# Allowing or Denying access to the ICP port based on defined
# access lists
#
# icp_access allow|deny [!]aclname ...
#
# See http_access for details
#
#Default:
# icp_access deny all
#
#Allow ICP queries from eveyone
icp_access allow all
# TAG: miss_access
# Use to force your neighbors to use you as a sibling instead of
# a parent. For example:
#
# acl localclients src 172.16.0.0/16
# miss_access allow localclients
# miss_access deny !localclients
#
# This means that only your local clients are allowed to fetch
Tambahkan command konfigurasi sebagai berikut :
# INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS
11
#
acl localnet src 192.168.1.0/24
http_access allow localhost
acl larang url_regex -i "/etc/larang"
http_access deny larang
http_access allow localnet

# And finally deny all other access to this proxy
http_access deny all
# TAG: icp_access
# Allowing or Denying access to the ICP port based on defined
# access lists
Tekan lagi tombol F7 dan inputkan kalimat “httpd_accel”, layar akan menampilkan command sebagai berikut :
# HTTPD-ACCELERATOR OPTIONS
# -----------------------------------------------------------------------------
# TAG: httpd_accel_host
# TAG: httpd_accel_port
# If you want to run Squid as an httpd accelerator, define the
# host name and port number where the real HTTP server is.
#
# If you want virtual host support then specify the hostname
# as "virtual".
#
# If you want virtual port support then specify the port as "0".
#
# NOTE: enabling httpd_accel_host disables proxy-caching and
# ICP. If you want these features enabled also, then set
# the ’httpd_accel_with_proxy’ option.
#
#Default:
# httpd_accel_port 80
# TAG: httpd_accel_single_host on|off
# If you are running Squid as a accelerator and have a single backend
# server then set this to on. This causes Squid to forward the request
# to this server irregardles of what any redirectors or Host headers
# says.
#
# Leave this at off if you have multiple backend servers, and use a
# redirector (or host table or private DNS) to map the requests to the
# appropriate backend servers. Note that the mapping needs to be a
# 1-1 mapping between requested and backend (from redirector) domain
# names or caching will fail, as cacing is performed using the
# URL returned from the redirector.
#
# See also redirect_rewrites_host_header.
12
#
#Default:
# httpd_accel_single_host off
# TAG: httpd_accel_with_proxy on|off
Lakukan penambahan command atau konfigurasi sebagai berikut :
# HTTPD-ACCELERATOR OPTIONS
# -----------------------------------------------------------------------------
# TAG: httpd_accel_host
# TAG: httpd_accel_port
# If you want to run Squid as an httpd accelerator, define the
# host name and port number where the real HTTP server is.
#
# If you want virtual host support then specify the hostname
# as "virtual".
#
# If you want virtual port support then specify the port as "0".
#
# NOTE: enabling httpd_accel_host disables proxy-caching and
# ICP. If you want these features enabled also, then set
# the ’httpd_accel_with_proxy’ option.
#
#Default:
# httpd_accel_port 80
httpd_accel_port 80
httpd_accel_host virtual
httpd_accel_with_proxy on
httpd_accel_uses_host_header on

# TAG: httpd_accel_single_host on|off
# If you are running Squid as a accelerator and have a single backend
# server then set this to on. This causes Squid to forward the request
# to this server irregardles of what any redirectors or Host headers
# says.
Terakhir simpan file tersebut dengan menekan tombol F2 dan keluar dengan menekan tombol F10
Berikut lakukan kembali konfigurasi-konfigurasi beserta penambahan file. Tahap selanjutnya kita
akan membuat sebuah file yang berisikan alamat-alamat yang akan kita blok (tidak boleh masuk).
Masih di direktori /etc/ ciptakan file “larang” hal ini sesuai dengan konfigurasi kita pada baris “acl
larang url_regex –i “/etc/larang”
acl larang url_regex -i "/etc/larang"
#mcedit larang

Kemudian inputkan alamat-alamat yang akan kita blok. Contoh alamat yang kita blok :
google.com
yahoo.com
Maka langsung saja ketikkan :
yahoo
13
google
Kemudian simpan file tersebut. Tekan tombol F2 kemudian keluar tekan tombol F10
Sekarang kita tinggal mengesetkan atau mengkonfigurasi command “iptables”. Langsung saja
lakukan perintah seperti berikut :
.../etc#iptables -t nat -A PREROUTING -s 192.168.1.1/255.255.255.0 -p tcp --port 80 -j REDIRECT --toport
3128

Selanjutnya kita permanenkan iptables kita, jangan sampai lupa untuk menyimpannya, karena bila
kita tidak menyimpannya, maka apabila komputer reboot, konfigurasi iptables hilang.
Untuk menyimpannya buat terlebih dulu file dimana nantinya untuk menyimpan atau meletakkan
konfigurasi iptables.
Di sini kita buat file “myiptables” untuk tempat menyimpan konfigurasi iptables
../etc#touch myiptables
Lanjut ketikkan perintah berikut untuk menyimpan konfigurasi iptables :
#iptables-save >myiptables
Kemudian buat sebuah file sebagai aplikasi untuk loading file myiptables :
#mcedit iptablesload
Kemudian ketikkan script berikut :
iptables-restore /dev/null 2>&1
Simpan file tersebut dengan tombol F2 dan keluar dengan F10. Berikan permission atau izin untuk
file tersebut dengan perintah :
#chmod 755 iptablesload
Masih di direktori /etc#, masuk ke direktory “rc.boot”
#cd rc.boot
Nah di sini buatlah file “startup” dan isikan file tersebut :
#mcedit startup
#!/bin/sh
/etc/iptablesload

Save file tersebut dengan F2 dan keluar F10.
Berikut berikan permission untuk file startup :
#chmod 755 startup
Terakhir restart squid dengan perintah :
#/etc/init.d/squid restart


Read More..

Install Windows Server 2008

Install Windows Server 2008
By abdulcahtkj.blogspot.com

With Windows Server 2008, you have the option of performing a Windows Server Core
installation, which provides you with the minimum set of tools to run Windows.
You are provided with a kernel and a command l ine to manage the server. It is slim and
bare bones and allows you to configure Windows concisely. This typ e of installation is
perfect for a datacenter. I am really excited about this feature.
Installation
When you first run through the installation of W indows Server 2008, you have two
options for installation. They are:
Windows Server 2008 Enterprise (Full Installation)
Windows Server 2008 Enterprise (Server Core Installation)
The following eight screen shots (
Figures A-H
) walk you through the installati on of
Windows Server Core which took approximately ten minutes to install.

Figure A














Figure B















Figure C















Figure D
















Figure E
















Figure F

















Figure G

















Figure H


After the installation, the main window for your new installation appears a nd you are read y to login as shown in Figure I. The initial login is Administrator and blank password (Figure J). You are required to change the password and set an Administrator
password on initial login.








Figure I
















Figure J


Now that you are logged in (Figure K), you are ready to configure the date, time, and time zone. In the command line type the following:controltimedate.cpl
and set the options accordingly (Figure L).










Figure K
















Figure L


If you need to configure and change the keyboard layout and settings, type the following in the command window: control intl.cpl(Figure M).









Figure M


Let’s move on and change the server name. The default name is a bun ch of random
letters and numbers and I would like to change the name to a local standard. You can
view the current hostname by typing the following:
c:windowssystem32hostname Now let’s use the name ssw -svr15. We will perform this option in the command line(Figure O) by typin g the following: c:windowssystem32netdom renamecomputer %computername% /NewName:ssw -svr15






Figure N


After choosing to proceed, the task completes successfully. You now need to reboot theserver using the shutdown command. For the proper syntax, type:
shutdown /?After reviewing the syntax, (Figure N) type the following:shutdown /r
(switch forshutting down and restarting the computer)
/t 10(wait 10 seconds to shutdown andrestart)/c “Changed Server Name”
(add comment of max 512 characters). They total
syntax will look as follows:
shutdown /r /T 10 /C "Changed Server Name"






Figure O



Let’s now configure our networking so we can join this server to a domain. In order tosee what interface you have to configure, (Figure P) type netsh interface ipv4 show interface








Figure P



The Local Area Connection that we are going to configure has an index value of two.
Let’s proceed and configure TCP/IP for this connection. (
Figure Q) Type the following command to set the TCP/IP information:
netsh interface ipv4 set address name="2" source=static
address=192.168.1.199 mask=255.255. 255.0 gateway=192.168.1.1






Figure Q


Follow the same example to configure DNS (Figure R):netsh interface ipv4 add dnsserver name="2" address=192.168.1.1 in
dex=1








Figure R



If you typeipconfig /all, you will see the newly added information (Figure S).










Figure S



Let’s join it to a domain! In order to perform this function, we will take advantage of thenetdom.exe. (Figure T) The syntax is as follows:netdom join ssw -svr15 /domain:watchtower /userd:Administrator/passwordD:Password01Note:Do not for get to reboot the server using the following command:shutdown /r /T 10 /C "Added to domain"






Figure T



As a final step , we should not forget to activate the server (Figure U) by typing thefollowing:slmgr.vbs -ato









Figure U



This doesn’t even scratch the surface of what you c an do with a Windows Server Core
installation but it begins to show you how powerful command line is with a small
Windows kernel. With the popularity of virtualization and server consolidation, havingthe ability to virtualize a server core installation an d attach a single role will become very popular with the datacenter.

Read More..

Teknologi & education

Teknologi & education
What is a Wide-Area Network (WAN) ?
A computer network that spans a relatively large geographical area. Typically, a WAN consists of two or more local-area networks (LANs). A LAN is computer network that spans a relatively small area. Most LANs are confined to a single building or group of buildings.

Computers connected to a wide-area network are often connected through public networks, such as the telephone system. They can also be connected through leased lines or satellites. The largest WAN in existence is the Internet.
(Webopedia, 2005)

WAN Issues (In Indonesia)
In Indonesia, like the rest of the world, the Internet is gradually replacing conventional telecommunication systems in many areas of daily communications. The Internet is emerging as a major issue confronting the conventional telecommunication and information industry, even for those conventional industries participating in the development. Clearly another important issue is that we assure that we have Internet backbone support that is capable of meeting current and future needs.

In Indonesia most larger companies and government departments employ a Local Area Network (LAN) which is connected to a WAN for broader communications, business and information services. WANs are rapidly becoming more widely used for transferring voice as well using Voice over IP technology (VoIP). With the rapid development of wireless technology and wireless systems, it is now feasible to employ wireless WAN in both city and country locations. This is already being done by some cities and small towns as an economic way to expand and improve services.

Still the most common technology individuals and small businesses utilize to access the Internet is Dialup to a local Internet Service Provider (ISP). While this service is fairly reliable and fast enough for most purposes the cost of using Dialup is a major issue. This is especially the case for schools and educational institutions that are operating on a minimal budget. In Indonesia local telephone calls are timed, unlike Australia for instance, and telephone costs per hour are far greater than the costs for a reliable ISP (i.e. typically 5:1).

Cable TV is an economical option for people who wish to have international television stations available in their homes or businesses. For a relatively low extra charge 24hr-unlimited Internet services are available. However for the average, non-English-speaking, low Internet volume users this can be an expensive option.

Another of the technologies used to access and transfer broadband, high-speed services is the Digital Subscriber Line (ADSL) and the ADSL market is growing rapidly, especially in homes and small businesses because one (1) telephone line can be used for both telephone and Internet purposes simultaneously. As the technology develops so does its capability to transfer what ever the customer needs. The main issues with ADSL are the quality of the lines, the distance from the supply point and the subscription price for using the line.

Indonesia is conscious of the need to participate in this globalization era and in the latter part of year 2000 the government introduced a new telecommunication act that allows free competition for domestic and international services. Indonesia is a very large potential market and good business opportunities exist for long-term players in the technology industry.

Fiber Optics (FO) is the preferred transmission media for broadband multimedia backbones and general access. It addresses many of the needs created by increased Internet data traffic and VoIP.

For Indonesia some of the key issues are:

* Keeping up with International Developments.
* Prediction and Planning for Future Data Capacity Needs.
* How to achieve a balance between Business Profits and Improved Community Access.
* The Development of Industry Best Practices and Standards.

WAN (Internet) and Education
One issue which is very important regarding WAN (Internet) and education in Indonesia and that is publis access. Education is an issue that is very important to "all citizens". I have found a number of websites that utilize a password for entry to the site. Educational information and information about education in Indonesian language is very limited and it is most important that it can be accessed by anyone searching for it. If a WAN website contains restricted or confidential information, you should create a special section for Login, and all educational content should be available to the general public.

We are very intrerested in new and innovative applications of technology to learning an education generally. If you are in posession of any information that you would like to pass on please leave a message here.

* Special City-WAN Sites in Indonesia *

Teknologi & Kemiskinan

eGroup Diskusi TeleCentre eGroup Warung Internet
Register in the
Mailing List Pendidikan Network

Mailing List Home

Didn't find what you were looking for above?

Search this site! powered by FreeFind
IndoEducation Network
Indonesian Education Network

Read More..

Topologi Jaringan LAN

Topologi Jaringan LAN (Local Area Network)

Ada banyak pengertian tentang Topologi Jaringan LAN ini, tapi saya disini mendifenisikan bahwa Topologi Jaringan adalah susunan lintasan aliran data didalam jaringan yang secara fisik mengswitchungkan simpul yang satu dengan simpul lainnya. Berikut ini adalah beberapa topologi jaringan yang ada dan dipakai hingga saat ini, yaitu:

Topologi Star

Beberapa simpul/node yang diswitchungkan dengan simpul pusat/host, yang membentuk jaringan fisik seperti bintang, semua komunikasi ditangani langsung dan dikelola oleh host yang berupa mainframe komputer seperti Switch hub.
Topologi star digunakan dalam jaringan yang padat, ketika endpoint dapat dicapai langsung dari lokasi pusat, kebutuhan untuk perluasan jaringan, dan membutuhkan kehandalan yang tinggi. Topologi ini merupakan susunan yang menggunakan lebih banyak kabel daripada bus dan karena semua komputer dan perangkat terhubung ke central point. Jadi bila ada salah satu komputer atau perangkat yang mengalami kerusakan maka tidak akan mempengaruhi yang jaringan yang lainnya.


berikut ini gambar topologi star sebagai gambaran.




Topologi Hierarkis

Berbentuk seperti pohon bercabang yang terditi dari komputer induk (host) yang diswitchungkan dengan simpul atau node lain secara berjenjang, jenjang yang lebih tinggi berfungsi sebagai pengetur kerja jenjang dibawahnya, biasanya topologi ini digunakan oleh perusahaan besar atau lembaga besar yang mempunyai beberapa cabang daerah, sehingga data dari pusat bisa didistribusikan ke cabang atau sebaliknya.

berikut ini gambar topologi Hierarkis sebagai gambaran.





Topologi Bus

Beberapa simpul/node diswitchungkan dengan jalur data (bus). Masing2 node dapat melakukan tugas-tugas dan operasi yang berbeda namun semua mempunyai hierarki yang sama.
Topologi ini biasanya menggunakan kabel Coaxial, yang sekarang sudah sangat jarang digunakan atau di implementasikan.

berikut ini gambar topologi Bus sebagai gambaran.






Topologi Ring

Di dalam topologi Ring semua workstation dan server dihubungkan sehingga terbentuk suatu pola lingkaran atau cincin. Tiap workstation ataupun server akan menerima dan melewatkan informasi dari satu komputer ke komputer lain, bila alamat- alamat yang dimaksud sesuai maka informasi diterima dan bila tidak informasi akan dilewatkan. Kelemahan dari topologi ini adalah setiap node dalam jaringan akan selalu ikut serta mengelola informasi yang dilewatkan dalam jaringan, sehingga bila terdapat gangguan di suatu node maka seluruh jaringan akan terganggu. Keunggulan topologi Ring adalah tidak terjadinya collision atau tabrakan pengiriman data seperti pada topologi Bus, karena hanya satu node dapat mengirimkan data pada suatu saat, dan yang lainnya menggu hingga pengiriman data selesai.

berikut ini gambar topologi Bus sebagai gambaran.


Read More..

Konsep Dasar Jaringan

Konsep Dasar Jaringan

Jaringan komputer adalah sekelompok komputer yang saling dihubungkan dengan menggunakan suatu protokol komunikasi sehingga antara satu komputer dengan komputer yang lain dapat berbagi data atau berbagi sumber daya (sharing resources).

Sistem pemasangan jaringan dapat dibedakan menjadi dua macam, yaitu :

1. Jaringan Terpusat
Adalah jaringan yang terdiri dari beberapa node (workstation) yang terhubung dengan sebuah komputer pusat atau disebut Server. Pada jaringan ini sistem kerja workstation tergantung dari komputer pusat. Dan komputer pusat tugasnya melayani permintaan akses dari workstation.
2. Jaringan Peer-to-Peer
Adalah jaringan yang terdiri dari beberapa komputer yang saling berhubungan antara satu dengan lainnya tanpa komputer pusat (server base). Pada masing-masing komputer workstation terdapat media penyimpanan (hard disk) yang berfugsi sebagai server individu.

Pemanfaatan Jaringan Komputer

Pembentukan sebuah jaringan komputer sangan erat dengan manfaat yang dapat diperoleh dengan adanya jaringan tersebut.

1. Bagi pakai (sharing) peralatan (resources)
Dengan adanya jaringan komputer, maka pemakain beberapa peralatan komputer seperti printer, hard disk, disket, scanner, CD-ROM dan lainnya dapat dilakukan bersama-sama saling bergantian tanpa harus memindahkan posisi peralatan yang terpasang tersebut.
2. Bagi pakai software
Hampir dalam setiap organisasi, kemampuan dalam melakukan bagi pakai berkas atau file data diperlukan setiap hari. Beberapa tipe software PC, khususnya program manajemen basis data atau database, didesain disamping agar bisa dipakai oleh satu pemakai, juga dimungkinkan untuk dipakai bersama-sama dengan pemakai lain dalam waktu yang bersamaan. Atau dengan kata lain, untuk mengakses dan meng-update file-file tadi. Paket yang lain, seperti program pengolah data (word processor) dan spreadsheet, kebanyakan didesaian hanya untuk satu pemakai yang dapat meng-update file.
3. Komunikasi
Kominikasi antar pemakai dalam suatu jaringan dapat dilakukan dengan menggunakan e-mail atau tele conference. Sehingga kebutuhan akan komunikasi antar pemakai dapat dipenuhi tanpa harus pindah dari tempat kerjanya. Selain itu pemakai e-mail dapat menekan pemakaian pulsa telepon.
4. Pemrosesan terpusat (terdistribusi)
Didalam suatu jaringan komputer, data dapat diolah secara terpusat atau secara terdistribusi. Pemrosesan secara terpusat dilakukan apabila sebuah data yang dibuat oleh tiap pemakai jaringan dikehendaki untuk disatukan dalam komputer pusat. Sebaliknya, pemrosesan terdistribusi dilakukan apabila suatu pekerjaan pengolahan data dari komputer pusat dapat dikerjakan oleh tiap pemakai berdasarkan spesialisasi bidang kerjanya.
5. Keamanan data
Keamanan data dapat diatur oleh supervisor (administrator) dengan pemberian hak akses, pembatasan waktu akses dan pemberian password untuk melindungi pemakaian komputer pusat.
6. Akses internet bersama-sama
Jika ada salah satu komputer berhubungan ke internet dan komputer tersebut memberikan izin untuk akses ke internet, maka para pengguna jaringan dapat melakukan aktivitas di internet hanya dengan menggunakan satu buah akun di ISP, satu buah modem. Hal ini sangat menghemat dana yang cukup besar.

Komponen Perangkat Keras

Tidak peduli apakah anda sudah memiliki sebuah network atau berniat menginstalasi network baru, anda perlu mengetahui komponen-komponen perangkat keras yang digunakan.



Server

Komputer yang menjalankan sistem operasi jaringan yang berfungsi sebagai server. Server menyediakan file, printer dan pelayanan lain untuk client. Ada dua buah jenis server, yaitu :

* Server dedicated, server yang tidak memiliki fungsi lain. Ia tidak bisa digunakan sebagai workstation. Untuk melihat jenis dari server tersebut dapat diketahui melalui sistem operasi jaringan yang dijalankannya, misalnya Novell Netware.
* Server Non-Dedicated, server yang juga bisa berfungsi sebagai workstation. Contohnya : Microsoft Windows NT Server, Mocrosoft Windows NT Workstation, Microsoft Windows 95/98, Unix, Linux, Mac OS/2.

Dari fungsinya, server dapat digunakan :

* Menyimpan file-file yang digunakan bersama-sama pada hard disk-nya
* Mengatur komunikasi (seperti pesan e-mail) antar workstation
* Mengkoordinasikan pencetakan kepada printer yang dipakai bersama-sama
* Server juga dapat menyimpan CD-ROM yang dapat dipakai oleh para pemakai network
* Bisa menyimpan tape drive atau drive lain yang digunakan untuk menyimpan hard disk server atau hard disk pada workstation
* Dengan perangkat lunak dan keras tambahan, server bisa mengarahkan e-mail dari dan ke internet. Server juga bisa mengirimkan fax ke luar jaringan ke mesin-mesin fax yang ada di luar. Kenyataannya server hampir dapat melakukan semua pekerjaan yang mencakup pengiriman data.




Workstation

Komputer yang terhubung ke server dan dapat mengakses data dari server. Workstation menjalankan beragam sistem operasi dan merupakan bagian dari network yang ada. Pada kenyataannya workstation digunakan oleh pemakai secara langsung.



Network Interface Card (NIC)

NIC atau adapter network adalah sebuah komputer hardware yang mutlak dibutuhkan jika kita menginginkan merakit jaringan komputer menggunakan media penghubung kabel. NIC berfungsi menghubungkan server ke sistem pengkabelan network. Berdasarkan tipe slot pada motherboard dibedakan menjadi dua jenis:

* Tipe slot ISA (slot warna hitam/coklat, lebih panjang)
* Tipe slot PCI (slot warna putih, lebih pendek)



Switch/Hub (Concentrator/Repeater)

Sistem pengkabelan yang paling populer untuk Network Ethernet menggunakan kabel Unshielded Twisted Pair (UTP) atau kabel terpilin yang terbuka dengan konektor yang mirip dengan konektor telepon. Ini disebut dengan 10BaseT. Untuk setiap adapter network pada setiap server atau workstation, salah satu dari kabel-kabel ini berhubungan ke Hub/Switch atau pusat pengkabelan.



Bridge, Router Dan Gateway

Bridge berfungsi menghubungkan dua network dengan mentransfer data diantara network tersebut. Sebagai contoh, bridge bisa menghubungkan segmen kabel dari arsitektur Token Ring dengan arsitektur Ethernet, atau menghubungkan dua segmen Ethernet menjadi satu. Bridge mampu mengurangi lalu lintas dengan hanya mengirimkan data yang benar-benar diniatkan untuk komputer tujuan. Bridge pintar (intelligent bridge) bisa berbuat lebih baik lagi dengan menyaring atau hanya mengirimkan paket-paket tertentu ke tujuan.



Uninterrutible Power Supply (UPS)

Sudah jelas UPS tidak hanya digunakan oleh network. Anda bisa juga menggunakannya pada setiap alat yang membutuhkan aliran listrik alternatif. UPS adalah alat yang sangat penting bagi perusahaan yang menggunakan komputer untuk produktifitasnya dan tidak ingin kehilangan data atau waktu kerja pegawai. Pada setiap keadaan yang bisa dibayangkan, melalui UPS adalah investasi yang menguntungkan untuk setiap workstation, hub, dan server pada network.



Printer Dan Peripheral Lain

Printer adalah salah satu alasan utama kenapa ada network. Karena printer tidak selalu digunakan oleh setiap pemakai, akan lebih ekonomis jika memakai satu printer bersama-sama. Printer bisa dihubungkan langsung pada workstation atau ke server.
Anda juga bisa memasang scanner, CD-ROM eksternal dan peralatan lain yang berguan dan dapat digunakan secara bersama-sama pada network. Sama seperti yang lainnya, hal ini membutuhkan perangkat lunak dan perangkat keras yang tepat.

Read More..

Perangkat Local Area Network (LAN)

Perangkat Local Area Network (LAN)

Terdapat sejumlah perangkat yang melewatkan aliran informasi data dalam sebuah LAN. Penggabungan perangkat tersebut akan menciptakan infrastruktur LAN. Perangkat-perangkat tersebut adalah :

* Repeater
* Bridge
* Hub
* Switche
* Router




Repeater/Penguat

Repeater, bekerja pada layer fisik jaringan, menguatkan sinyal dan mengirimkan dari satu repeater ke repeater lain. Repeater tidak merubah informasi yang ditransmisikan dan repeater tidak dapat memfilter informasi. Repeater hanya berfungsi membantu menguatkan sinyal yang melemah akibat jarak, sehingga sinyal dapat ditransmisikan ke jarak yang lebih jauh.




Hub

hub.gifHub menghubungkan semua komputer yang terhubung ke LAN. Hub adalah repeater dengan jumlah port banyak (multiport repeater). Hub tidak mampu menentukan tujuan; Hub hanya mentrasmisikan sinyal ke setiap line yang terkoneksi dengannya, menggunakan mode half-duplex.



Bridge

bridge.gifBridge adalah “intelligent repeater”. Bridge menguatkan sinyal yang ditransmisikannya, tetapi tidak seperti repeater, Brigde mampu menentukan tujuan.



Switch

ethernetswitch.gifSwitch menghubungkan semua komputer yang terhubung ke LAN, sama seperti hub. Perbedaannya adalah switch dapat beroperasi dengan mode full-duplex dan mampu mengalihkan jalur dan memfilter informasi ke dan dari tujuan yang spesifik.




Router

router.gifRouter adalah peningkatan kemampuan dari bridge. Router mampu menunjukkan rute/jalur (route) dan memfilter informasi pada jaringan yang berbeda. Beberapa router mampu secara otomatis mendeteksi masalah dan mengalihkan jalur informasi dari area yang bermasalah.

Read More..

Monitoring Proxy Server Secara Realtime

Monitoring Proxy Server Secara Realtime

Memonitor access proxy server sangat diperlukan bagi para admin jaringan, begitu pula
anda yang saat ini menjadi administrator jaringan di sebuah warnet, instansi pemerintah,
institusi pendidikan maupun di sebuah RTRWNET. Jika anda mempercayakan squid
sebagai proxy server anda, maka anda perlu menginstall program khusus untuk
memonitor access pada proxy server anda.
Berikut saya ada sedikit pengalaman mengenai software monitoring squid tersebut.
Asumsi bahwa anda sudah memiliki proxy server yangg sudah berjalan dengan baik &
webserver yang juga sudah berjalan dengan baik. Software monitoring access squid
secara realtime ini bernama sqstat.
Langkah-langkah menginstall dan mengkonfigurasi sqstat adalah sebagai berikut :
1.Download paket sqstat :
[root@sipiyuku ~]# wget http://samm.kiev.ua/sqstat/sqstat-1.20.tar.gz
2.Extract paket sqstat yg sudah kita download tadi :
[root@sipiyuku ~]# tar -zxvf sqstat-1.20.tar.gz
3.Pindahkan directory hasil extract tadi ke dalam path directory webserver anda:
[root@sipiyuku ~]# mv sqstat-1.20 /var/www/html/sqstat
4.Konfig file config.inc.php di dalam directory sqstat
[root@sipiyuku ~]# cd /var/www/html/sqstat/

Seluruh dokumen di IlmuKomputer.Com dapat digunakan, dimodifikasi dan disebarkan
secara bebas untuk tujuan bukan komersial (nonprofit), dengan syarat tidak menghapus
atau merubah atribut penulis dan pernyataan copyright yang disertakan dalam setiap
dokumen. Tidak diperbolehkan melakukan penulisan ulang, kecuali mendapatkan ijin
terlebih dahulu dari IlmuKomputer.Com.
[root@sipiyuku sqstat]# mv config.inc.php.defaults config.inc.php
[root@sipiyuku sqstat]# vi config.inc.php
ganti baris berikut DEFINE("SQSTAT_SHOWLEN",60); menjadi
DEFINE("SQSTAT_SHOWLEN",100);
lalu simpan konfignya.
5.Edit Konfigurasi squid anda
[root@sipiyuku ~]# vi /usr/local/squid/etc/squid.conf
tambahkan baris berikut pada konfig squid anda:
acl manager proto cache_object
acl webserver src 192.68.1.1/255.255.255.240 ##Sesuaikan dengan ip webserver anda
http_access allow manager webserver
http_access deny manager
lalu simpan konfig anda.
6.Nah anda sudah selesai menginstall sqstat, sekarang tinggal di coba saja, buka
browser anda lalu akses http://ipproxyanda/sqstat/sqstat.php
Goodluck, Selamat mencoba.

Read More..

HACKING BANDWIDTH DENGAN MOZILLA





HACKING BANDWIDTH DENGAN MOZILLA



Ada banyak cara untuk mengakali koneksi internet yang lambat, apalagi Anda menggunakan akses internet di warnet-warnet yang kebanyakan mereka telah membatasi bandwidth setiap komputernya.

Berikut adalah beberapa tips dan trik yang bisa Anda coba :

1). Buka Browser Mozilla Firefox
2). Pada Address Bar Ketik : ABOUT:CONFIG
3). Cari string di bawah ini : ( pastikan semua srting dibawah “TRUE”)

contoh menggantingnya :
NETWORK.HTTP.PIPELINING FALSE ==> klik kanan dan pilih “Toggle”
NETWORK.HTTP.PIPELINING TRUE
NETWORK.HTTP.PIPELINING.MAXREQUESTS 64
NETWORK.HTTP.PROXY.PIPELINING TRUE
NETWORK.PROXY.SHARE_PROXY_SETTINGS FALSE <=== ini harus False 4). buat srting baru caranya : Klik Kiri 1X Dimana Saja, Klik Kanan NEW>>INTEGER


5). Ketik : NGLAYOUT.INITIALPAINT.DELAY Beri Nilai 0
6). Kemudian REFRESH atau Tekan F5
7). Pada Address Bar Ketik : ABOUT:BLANK
Klik Menu:
Untuk OS Windows XP TOOLS>>OPTIONS>>WEB FEATURES
Untuk OS Linux ( Vector ) EDIT >> PREFERENCES
Untuk Setting yang berbeda di beberapa OS EDIT >>ADVANCED

8). Pada Option:
ALLOW WEB SITES TO INSTALL SOFTWARE Beri Tanda Check Box Untuk mengaktifkan
9).Kemudian Tekan OK Lalu REFRESH ( F5 )
10).Masuk Ke Link Ini :
https://addons.mozilla.org/extensions/moreinfo.php?applicationfiltered=firefox&id=125
atau :
https://addons.mozilla.org/extensions/moreinfo.php?id=125&applicationfiltered=firefox

11).Download Software SwitchProxy Tool Versi 1.3.4
12).Setelah Selesai Jangan Tekan Tombol UPDATE
13).Klik Tanda X (tutup)Yang Ada Di Pojok Kanan Atas Dari POP UP Window Yang Muncul
14).Tutup Semua Browser Mozilla FireFox,
15).Kemudian Buka Lagi Untuk Mengaktifkan Software SwitchProxy Tool Versi 1.3.4 Yang sudah di Install Tadi

16).Kalo Instalasi Sukses, Akan Muncul Toolbar tambahan Di Bawah Toolbar Navigasi & Address Bar.

Sekarang Browser Mozilla Siap Untuk Digunakan


Catatan :

– Software SwitchProxy Tool Versi 1.3.4 Ini selain untuk Mengganti Proxy Secara Otomatis Di Browser Mozilla FireFox, Engine-nya Juga Berpengaruh terhadap Kecepatan Koneksi Internet
– Cara Ini Sangat Efektif Bila Digunakan Di Warnet Yang Padat Pengunjung untuk Menyedot Bandwidth ( Mayoritas kecepatan akses Internet ) Ke Komputer Yang Sedang Anda Pakai
– Perubahan Yang Signifikan Terjadi Pada koneksi Internet Dengan BROADBAND / VSAT

Read More..

Lagi, YouTube Down Selama Hampir 2 Jam



Lagi, YouTube Down Selama Hampir 2 Jam


YouTube tiba-tiba down di Kamis (25/03) pagi selama satu hingga dua jam, menurut report dari PcMag. YouTube juga menampilkan error yang sama seperti yang terjadi di tanggal 2 Maret ketika YouTube down untuk waktu yang singkat, yakni "Http/1.1 Service Unavailable". Kemudian, banyak video yang ada di situs lain tidak bisa diputar.

“YouTube lagi-lagi mengalami permasalahan teknis yang kini sudah terselesaikan. Kami tahu betapa pentingnya YouTube untuk banyak orang dan kami meminta maaf atas ketidaknyamanan waktu down tersebut.” ungkap Google.

Namun, Google tidak menyebutkan permasalahan apa yang sebenarnya terjadi.

Read More..

Google Tambah Fitur Baru di Chat Gmail



Google Tambah Fitur Baru di Chat Gmail


Pernahkah suatu ketika ingin mengirim file dengan cepat kepada teman yang sedang online?

Kini user dapat share gambar, dokumen dan file lain secara langsung kepada teman ketika sedang chating di iGoogle atau Orkut, tanpa harus switch ke email untuk mengirim file sebagai attachment. Transfer file bekerja langsung di browser sehingga user tidak perlu menginstal apapu, Hanya memulai conversation dengan teman dan klik “Send a file” di menu “Actions”. Setelah user memilih file, maka teman chatting akan ditanya apakah ia mau menerima transfer file atau tidak.

Dari toolbar baru di iGoogle dan Orkut, user dapat mengklik tombol camera biru dan icon phone untuk memulai chat voice dan video dengan teman atau icon chat group untuk menambah teman ke chat berbentuk text. Jika belum pernah menggunakan chat voice atau video sebelumnya, yang dibutuhkan adalah webcam dan microphone yang dikoneksikan ke komputer dan aplikasi kecil yang bisa di-download gratis di google.com/chat/video.

Selain itu, fitur transfer file dan toolbar baru akan hadir di Gmail juga. Di Gmail user dapat melanjutkan mengakses voice chat, video dan chat group dari menu “Video and More” di jendela chat.

Read More..

Tips Membatasi Hak Akses Logon ke Komputer

Tips Membatasi Hak Akses Logon ke Komputer

Jika Anda bekerja di lingkungan multiuser, dan Anda memiliki full akses (level administrator) ke komputer Anda, Anda mungkin ingin membatasi akses yang tidak sah untuk file ‘sensitif’ di system Windows, terutama Windows 95 atau 98.

* Salah satu caranya adalah dengan men-disable tombol; ‘Cancel’ di dialog box Logon.
* Atau dapat melalui Regedit, dan menuju ke : HKEY_LOCAL_MACHINE/Network/Logon
* Anda bisa membuat sub key “Logon” jika tidak tertampil, kemudian menuju ke “Network”, klik kanan di panel sebelah kirim Regedit.
* Pilih New -> Key -> beri nama "Logon" (tanpa quotes) -> tekan Enter
* Lalu tambah atau modifikasi nilai DWORD dan isi "MustBeValidated" (tanpa quotes).
* Klik ganda nilai DWORD dan di bagian box bertulis “Decimal” dan isikan dengan angka 1.
* Klik tombol “Start“ -> Shut down (menggunakan Log Off Nama Anda) -> kemudian logon lagi dengan user yang berbeda dan Anda akan menyadari bahwa tombol Cancel telah hilang.

Read More..

Canvio, Harddisk Eksternal 1 TB Pertama Ala Toshiba





Canvio, Harddisk Eksternal 1 TB Pertama Ala Toshiba



Setelah hadirnya harddisk eksternal My Passport Studi 640GB dari Western Digital yang dianggap sebagai harddisk dengan kapasitas terbesar, maka kini posisinya digeser oleh Toshiba. Toshiba membuat harddisk portable Canvio dengan kapasitas 1TB, dan ukuran lebar 3.1 inch, panjang 4.7 inch dan tebal 0.65 inch, dengan bobot hanya 6.3 oz.
Harddisk portable Toshiba Canvio ini memiliki satu port USB 2.0 yang bekerja untuk koneksi power dan data.

Namun, sayangnya harddisk ini belum suppoer port USB 3.0, yang menawarkan kecepatan lebih besar ketimbang USB 2.0. Jika My Book Passport dari Western Digital ditujukan untuk pengguna Mac, maka Canvio ini ditujukan untuk pengguna PC. Toshiba juga menambah device baru ini untuk membantu pengguna PC agar dapat backup data dengan mudah, karena dalam hardware ini dilengkapi pula software NTI BackupNow EZ, dan kemampuan pencarian juga restore data jika ada file yang hilang.

Untuk pengguna PC yang sudah mahir, software dalam Canvio juga dilengkapi fitur pilihan backup, dan overwrite file original. Canvio menyediakan system backup lengkap, memudahkan user untuk mengembalikan system komputer ketika system tidak bisa start. Harddisk eksternal Toshiba Canvio ini diberi garansi 3 tahun dan hadir dalam 5 warna, yakni Raven Black, Satin Silver, Liquid Blue, Rocket Red, dan Komodo Green. Untuk versi 1TB ini Canvio dijual dengan harga kisaran $200.

Read More..

Ponsel WiMAX Keren, HTC EVO 4G





Ponsel WiMAX Keren, HTC EVO 4G




Ponsel WiMAX HTC Supersonic, atau yang diberi nama HTC EVO 4G, akan segera dirilis musim ini. Handset HTC EVO 4G ini didukung dengan LCD 4.3 inch TFT, processor Snapdragon QSD8650 1GHz, dan memory internal 1GB juga RAM 512MB. Walaupun baterai HTC EVO 4G lebih besar dibandingkan HTC HD2, namun camera di bagian belakang sudah 8 megapiksel dengan flash, bisa untuk memutar video 720p, juga camera tambahan di bagian depan 1.3 megapiksel.

Berbeda dengan Google Nexus One yang hanya memiliki satu camera 5 megapiksel di bagian depan. Selain itu, bentuk ponsel HTC EVO 4G tampak lebih besar , 4.8 x 2.6 x 0.5 inch bila dibandingkan Google Nexus One dengan ukuran 4.69 x 2.35 x 0.45 inch. Selain itu, handset HTC EVO 4G juga 1.4 oz lebih berat dibanding Nexus One.

Ponsel HTC EVO 4G ini dilengkapi dengan port HDMI out untuk plugin ke TV, koneksi 802.11b/g WiFi, dan microSD card 8GB. Untuk system operasinya berupa Android 2.1, dan handset ini kemungkinan akan menjadi ponsel 4G yang akan dipasarkan melalui Sprint. HTC EVO 4G tersebut menjalankan combo EV-DO Rev.A dan WiMAX, dimana panggilan telepon bisa melalui jaringan CDMA dan data dengan EV-DO atau WiMAX. Salah satu fiturnya berupa aplikasi hotspot dari Sprint, WiMAX onboard dan support keyboard touchscreen. Koneksi data 4G, menurut Sprint, dapat memberikan kecepatan download 10 kali lebih cepat dibandingkan 3G.

Read More..
~~~~~~~bye-bye~~~~~~~~
Powered By Blogger