Beberapa hari yang lalu, saya ma Irawan disibukkan ama instalasi mesin yang disiapin buat Lawful Interception. Kerjaan saat ini sangat simple, cuma ‘membangunkan’ mesin SUN Netra 240 yang lama nonaktif buat dipake buat penyadap di salah satu operator telekomunikasi atas permintaan KPK.
Instalasi mesin UNIX ini simple, jadi inget dulu install-buang OS Gentoo Linux
. Instalasi kali ini kami hanya membuat si mesin up doang. Selanjutnya akan diinstall software proprietary dari Samsung. Dimulai dari setting IP, kalau ini masih sama dengan Linux.
root@CAMA # ifconfig -a
lo0: flags=1000849 mtu 8232 index 1
inet 127.0.0.1 netmask ff000000
bge0: flags=1000843 mtu 1500 index 2
inet 0.0.0.0 netmask ffffff00 broadcast 10.255.255.255
ether 0:14:4f:57:20:55dari sini kita bisa tahu kalau IP bge0 masih belum ada. Selanjutnya kita ubah juga hostname, karena kalau tidak, begitu restart maka IP akan ke reset kosong lagi.
root@CAMA # ifconfig bge0 inet 10.62.1.58 netmask 255.255.255.0 up
root@CAMA # cd /etc && cat hostname.bge0
CAMA --> akan kita ubah
root@CAMA # echo "EIP1" > hostname.bge0
root@CAMA # cat hostname.bge0
EIP1
root@CAMA # vi /etc/hosts
#
# Internet host table
#
127.0.0.1 localhost
10.62.1.58 EIP1 loghostSetelah itu kita ganti gateway dan (di Gento Linux bisa diatur semua networking option di /etc/make.conf )
root@CAMA # cat /etc/defaultrouter
165.213.239.193
root@CAMA # vi /etc/defaultrouter
10.62.1.254
root@CAMA # cat /etc/netmasks
#
# The netmasks file associates Internet Protocol (IP) address
# masks with IP network numbers.
#
# network-number netmask
#
# The term network-number refers to a number obtained from the Internet Network
# Information Center. Currently this number is restricted to being a class
# A, B, or C network number. In the future we should be able to support
# arbitrary network numbers per the Classless Internet Domain Routing
# guidelines.
#
# Both the network-number and the netmasks are specified in
# "decimal dot" notation, e.g:
#
# 128.32.0.0 255.255.255.0
#
165.213.0.0 255.255.255.192
Untuk service yang akan dijalankan, direktori configuration files, dll mungkin agak berbeda dengan Linux. Anda bisa membacanya di tabel translasi Linux-UNIX command.





Recent Comments