Seven Stars Group

Konsultan IT, Travelling, Shop Online, Event Organizer, Etc.

Seven Stars Group

Konsultan IT, Travelling, Shop Online, Event Organizer, Etc.

Seven Stars Group

Konsultan IT, Travelling, Shop Online, Event Organizer, Etc.

Seven Stars Group

Konsultan IT, Travelling, Shop Online, Event Organizer, Etc.

Seven Stars Group

Konsultan IT, Travelling, Shop Online, Event Organizer, Etc.

Sabtu, 25 Desember 2010

Setting Network di Linux Debian

# 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 eth1
iface eth1 inet static
        address 192.168.0.254
        netmask 255.255.255.0
        network 192.168.0.0
        broadcast 192.168.0.255
        # dns-* options are implemented by the resolvconf package, if installed

iface eth0 inet static
        address 192.168.1.254
        netmask 255.255.255.0
        gateway 192.168.1.1
        network 192.168.1.0
        broadcast 192.168.1.255


auto eth0
auto eth1

Setting Firewall dan Redirect Proxy Server di Linux Debian

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

SYSCTL="/sbin/sysctl -w"
IPT="/sbin/iptables"

# Internet Interface
INET_IFACE="eth0"

# Local Interface Information
LOCAL_IFACE="eth1"
LOCAL_IP="192.168.0.254"
LOCAL_NET="192.168.0.0/24"
LOCAL_BCAST="192.168.0.255"

# Localhost Interface
LO_IFACE="lo"
LO_IP="127.0.0.1"

# Load Modules
/sbin/modprobe ip_tables
/sbin/modprobe ip_conntrack
/sbin/modprobe ip_nat_ftp
/sbin/modprobe ip_conntrack_ftp
/sbin/modprobe ip_conntrack_irc


# Kernel Parameter Configuration
    echo "1" > /proc/sys/net/ipv4/ip_forward
    echo "1" > /proc/sys/net/ipv4/tcp_syncookies
    echo "1" > /proc/sys/net/ipv4/conf/all/rp_filter
    echo "1" > /proc/sys/net/ipv4/icmp_echo_ignore_broadcasts
    echo "0" > /proc/sys/net/ipv4/conf/all/accept_source_route
    echo "1" > /proc/sys/net/ipv4/icmp_echo_ignore_broadcasts
    echo "0" > /proc/sys/net/ipv4/conf/all/accept_source_route
    echo "1" > /proc/sys/net/ipv4/conf/all/secure_redirects
    echo "1" > /proc/sys/net/ipv4/conf/all/log_martians

# Reset Default Policies
$IPT -P INPUT ACCEPT
$IPT -P FORWARD ACCEPT
$IPT -P OUTPUT ACCEPT
$IPT -t nat -P PREROUTING ACCEPT
$IPT -t nat -P POSTROUTING ACCEPT
$IPT -t nat -P OUTPUT ACCEPT
$IPT -t mangle -P PREROUTING ACCEPT
$IPT -t mangle -P OUTPUT ACCEPT

# Flush All Rules
$IPT -F
$IPT -t nat -F
$IPT -t mangle -F

# Erase All Non-Default Chains
$IPT -X
$IPT -t nat -X
$IPT -t mangle -X


# User-Specified Chains
$IPT -N bad_packets
$IPT -N bad_tcp_packets
$IPT -N icmp_packets
$IPT -N udp_inbound
$IPT -N udp_outbound
$IPT -N tcp_inbound
$IPT -N tcp_outbound



# Nat Table
$IPT -t nat -A PREROUTING -p tcp --destination-port 80 -j REDIRECT --to-ports 8080
$IPT -t nat -A POSTROUTING -o $INET_IFACE -j MASQUERADE


exit 0

Setting Squid Alias Proxy Server di Linux Debian

# Setting dasar Proxy
http_port 8080 transparent
hierarchy_stoplist cgi-bin ? .js .jsp
acl QUERY urlpath_regex cgi-bin \? .js .jsp
cache deny QUERY

acl apache rep_header Server ^Apache
broken_vary_encoding allow apache

cache_mem 128 MB
cache_swap_low 90
cache_swap_high 95

maximum_object_size 100 MB
minimum_object_size 0 KB
maximum_object_size_in_memory 32 KB

ipcache_size 2048
ipcache_low 98
ipcache_high 99

cache_replacement_policy heap LFUDA
memory_replacement_policy heap GDSF

