Posts Tagged ‘linux’

Mikrotik RouterOS 3.22 Level 6 Full Version

ga pake lama langsung aja donwload dah

DOWNLOAD HERE

kalo ga bisa juga ntar saya bakal buat artikel tentang membuatmikrotik  full license :D

zeroshell sebagai alternatif radius server

Fitur & Fungsi Zeroshell:

1.Load Balancing and Failover of multiple Internet connections;
2.UMTS/HSDPA connections by using 3G modems;
3.RADIUS server for providing secure authentication and automatic management of the encryption keys to the Wireless 802.11b, 802.11g and 802.11a networks supporting the 802.1x protocol in the EAP-TLS, EAP-TTLS and PEAP form or the less secure authentication of the client MAC Address; WPA with TKIP and WPA2 with CCMP (802.11i complaint) are supported too; the RADIUS server may also, depending on the username, group or MAC Address of the supplicant, allow the access on a preset 802.1Q VLAN;

Zeroshell gak perlu diinstall, bisa langsung dijalankan dalam beberapa mode :

1. Boot CD
2. Boot CD via VMWare
3. Boot pake Flashdish
4. Langsung Install di HD

Read the rest of this entry »

instalasi ispcp pada debian

alternatif pengganti cPanel sebagai control panel untuk domain anda :D
Jalanin command berikut :

#apt-get install aptitude

apt-get sama dengan aptitude

BAB 1 : Installation

1. Update your packages list:

# aptitude update

2. Install needed repository key:

# aptitude install debian-backports-keyring

3. Install the new Apache fcgid module version:

# aptitude -t etch-backports install libapache2-mod-fcgid

Read the rest of this entry »

tailwatchd failed fix

:ngakaks pagi- pagi buta blog ga bisa di buka :bingung
ya udah gw cek aja di server nya :malus
ternyata :matabelo: dapet pesan error begonoan :(

ga pake bingung dan bimbang, langsung buka mbah google :D

First check the tailwatchd logs for the failure reason:

# tail /usr/local/cpanel/logs/tailwatchd_log

Restart cPanel Service:

#service cpanel restart

or

#/etc/init.d/cpanel restart

If this not resolve your issue, run UPCP forcefully.

#/scripts/upcp --force

Enjoy

menutup port pada linux

:nohope: akhir nya bisa update lagi blog gw :D
lagi ga punya judul nih update nya, asal aja oke…:ngakak

sebenar nya banyak cara untuk menutup port yang tidak di inginkan yang ada di dalam sebuah server. yang pasti sebelum nya kita scanning dahulu server nya port-port mana aja yang terbuka.
sebelum nya install terlebih dahulu porgram nmap di server / pc

#yum install nmap

setelah itu baru jalankan command sbb :

#nmap localhost

misal nya mau nutup port ssh

#fuser -k 22/tcp

atau bisa juga dengan cara lain yaitu dengan mematikan service nya


/sbin/service stop
atau
/etc/init.d/ stop


dan jangan lupa untuk merestart /etc/init.d/xinetd.d restart

Sedangkan yang kedua dengan cara menggunakan iptables

iptables -A INPUT -p tcp –dport 110 -j DROP
iptables -A OUTPUT -p tcp –dport 110 -j DROP


#smtp 25/tcp
#smtps 465/tcp
#pop3 110/tcp
#pop3s 995/tcp
#imap 143/tcp
#imaps 993/tcp