File-file errornya diletakkan di direktori /usr/share/squid/errors/English.
Berikut aku akan beri contoh meredirect akses website yang diblock ke alamat website tertentu. Caranya dengan mengedit file ERR_ACCESS_DENIED yang ada di folder /usr/share/squid/errors/English. Aku akan meredirect web yang diblock ke alamat google.com. Berikut langkahnya:
1. # cd /usr/share/squid/errors/English
2. # cp ERR_ACCESS_DENIED ERR_ACCESS_DENIED_DEFAULT
3. # mc -e ERR_ACCESS_DENIED
ubah semua isinya menjadi :
---------------------------------------------
<html>
<head>
<title>Google</title>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style></head>
<body>
<iframe scrolling="auto" frameborder="0" height="100%" marginheight="0" marginwidth="0" width="100%" src="http://www.google.com">
</iframe>
</body>
</html>
---------------------------------------------
4. Simpan file dengan tekan F2
5. Restart squid
# /usr/sbin/squid -k reconfigure
Coba akses website yang kita block, kalau berhasil nanti akan di redirect ke google.com
No comments:
Post a Comment