# Cache directories
cache_dir ufs /proxy/spool/squid 10000 38 256

access_log /var/log/squid/access.log
cache_log none /var/log/squid/cache.log
cache_store_log /var/log/squid/store.log
emulate_httpd_log off
log_ip_on_direct on
client_netmask 255.255.255.255

# OPTIONS FOR TUNING THE CACHE
# wais_relay_port 0

request_header_max_size 20 KB
request_body_max_size 0 KB

refresh_pattern \.gif 4320 50% 43200
refresh_pattern \.jpg 4320 50% 43200
refresh_pattern \.gif 4320 50% 43200
refresh_pattern \.jpg 4320 50% 43200
refresh_pattern \.tif 4320 50% 43200
refresh_pattern ^http://www.friendster.com/.* 720 100% 4320
refresh_pattern ^http://mail.yahoo.com/.* 720 100% 4320
refresh_pattern ^http://mail1.plasa.com/.* 720 100% 4320
refresh_pattern ^http://*.yahoo.*/.* 720 100% 4320
refresh_pattern ^http://*.friendster.*/.* 720 100% 4320
refresh_pattern ^http://www.yahoo.com/.* 720 100% 4320
refresh_pattern ^ftp: 10080 95% 241920 reload-into-ims override-lastmod
refresh_pattern . 180 95% 120960 reload-into-ims override-lastmod

reload_into_ims on
pipeline_prefetch on
vary_ignore_expire on

quick_abort_min 0
quick_abort_max 0
quick_abort_pct 98

shutdown_lifetime 10 seconds

# ACCESS CONTROLS
acl all src 0.0.0.0/0.0.0.0
acl manager proto cache_object
acl localhost src 127.0.0.1
acl to_localhost dst 127.0.0.0/8

# Variabel localnet
acl localnet src 192.168.0.0/24
acl porn url_regex -i "/etc/squid/porn.txt"

#ACL Waktu Kerja time SMTWHF 08:00-16:00
acl SSL_ports port 443
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 # https
acl Safe_ports port 70 # gopher
acl Safe_ports port 210 # wais
acl Safe_ports port 1025-65535 # unregistered ports
acl Safe_ports port 280 # http-mgmt
acl Safe_ports port 488 # gss-http
acl Safe_ports port 591 # filemaker
acl Safe_ports port 488 # gss-http
acl Safe_ports port 591 # filemaker
acl Safe_ports port 777 # multiling http
acl CONNECT method CONNECT

# Allowing or Denying access based on defined access lists
http_access allow manager localhost
http_access deny porn
http_access allow manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow to_localhost

# Mengizinkan variabel localnet di atas
http_access allow localnet
http_access allow localhost
http_access allow all
http_reply_access allow all
icp_access allow all

# DELAY POOL
acl download url_regex -i ftp \.exe$ \.mp3$ \.mp4$ \.tar.gz$ \.gz$ \.tar.bz2$ $
acl download url_regex -i \.avi$ \.mpg$ \.mpeg$ \.rm$ \.iso$ \.wav$ \.mov$ \.d$
acl download url_regex -i \.midi$ \.rmi$ \.wma$ \.wmv$ \.ogg$ \.ogm$ \.m1v$ \.$
acl download url_regex -i \.m3u$ \.asx$ \.wpl$ \.wmx$ \.dvr-ms$ \.snd$ \.au$ \$
acl download url_regex -i \.m2p$ \.ts$ \.tp$ \.trp$ \.div$ \.divx$ \.mod$ \.vo$
acl download url_regex -i \.ac3$ \.cda$ \.vro$ \.deb$

# DELAY POOL CLASS
delay_pools 1
delay_class 1 1
delay_parameters 1 50000/50000
delay_access 1 allow download
delay_access 1 deny all

# ADMINISTRATIVE PARAMETERS
cache_mgr localhost
visible_hostname www.master-john.co.cc

Jumat, 24 Desember 2010

Korean Love Movie



Film Korea selalu membuat Kita sedih.
Tentang "Kepergian sang kekasih"

Selasa, 21 Desember 2010

Tabel Remunerasi POLRI


Tabel Remunerasi Polri

