Saturday, 16 March 2013

Kalimat perintah setting jaringan di server debian

A.Instal dulu debian nya,kemudian masuk root

B.ketik perintah:
  1. nano /etc/network/interface        (enter)
  2. auto eth0
  3. iface eth0 inet static
    4.  (tekan tab) address 192.168.1.10
                            netmask 255.255.255.0
                            gateway 192.168.1.1
       
     5.auto etch1
     6.iface eth1 inet static
    7.  (tekan tab)  address 192.168.10.1
                            netmask 255.255.255.0
            (close,save)
     8./etc/init.d/networking restart
     9.ifconfig
     10.nano /etc/sysctl.conf          (enter)

        (hilangkan tanda #)

     11.#net.ipv4.ip_forward=1 (sebelum)
          net.ipv4.ip_forward=1 
               (close,save)
 
  SETTING FIREWAL(IP Tabel)
1.iptables -t nat -A POSTROUTING -s 192.168.10.0/24 -j MASQUERADE
            (untuk copy)
2.echo iptables -t nat -A POSTROUTING -s 192.168.10.0/24 -j MASQUERADE >>/etc/rc.local
3.apt-get install squid
   (masukan cd pilih enter)

                (masuk squid)
1.nano /etc/squid/squid.conf
2.tekan "^W"
   cari:http_port 3128 transparent
3.tekan "^W"
   cari .....:cache_mem 8
 
(setelah ketemu ,kemudian ganti)
4.#cahe_mem 8_MB(sebelum)
   cahe_mem 16_MB
 
5. tekan "^W"
    cari.......:cache_mgr webmaster
         (ubah kata yang sebelumnya tadi)
    cache_mgr nama_peserta@sekolah.sch.id
 
6.tekan "^W"
   cari.....:visible_hostname
    (ubah kata yang sebelumnya tadi)
     visible_hostname www.sekolah.sch.id
 
7. tekan"^W"
    cari.....:http_acces deny all
    (tambah kata )
      #http_acces deny all
       http_acces deny situs
       http_acces deny domain
       http_acces allow lan
       http_acces allow all

8.tekan"^W"
  cari.....:acl to_localhost
       (tambah kata )
  acl to_localhost dst 127.0.0.0/8
  acl situs url_regex "/home/situs.txt"
  acl domain dstdomain  "/home/situs.txt"
  acl lan src 192.168.10.0/24
             (kemudian simpan)
 
9.nano /home/situs.txt
                    ( ISI TEXT YANG INGIN DIBLOR)
www.google.com
          (simpan)
 
 
10.nano /home/domain.txt
                   ( ISI TEXT YANG INGIN DIBLOR) 
 www.google.com
          (simpan)
 
 
11. /etc/init.d/squid restart






bersambung...................
 


                 


0 comments:

Post a Comment