Posted by admin on 28th December 2009

As per April 2009, Indonesia Ministry of Industry - a Government Agency [Departemen Perindustrian, DEPPERIN] has been allocated by APJII a /48 IPv6 Block.
This achievement shows that Ministry of Industry has a big concern on IPv4 Exhaustion & The Readiness of IPv6 2011.
This IPv6 block is being deployed Internally by IT Division of Ministry Industry
2001:df0:48::/48 [id] Indonesia IPv6-DEPPERIN-ID-IDN

Go IPv6 Indonesia !
– rahman isnaini, thanks Pak Janu for the Correction
Posted in IPv6 | 2 Comments »
Posted by admin on 17th December 2009
Hi,
The detail steps can be found at Mikusa on How to Dedicated IceCast Server.
I’m using IceCast 2 for Server & Oddcast from streamer.
Here are my configs looks like :
Icecast Configuration file :
<icecast>
<limits>
<sources>5</sources>
<threadpool>5</threadpool>
<queue-size>524288</queue-size>
<client-timeout>30</client-timeout>
<header-timeout>15</header-timeout>
<source-timeout>10</source-timeout>
<burst-on-connect>1</burst-on-connect>
<burst-size>65535</burst-size>
</limits>
<authentication>
<source-password>qwe123+</source-password>
<relay-password>qwe123+</relay-password>
<admin-user>admin</admin-user>
<admin-password>qwe123+</admin-password>
</authentication>
<hostname>192.168.0.222</hostname>
<listen-socket>
<port>8000</port>
</listen-socket>
<mount>
<mount-name>/mount.ogg</mount-name>
<max-listeners>3</max-listeners>
<hidden>1</hidden>
<no-yp>1</no-yp>
<authentication type=”htpasswd”>
<option name=”filename” value=”passwords”/>
<option name=”allow_duplicate_users” value=”1″/>
</authentication>
</mount>
<fileserve>1</fileserve>
<paths>
<basedir>./</basedir>
<logdir>./logs</logdir>
<webroot>./web</webroot>
<adminroot>./admin</adminroot>
<alias source=”/” dest=”/status.xsl”/>
</paths>
<logging>
<accesslog>access.log</accesslog>
<errorlog>error.log</errorlog>
<loglevel>3</loglevel> <!– 4 Debug, 3 Info, 2 Warn, 1 Error –>
</logging>
<security>
<chroot>0</chroot>
</security>
</icecast>





a. rahman isnaini r.sutan
Posted in Radio Internet, software | No Comments »
Posted by admin on 14th December 2009
Activate / Deactivate Command is more like disabling / enabling configuration in JunOS.
The purpose is just to keep the setting / configuration by disabling / deactivating it.
Once you need to activate just one step to do
Drawback is keeping more config file size.
For small config changes is fine to have.
Here the steps example deactivating a term in a policy option - policy statement named “IMPORT-PCCW”
Steps :
===================================================
admin@junOS# deactivate term prefered-outgoing
[edit policy-options policy-statement IMPORT-PCCW]
admin@junOS# show
inactive: term prefered-outgoing {
from as-path PACNET;
then {
local-preference 6200;
accept;
}
}
term else {
from as-path ALL ;
then reject;
}
[edit policy-options policy-statement IMPORT-PCCW]
admin@junOS# commit
commit complete
[edit policy-options policy-statement IMPORT-PCCW]
====================================================
The Effect :
a. Before :
admin@junOS# run show bgp summary
Groups: 11 Peers: 13 Down peers: 4
Table Tot Paths Act Paths Suppressed History Damp State Pending
inet.0 926409 313202 0 0 0 3
Peer AS InPkt OutPkt OutQ Flaps Last Up/Dwn State|#Active/Received/Damped…
xxx.yyy.ddd.aaa ABCD 349732 19848 0 0 6d 21:04:56 40/300121/0 0/0/0
b. After :
admin@junOS# run show bgp summary
Groups: 11 Peers: 13 Down peers: 4
Table Tot Paths Act Paths Suppressed History Damp State Pending
inet.0 926409 313202 0 0 0 3
Peer AS InPkt OutPkt OutQ Flaps Last Up/Dwn State|#Active/Received/Damped…
xxx.yyy.ddd.aaa ABCD 349732 19848 0 0 6d 21:04:56 0/300123/0 0/0/0
– Daily Juniper Simple Notes
– a. rahman isnaini r.sutan
Posted in BGP, Juniper, Script | No Comments »
Posted by admin on 14th December 2009
Traveling to some areas that having no internet connection for an IT People is like salt less food 
Never hoping dedicated line or any wiring connection once you have arrived.
Anyway, Internet Mobile through GSM [Either 3G/GPRS] is a good choice to have there.
Virgin Broadband is one of them.
An Easy Setup Process gives you a quick installation lead time.
Here the steps [Please Insert your SIMCard]:
1. Check Your Connection Status

2. Enable Lan & Wireless Bridge



3. Configure DHCP Servers

4. Configure You GSM Connection [cellular]

That’s All, you have to do.
Anyway, I didn’t find any of WPA / WPE Wireless Security Features for Wireless Network Authentication.
But for sure, Virgin Broadband it self can only covers in 10-20 meter radius.
rgs
a. rahman isnaini r.sutan
Posted in GPRS, HSDPA, security, wireless | 2 Comments »
Posted by admin on 10th December 2009
Posted in Game, puzzle | No Comments »
Posted by admin on 9th December 2009
Blocking http://komiknabimuhammad.blogspot.com is again our topic.
If you don’t have Cisco Router with NBAR [Regular Expression] capability to do this task, then use your DNS Server does it. Since DNS used by most of your users compared to Proxy only for some of total user you might have.
Here what you have to do :
1. Create Zone in named.conf
My example : komiknabimuhammad.blogspot.com
zone “komiknabimuhammad.blogspot.com” {
type master;
file “blocked/blocked.site”;
};
2. Create file for your zone. [what ever you named it].
$TTL 86400
@ IN SOA ns1.indo.net.id. hostmaster.indo.net.id. (
2009120801
3600
3600
360000
86400 )
IN NS ns1.indo.net.id.
IN NS ns2.indo.net.id.
IN A 202.159.32.14
3. This raw : “IN A 202.159.32.14″
Means any of request to resolve the URL “komiknabimuhammad.blogspot.com” will be redirected
to Default Web Page on Server 202.159.32.14
Nope sure if this can work with CNAME.
Anyway, this only affect any of user who use your DNS Server to Resolve.
Out of that, they still able to resolve to that subdomain.
Note : Above task only affected to subdomain URL of Blogspot “komiknabimuhammad.blogspot.com” ONLY
Not the Entire of Blogspot Pages which might be yet useful for us.
Thanks to Geri Anggara
a. rahman isnaini r.sutan
*) Hey don’t forget to restart your DNS service…
Posted in DNS, Web | 3 Comments »