Berdasarkan Perpres no 73 tahun 2010 tentang Tunjangan Kinerja Bagi Pegawai di Lingkungan Polri tertanggal 15 Desember 2010, berikut tabel remunerasi Polri:
No Grade Besaran Keterangan
1 Grade 18 Rp 21.305.000 Wakapolri
2 Grade 17 Rp 16.212.000 Kaba, Kalemdik, Kapolda Metro
3 Grade 16 Rp 11.790.000 Jabatan-Jabatan Pati Bintang 1 Dan 2
4 Grade 15 Rp 8.575.000
5 Grade 14 Rp 6.236.000
6 Grade 13 Rp 4.797.000
7 Grade 12 Rp 3.690.000
8 Grade 11 Rp 2.839.000 Jabatan-Jabatan KBP
9 Grade 10 Rp 2.271.000
10 Grade 9 Rp 1.817.000
11 Grade 8 Rp 1.453.000 Jabatan-Jabatan AKBP
12 Grade 7 Rp 1.211.000 Jabatan-Jabatan Kompol
13 Grade 6 Rp 1.010.000 Jabatan AKP/Ipda/Iptu, Fungsional Umum Utama
14 Grade 5 Rp   841.000 Kelompok Non Manajerial + Fungsional Umum
15 Grade 4 Rp   731.000
16 Grade 3 Rp   636.000
17 Grade 2 Rp   553.000
18 Grade 1 Rp- -

Minggu, 19 Desember 2010

TuneUp Utilities 2011 Full Version

tuneup utilities 2011TuneUp Utilities 2011 - TuneUp Utilities merupakan sebuah software yang digunakan untuk mengoptimalkan kinerja Komputer kita. TuneUp Utilities dapat membuat computer atau PC kita lebih cepat, lebih stabil dan lebih aman. Tuneup utilities sekarang telah merilis versi terbarunya yaitu TuneUp Utilities 2011, tuneup utilities 2011 merupakan penyempurnaan dan penambahan fitur dari yang versi sebelumnya yaitu tuneup utilities 2010.

Salah satu keunggulan dari tuneup yang paling saya sukai adalah TuneUp 1-Click Maintenance. Dengan fitur TuneUp 1-Click Maintenance sekali klik maka dia akan bekerja dengan sedirinya mencari suatu program yang bermasalah dalam computer kita, tentunya tidak hanya mencari problem saja tapi juga maintenance juga akan meresolve dari masalah-masalah tersebut.

TuneUp Utilities 2011


Download Link :

Download tuneup utilities 2011
Download serial number tuneup utilities 2011
Klik download link diatas untuk mendownload tuneup utilities 2011 full version dan jangan lupa di download juga serial numbernya agar tuneup utilities 2011 menjadi full version.

Sabtu, 18 Desember 2010

IDwebhost.com Trend Hosting Indonesia

IDwebhost Menjawab Kebutuhan Web Hosting Terbaik





Perkembangan dunia IT yang begitu cepat, memberikan andil yang tidak kecil terhadap segala sudut kehidupan. Era internet pun datang merambah seluruh ruang aktivitas kita. Laju perkembangan IT berimbas pada semakin meningkatnya kebutuhan akan penerapan IT dalam dunia bisnis. Persaingan bisnis yang semakin keras, menuntut pelaku-pelaku-nya untuk bisa berinovasi menerapkan tool-tool pendukung untuk selalu bisa bertahan atau minimal tidak tertinggal jauh. Salah satu tool pendukung itu adalah pemberdayaan teknologi informasi dengan Web Hosting. Pemberdayaan Teknologi Informasi dengan menggunakan Web Hosting sangat mendukung kelancaran bisnis Anda.

IDwebhost adalah merupakan perusahaan yang berfokus pada jasa pelayanan hosting di Indonesia. Titik berat perhatian kami berada pada sisi layanan kepada pelanggan, dengan harga yang murah, seperti moto kami 'Best Service at Affordable Cost'.

Kami tidak main-main dalam mengutamakan pelayanan, kami menyediakan 12 orang khusus untuk melayani customer kami. Jika di perusahaan lain support hanya membantu dalam hal administrasi dan sedikit tentang teknikal, maka kami membantu hingga scripting pemrograman, hingga ke hal-hal detail dengan mencarikan solusi atas permasalahan Anda secara tuntas. Dengan komitmen dan konsentrasi pada pelayanan webhosting Indonesia, kini kami berhasil menjadi salah satu perusahaan webhosting terpercaya dengan tingkat pertumbuhan tertinggi di Indonesia.

IDwebhost merupaka Web Hosting Tangguh karna menggunakan Server yang sangat besar dan berkualitas. Sehingga Anda akan puas dengan Pelayanan kami.

