Thursday, April 25, 2013

mendapatkan koneksi data komputer lan

 Berikut kami sajikan step by step untuk hal koneksi data sebagai berikut:
ada pertanyaan dalam cara seting masuk ke dalam system komputer lainnya.
net use \\172.16.10.25\c$ password /USER:administrator

Seting Konfigurasi Port Forwarding untuk Remote Komputer Dengan Modem Aztech DSL605E

Para it-holic sekalian!! Punya komputer di lain kota tp pengen diakses dikota lain??? bagaimanakah caranya?
masuk ke modem di kota A, misal IP = http://192.168.1.1/cgi-bin/webcm

1. akses http://192.168.1.1/cgi-bin/webcm
2. Pilih Aplication --> Port Forwading
3. Tentukan LAN Group, LAN IP, Applied rulesnya....

Akses diclient dengan IP WANnya...

demikian langkah singkat yang bisa diaplikasikan....

Seting IP Address by netsh

Kadangkala kita membutuhkan seting alamat IP address satu kali klik...Bagaimanakah caranya, yook kita ikuti langkah dibawah :

1. Open notepad
2. Kopi paste :

netsh interface ip set address name="Wireless Network Connection" source=static addr=172.16.130.100 mask=255.255.252.0netsh interface ip set address name="Wireless Network Connection" gateway=172.16.128.7 gwmetric=1netsh interface ip set dns name="Wireless Network Connection" source=static addr=202.134.0.155 register=PRIMARYnetsh interface ip set wins name="Wireless Network Connection" source=static addr=none

3. Save as --> Save as type [all files]--> ipseting.bat

Jangan lupa y friends untuk kasi akhiran .bat

Setting Email Gmail in MS Outlook 2007 2010

Friends! email from gmail.com have to configure with POP3 in Outlook Email and you don't every login if you access gmail account in yours computer. This step by step to configure access email with pop3 - outlook setting :

1. login account in gmail --> Setting --> Porwarding and POP/IMAP --> enable pop for all mail --> Save Changes

2. Open MS Outlook 2007 --> Add New MAil Account --> Manually Configure Settings or additional server Types [checklist]-->next -->add in account email and password,

your name : xxx
email address : xxx@gmail.com
account type : pop3
incoming mail server : pop.gmail.com
Outgoing mail server : ......list in internet service provider (ISP), examp : smtp.telkom.net
user name : xxx
password : ***********

--> more setting -->advanced --> this server requires an encrypted connection (SSL) [centang] ...995 not 110 --> ok

Congratulation!!! your finish setting gmail account in MS outlook 2007

password untuk document office2007 (ex. word, excel)

Membuat password untuk document office2007 (ex. word, excel)
Selalu jika it-holic menginginkan document (ex. word, excel) ter-password, yuk kita ikuti langkah dibawah :) :) Buka excel anda2. save as3. Tools --> General Option --> Password to open4. Save
Demikian langkah yang bisa di ikuti untuk protect data Anda....

cara setting tambah lan card clearos

Menambahkan nic di linux clear os

===================== Add hardware baru

I'm sure there are easier ways to do this, but this is how i went about it.

Logged onto a console, Alt+F2, and did the following;

To see if the third NIC had been detected, i did;
Code:

# kudzu -p | grep network

network.hwaddr: xx:xx:xx:xx:xx:xx
network.hwaddr:yy:yy:yy:yy:yy:yy
network.hwaddr:zz:zz:zz:zz:zz:zz

so the third network.hwaddr above is for the new card.

To find the mac address of eth0 and eth1, i did,
Code:

#cd /etc/sysconfig/network-scripts/
# less ifcfg-eth0
# less ifcfg-eth1


Better still you could do; (be sure to use caps on HWaddr)
Code:

# ifconfig | grep HWaddr


then; copy ifcfg-eth1 to ifcfg-eth2
Code:

# cp ifcfg-eth1 ifcfg-eth2

then using your favourite text editor, vi, nano.....
Code:

#nano ifcfg-eth2

change the lines,

DEVICE='eth1' to 'eth2'
IPADDR="192.168.X.X" to the desired ip of DMZ "10.0.x.x"
NETMASK="255.255.255.0" to desired mask
HWADDR="xx.xx.xx.xx.xx.xx" to the mac address of the new card.

save and exit.

then;
Code:

# ifup eth2



=============================== tambah dns
vi  /etc/hosts


vi  /etc/resolv.conf


============================== DHCP
vi /etc/dnsmasq/dhcp.conf

cara Seting Routing linux router

route add -net 172.16.33.0 netmask 255.255.255.0 gw 172.16.10.1
route add -net 172.16.14.0 netmask 255.255.255.0 gw 172.16.10.1
route add -net 172.16.13.0 netmask 255.255.255.0 gw 172.16.10.1

Seting routing diwindows


route add 172.16.33.0 mask 255.255.255.0 172.16.10.1 -p
route add 172.16.33.0 mask 255.255.255.0 172.16.10.1 -p
route add 172.16.14.0 mask 255.255.255.0 172.16.10.1 -p
route add 172.16.13.0 mask 255.255.255.0 172.16.10.1 -p

cara setting auto shutdown linux

/etc/crontab

akan muncul seperti ini setelah di open:

SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
HOME=/

# run-parts
01 * * * * root run-parts /etc/cron.hourly
02 4 * * * root run-parts /etc/cron.daily
22 4 * * 0 root run-parts /etc/cron.weekly
42 4 1 * * root run-parts /etc/cron.monthly

05 20 * * * root /sbin/shutdown -h now

11 59 * * * root /sbin/shutdown -h now


Kemudian save dokumen
masuk terminal
ketik:

chkconfig crond on => untuk membuat crondtab setiap kali komputer dinyalakan service nya selalu aktif
service crond restart => merestart service crondtab sehabis di edit tadi