Skip to main content

Posts

Showing posts from January, 2020

Menyembunyikan IP Mikrotik dari traceroute

<script data-ad-client="ca-pub-5603580849539291" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>  Pada saat melakukan traceroute, maka akan muncul hop lomptan antar perangkat-perangkat hingga sampai tujuan dari traceroute. Misalkan: tracert 8.8.8.8 C:\Users\My Love>tracert 8.8.8.8 Tracing route to dns.google [8.8.8.8] over a maximum of 30 hops:   1     3 ms     3 ms     2 ms  ikos.net [172.16.12.1]   2     *        *        *     Request timed out.   3     6 ms     *        *     10.10.12.1   4    15 ms    24 ms    26 ms  10.114.192.1   5    17 ms    13 ms    17 ms  104.subnet125-160-9.speedy.telkom.net.id [125.160.9.104]   6    15 ms    17 ms    13 ms  125.160.0.177   7    18 ms    18 ms    16 ms  61.94.115.205   8    25 ms    27 ms    26 ms  194.190.240.180.in-addr.arpa [180.240.190.194]   9    25 ms    27 ms    28 ms  193.190.240.180.in-addr.arpa [180.240.190.193]  10     *        *        *   

Web interface pi-hole tidak bisa diakses

Cara mengatasi web interface pihole tidak bisa di akses Jalankan Perintah root@aml:~# /etc lighttpd/lighttpd.conf Ada 2 kemungkinan hasilnya, jika tidak ada masalah maka yang muncul adalah: 1.Jika tidak bermasalah root@aml:~# /lighttpd -D -f /etc/lighttpd/lighttpd.conf 2019-07-18 20:17:06: (network.c.309) can't bind to socket: 0.0.0.0:80 Address already in use 2.Jika Bermasalah root@aml:~# /lighttpd -D -f /etc/lighttpd/lighttpd.conf 2019-07-18 20:12:18: (server.c.750) opening errorlog '/var/log/lighttpd/error.log' failed: Permission denied 2019-07-18 20:12:18: (server.c.1461) Opening errorlog failed. Going down. Cara Mengatasi nya : 1.root@aml:~# /etc/init.d/lighttpd stop [ ok ] Stopping lighttpd (via systemctl): lighttpd.service. 2.root@aml:~# mkdir /var/log/lighttpd 3.root@aml:~# chmod -R 644 /var/log/lighttpd 4.root@aml:~# chmod 750 /var/log/lighttpd 5.root@aml:~# chown -R www-data:www-data /var/log/lighttpd Kemudian Restart lighttpd: root@aml:~# /et