Jangan pernah ragu untuk memilih Hostingan.
Daftarlah segera ke Web Hosting Indonesia
Kami menunggu Anda dengan Pelayanan terbaik kami.

Karna Kami memberikan yang terbaik untuk Anda:

1.HARGA


.com
.net
.org
.info

www.andalan.net
90.000
90.000
90.000
150.000

www.ardhosting.com
99.000
99.000
99.000
99.000

www.baliorange.net
90.000
90.000
90.000
150.000

www.biz.net.id
300.000
300.000
300.000
300.000

www.bwhosting.com
100.000
100.000
100.000
125.000

www.cabi.net.id
400.000
400.000
400.000
400.000

www.centrin.net.id
280.000
280.000
280.000
280.000

www.gadjahmada.com
100.000
100.000
100.000
125.000

www.IDwebhost.com
85.000
85.000
85.000
95.000

www.indonesia-hosting.com
150.000
150.000
150.000
150.000

www.indosatm2.com
280.000
280.000
280.000
280.000

www.indosite.com
88.000
88.000
88.000
132.000

www.jagoweb.net
110.000
110.000
110.000
110.000

www.judistira.com
120.000
120.000
120.000
120.000

www.karyaweb.com
110.000
110.000
110.000
110.000

www.masterdomain.com
90.000
90.000
90.000
110.000

www.masterwebnet.com
110.000
110.000
110.000
110.000

www.mediahostnet.com
120.000
120.000
120.000
120.000

www.murih.com
90.000
90.000
90.000
100.000

www.neocyber.net
165.000
165.000
165.000
165.000

www.nusaspace.com
100.000
100.000
100.000
100.000

www.webhostindo.com
150.000
150.000
150.000
150.000








2. FITURE HOSTING


Biaya/bln
Biaya Setup
Space
Mysql
Subdomain



www.andalan.net
25.000
50.000
50 Mb
40
unlimited



www.ardhosting.com
25.000
50.000
50 Mb
30
unlimited



www.baliorange.net
27.500
20.000
50 Mb
ya
unlimited



www.bisnisweb.com
37.500
50.000
40 Mb
tidak ada
5



www.biz.net.id
83.333
250.000
50 Mb
tidak ada
-



www.bwhosting.com
50.000
50.000
50 Mb
2
unlimited



www.cabi.net.id
400.000
0
50 Mb
-
-



www.cbn.net.id
400.000
100.000
50 Mb
ya
-



www.centrin.net.id
129.000
399.000
20 MB
-
-



www.cyberawit.com
29.500
99.000
60 Mb
3
unlimited



www.cyberspace.co.id
24.000
50.000
50 Mb
10
unlimited



www.gadjahmada.com
25.000
0
50 Mb
unlimited
-



www.hostingkita.com
25.000
0
50 Mb
ya
unlimited



www.IDwebhost.com
20.000,-
0
50 Mb
unlimited
unlimited



www.indo.net.id
550.000
80.000
50 Mb
-
-



www.indonesia-hosting.com
125.000
0
50 Mb
ya
-



www.indosatm2.com
600.000
100.000
50 Mb
-
-



www.indosite.com
20.000
0
25 Mb
tidak ada
-



www.jagoweb.net
24.500
24.500
50 Mb
ya
unlimited



www.jakartahosting.com
20.000
0
40 Mb
100
100



www.judistira.com
40.000
0
50 Mb
ya
ya



www.karyaweb.com
25.000
50.000
50 Mb
20
unlimited



www.khansahost.com
20.000
50.000
50 Mb
40
Unlimited



www.masterdomain.com

35 Mb
0
0



www.masterwebnet.com
29.500
25.000
50 Mb
40
subdomain unlimited



www.mediahostnet.com
35.000
120.000
40Mb
1
1



www.murih.com
33.000
0
25 Mb
25
unlimited



www.neocyber.net
25.000
50.000
25 Mb
1
unlimited



www.nusaspace.com
36.666
50.000
40 Mb
1
1



www.plasa.com
90.000
380.000
50 Mb
-
-



www.webhostindo.com
25.000
0
25 Mb
1
1













3. SERVER WEB HOSTING

Server # CODE
Server Code Name : CODE
Server IP : 174.120.70.136
Lokasi Server : The Planet Internet Services, USA
Start Date : 26 October 2010
OS/CPanel : Linux CPanel + Softaculous + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel(R) Xeon(R) CPU E5520 @ 2.4GHz
Status : Active


Server # DEPOK
Server Code Name : DEPOK
Server IP : 222.165.255.198
Lokasi Server : Menara Rajawali, Mega Kuningan, Jakarta
Start Date : 30 September 2010
OS/CPanel : Linux Fedora CPanel + Softaculous + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel(R) Xeon(R) CPU E5520 @ 2.27GHz
Status : Active


Server # GAMPING
Server Code Name : GAMPING
Server IP : 174.120.70.134
Lokasi Server : The Planet Internet Services, USA
Start Date : To be announced
OS/CPanel : Linux CPanel + Softaculous + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel(R) Xeon(R) CPU E5520 @ 2.4GHz
Status : Setup


Server # SEMANU
Server Code Name : SEMANU
Server IP : 174.120.70.132
Lokasi Server : The Planet Internet Services, USA
Start Date : 30 August 2010
OS/CPanel : Linux CPanel + Softaculous + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel(R) Xeon(R) CPU E5520 @ 2.4GHz
Status : Setup


Server # JOKTENG
Server Code Name : JOKTENG
Server IP : 174.120.70.133
Lokasi Server : The Planet Internet Services, USA
Start Date : 24 August 2010
OS/CPanel : Linux CPanel + Softaculous + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel(R) Xeon(R) CPU E5520 @ 2.4GHz
Status : Active


Server # BUMIJO
Server Code Name : BUMIJO
Server IP : 111.68.24.202
Lokasi Server : Hotel Inna Garuda, Yogyakarta
Start Date : 26 Mei 2010
OS/CPanel : Linux Fedora CPanel + Softaculous + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel(R) Xeon(R) CPU E5420 @ 2.50GHz
Status : Setup


Server # PARIS
Server Code Name : PARIS
Server IP : 222.165.255.243
Lokasi Server : Menara Rajawali, Mega Kuningan, Jakarta
Start Date : 8 April 2010
OS/CPanel : Linux Fedora CPanel + Fantastico + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel(R) Xeon(R) CPU E5520 @ 2.27GHz
Status : Active


Server # BARON
Server Code Name : BARON
Server IP : 222.165.255.242
Lokasi Server : Menara Rajawali, Mega Kuningan, Jakarta
Start Date : 28 Maret 2010
OS/CPanel : Linux Fedora CPanel + Fantastico + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel(R) Xeon(R) CPU E5520 @ 2.27GHz
Status : Setup


Server # JETIS
Server Code Name : JETIS
Server IP : 174.123.117.162
Lokasi Server : The Planet Internet Services, USA
Start Date : 20 February 2010
OS/CPanel : Linux CPanel + Fantastico + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel(R) Xeon(R) CPU E5520 @ 2.27GHz
Status : Active


Server # SAPEN
Server Code Name : SAPEN
Server IP : 116.199.203.194
Lokasi Server : Gedung Cyber, Jakarta
Start Date : 01 February 2010
OS/CPanel : Linux CPanel + Fantastico + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel(R) Xeon(R) CPU E5430 @ 2.66GHz
Status : Active


Server # PIYUNGAN
Server Code Name : PIYUNGAN
Server IP : 121.52.132.126
Lokasi Server : Gedung Cyber, Jakarta
Start Date : 13 November 2009
OS/CPanel : Linux CPanel + Fantastico + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel(R) Xeon(R) CPU E5430 @ 2.66GHz
Status : Inactive


Server # BERBAH
Server Code Name : BERBAH
Server IP : 116.199.203.221
Lokasi Server : Gedung Cyber, Jakarta
Start Date : 22 October 2009
OS/CPanel : Linux CPanel + Fantastico + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel(R) Xeon(R) CPU E5430 @ 2.66GHz
Status : Active


Server # TUGU
Server Code Name : TUGU
Server IP : 116.199.203.215
Lokasi Server : Gedung Cyber, Jakarta
Start Date : 17 August 2009
OS/CPanel : Linux CPanel + Fantastico + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel(R) Xeon(R) CPU E5430 @ 2.66GHz
Status : Active


Server # SETURAN
Server Code Name : SETURAN
Server IP : 74.53.95.50
Lokasi Server : The Planet Internet Services, USA
Start Date : 20 October 2008
OS/CPanel : Linux Fedora CPanel + Fantastico + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel(R) Xeon(R) CPU 5130 @ 2.00GHz
Status : Active


Server # MRICAN
Server Code Name : MRICAN
Server IP : 222.165.255.240
Lokasi Server : Menara Rajawali, Mega Kuningan, Jakarta
Start Date : 05 June 2009
OS/CPanel : Linux Fedora CPanel + Fantastico + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel(R) Xeon(R) CPU E5420 @ 2.50GHz
Status : Active


Server # JAKAL
Server Code Name : JAKAL
Server IP : 222.165.255.246
Lokasi Server : Menara Rajawali, Mega Kuningan, Jakarta
Start Date : 11 February 2009
OS/CPanel : Linux Fedora CPanel + Fantastico + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel(R) Xeon(R) CPU E5420 @ 2.50GHz
Status : Inactive


Server # MONJALI
Server Code Name : MONJALI
Server IP : 116.199.203.158
Lokasi Server : Gedung Cyber, Jakarta
Start Date : 23 March 2009
OS/CPanel : Linux CPanel + Fantastico + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel(R) Xeon(R) CPU E5430 @ 2.66GHz
Status : Active


Server # KALASAN
Server Code Name : KALASAN
Server IP : 116.199.203.199
Lokasi Server : Gedung Cyber, Jakarta
Start Date : 16 February 2009
OS/CPanel : Linux CPanel + Fantastico + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel(R) Xeon(R) CPU E5430 @ 2.66GHz
Status : Active


Server # TIMOHO
Server Code Name : TIMOHO
Server IP : 66.79.167.178
Lokasi Server : Market Post Tower, 55 South Market, San Jose, California, USA
Start Date : 01/08/2008
OS/CPanel : Linux Fedora CPanel + IDwebhost Control Panel Integration
Spesifikasi Hardware : INTEL Core2Duo E6400 (2x2.13GHz), 2048MB DDR RAM, 160GB SATA (Western Digital), 2000GB Monthly BW, 100Mbps Port Standard
Status : Inactive


Server # KUNCEN
Server Code Name : KUNCEN
Server IP : 222.165.255.245
Lokasi Server : Menara Rajawali, Mega Kuningan, Jakarta
Start Date : 16 March 2008
OS/CPanel : Linux Fedora CPanel + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel Xeon 2,8 Ghz
Status : Active


Server # KAUMAN
Server Code Name : KAUMAN
Server IP : 222.165.255.241
Lokasi Server : Menara Rajawali, Mega Kuningan, Jakarta
Start Date : 25 January 2008
OS/CPanel : Linux Fedora CPanel + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel Xeon 2,8 Ghz
Status : Active


Server # MINO
Server Code Name : MINO
Server IP : 75.125.198.34
Lokasi Server : The Planet Internet Services
Start Date : 19 December 2007
OS/CPanel : Red Hat Enterprise Linux ES release 4 CPanel + Fantastico + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel(R) Xeon(TM) CPU 3.20GHz CPU Speed 3.2 GHzB Cache Size 2048 KB Network Backup (daily, weekly, monthly) Remote backup (weekly)
Status : Inactive


Server # NAGAN
Server Code Name : NAGAN
Server IP : 222.165.255.244
Lokasi Server : Menara Rajawali, Mega Kuningan, Jakarta
Start Date : 16 March 2007
OS/CPanel : Linux Fedora CPanel + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel Xeon 2,8 Ghz
Status : Active


Server # JANTI
Server Code Name : JANTI
Server IP : 74.52.137.130
Lokasi Server : EV1Servers 835 Greens Parkway Houston, Texas, 77067 United States
Start Date : 2 March 2007
OS/CPanel : Red Hat Enterprise Linux ES release 4 CPanel + Fantastico + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel(R) Xeon(TM) CPU 3.20GHz CPU Speed 3.2 GHzB Cache Size 2048 KB Network Backup (daily, weekly, monthly) Remote backup (weekly)
Status : Active


Server # MALIOBORO
Server Code Name : MALIOBORO
Server IP : 67.15.74.95
Lokasi Server : EV1Servers 835 Greens Parkway Houston, Texas, 77067 United States
Start Date : 16 October 2006
OS/CPanel : Red Hat Enterprise Linux ES release 4 CPanel + Fantastico + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel(R) Xeon(TM) CPU 3.20GHz CPU Speed 3.2 GHzB Cache Size 2048 KB Network Backup (daily, weekly, monthly) Remote backup (weekly)
Status : Inactive


Server # SAGAN
Server Code Name : SAGAN
Server IP : 70.87.69.2
Lokasi Server : The Planet Internet Services
Start Date : 23 May 2006
OS/CPanel : RedHat Enterprise Linux OS 4.0
Spesifikasi Hardware : Intel Pentium 4 3.2 GHz
Status : Inactive


Server # GEJAYAN
Server Code Name : GEJAYAN
Server IP : 203.153.97.46
Lokasi Server : Menara Rajawali, Mega Kuningan, Jakarta
Start Date : 16 March 2006
OS/CPanel : Linux Fedora CPanel + Fantastico + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel Xeon 2,8 Ghz
Status : Inactive


Server # UNICORN
Server Code Name : UNICORN
Server IP : 67.19.87.98
Lokasi Server : The Planet Internet Services
Start Date : 08 March 2006
OS/CPanel : RedHat Enterprise Linux OS 4.0
Spesifikasi Hardware : Dual Xeon SATA
Status : Active


Server # PEGASUS
Server Code Name : PEGASUS
Server IP : 67.15.227.118
Lokasi Server : EV1Servers 835 Greens Parkway Houston, Texas, 77067 United States
Start Date : 28 February 2006
OS/CPanel : Red Hat Enterprise Linux ES release 4 CPanel + Fantastico + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel(R) Xeon(TM) CPU 3.20GHz CPU Speed 3.2 GHzB Cache Size 2048 KB Network Backup (daily, weekly, monthly) Remote backup (weekly )
Status : Active


Server # SPHINX
Server Code Name : SPHINX
Server IP : 70.87.90.74
Lokasi Server : The Planet Internet Services
Start Date : 19 January 2006
OS/CPanel : - Microsoft SQL Server 2000 for Workgroups 1.0
- Microsoft Windows 2003 - OS Standard Edition
- SWsoft Plesk - Windows - Unlimited Domain 7.5
Spesifikasi Hardware : 1 Dell \ 1600SC Dual Xeon MB \ DAT54AMB8C2
2 Intel \ 2.4 GHz 533FSB \ P4 Xeon
1 Generic \ 1024 MB \ DDR 266 ECC Reg
2 Seagate \ 80GB:IDE:7200RPM Barracuda \ ST380011a
Status : Inactive


Server # FIREFOX
Server Code Name : FIREFOX
Server IP : 67.15.225.4
Lokasi Server : EV1Servers
Start Date : 21 November 2005
OS/CPanel : Red Hat Enterprise Linux ES release 3 CPanel + Fantastico + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel(R) Xeon(TM) CPU 3.20GHz
Status : Active


Server # GARUDA
Server Code Name : GARUDA
Server IP : 67.19.151.18
Lokasi Server : The Planet Internet Services
Start Date : 7 Mey 2005
OS/CPanel : RedHat Enterprise 3.0
Spesifikasi Hardware : Quodrupal Xeon 2.8Ghz
Status : Inactive


Server # PHOENIX
Server Code Name : PHOENIX
Server IP : 70.84.54.58
Lokasi Server : The Planet Internet Services
Start Date : 25 January 2005
OS/CPanel : RedHat Enterprise 3.0
Spesifikasi Hardware : Intel Pentium 4 3.2 Ghz
Status : Inactive


Server # DRAGON
Server Code Name : DRAGON
Server IP : 67.18.2.26
Lokasi Server : The Planet Internet Services
Start Date : 20 January 2005
OS/CPanel : RedHat Enterprise 3.0 CPanel + Fantastico + IDwebhost Control Panel Integration
Spesifikasi Hardware : Dual Xeon 2.8Ghz
Status : Inactive


Server # GRIFFIN
Server Code Name : GRIFFIN
Server IP : 202.67.9.242
Lokasi Server : Gedung Cyber
Start Date : 08 Desember 2004
OS/CPanel : Linux Fedora CPanel + Fantastico + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel Xeon 2,8 Ghz
Status : Inactive


Server # CENTAUR
Server Code Name : CENTAUR
Server IP : 64.247.16.143
Lokasi Server : 1719 Route 10 East
Start Date : 01 Januari 2004
OS/CPanel : Linux Fedora CPanel + Fantastico + IDwebhost Control Panel Integration
Spesifikasi Hardware : Intel Pentium 4 2,8 Ghz Dual Processor
Status : Inactive


Pilihlah Kami Karna Kami Best Of The Best!!!