Archive for the ‘ Uncategorized ’ Category

For those struggling with the ability to change the country code of a remote antenna. The following works for me on NanoStation M5s, Rocket M5s, and PowerBridge M5s.

1. Ensure that I can log into the web gui, and go to the wireless tab.
2. Open my putty program (download at putty.org)
3. SSH into the IP of the antenna and log in using the same credintials as the web gui.
4. Type the following: vi /tmp/system.cfg and hit enter.
5. Hit the i key so you will be able to edit the file.
6. Edit the following XXX using the Country Code from the provided link below.
6a. radio.countrycode=XXX
6b radio.1.countrycode=XXX
7. Hit the following ESC key, : key, wq keys, then enter
7a. This saves the file.
8. Go back to your web gui, and hit the wireless tab or refresh the page.
9. You can now change it to whatever country you like.

Note: If it is a US model, then you will still only get the US/Canada/Puerto Rico options.

Country Code List: https://wikiinfotechno.wordpress.com/2015/08/06/list-of-country-code-ubiquiti/

https://community.ubnt.com/t5/Wireless-Networking/How-do-I-change-these-radios-back-to-my-country-code/td-p/1264758

Import SIMDA csv di SIRUP v2.0

Secara singkat, langkah-langkah mengimport file csv DPA yang dihasilkan dari simda seperti pada postingan sebelum ini : http://kloxo.web.id/?p=155 adalah sebagai berikut :

 

1. pilih tahun anggaran

01-pilih-ta

2. pilih mode upload – SIKD

02-sikd

3. pastikan TA sesuai, browse nama file csv, lalu klik SIMPAN

03-pilih-file-simpan

4. tunggu proses upload sampai selesai 100%

04-proses-import

5. refresh browser anda dan silakan cek hasil import file csv nya

05-hasil-import

 

demikian cara proses file csv pada sirup v2, selamat mencoba!

Menginstall ulang Windows Server Multipoint 2012 di server Relion, ehh..ternyata banyak device yang tidak dikenali, menjalankan driverpacks, tidak membantu, mencari manual pakai hardware id juga gak nongol, ini solusi nya.

Sebagai Administrator jalankan CMD lalu berikan perintah berikut :

wmic baseboard get product,Manufacturer,version,serialnumber

dan tadaaaaa!…. merk dan seri motherboard pun nongol… langsung meluncur ke website pembuat motherboard untuk mengunduh driver2 yang diperlukan.

(http://www.howtogeek.com/208420/how-to-check-your-motherboard-model-number-on-your-windows-pc/)

Langkah berikut adalah persiapan file csv untuk keperluan import program kegiatan dari SIMDA :

1-tool-export-data2-export-data-komandan3-sukses4-hasil-export5-hasil-csv

semoga membantu.

Menjalankan Virtual Desktop didalam WMS 2012 yang dijalankan sebagai host pada proxmox akan menyatakan Hyper-V ‘disable’ dan proses tidak dapat dilanjutkan, aktifkan hyper-v dengan menjalankan perintah berikut pada WMS 2012 :

Dism /online /enable-feature /featurename:Microsoft-Hyper-V
Dism /online /enable-feature /featurename:Microsoft-Hyper-V-Management-Clients

This installs the Hyer-V roles without the CPU check. I do not believe that it removes the VT requirements, but in my case, the Core i7 has VT and Hyper-V is working. It is also worth noting that I have removed the args: -cpu host flag from the /etc/qemu-server/<VMID>.conf file and it still works.

 

(https://forum.proxmox.com/threads/hyper-v-in-windows-guest-under-proxmox.7644/)

Import a .SQL script using OSQL

untuk hasil export script .sql MS SQL Server yang berukuran besar dan tidak dapat diproses import oleh sql management studio, dapat menggunakan osql untuk mengimport nya :

osql -U YourUserName -P YourPassword -S ServerName -d DatabaseName -n-1 -i DriveLetter:SQLFileNameAndPath.sql -o DriveLetter:LogFile.txt

Switches
-U: login ID for the specified server
-P: password for the login ID
-S: server name
-d: database upon which the script will be executed
-n: removes numbering and the prompt symbol (>) from the output file
-i: the .SQL file name (including drive letter)
-o: an output file that details how the script executed (if at all)

(http://metrix.fcny.org/wiki/display/dev/How+to+execute+a+.SQL+script+using+OSQL)

Untuk rekan pengguna os CENTOS 6 untuk aplikasi SPSE baik versi 36 maupun 4, ada beberapa vulnerabilty (kerentanan) pada os tersebut, diantara nya di bash dan glibc nya.

seperti dilansir oleh situs berita http://inet.detik.com/read/2014/09/27/095649/2702923/323/bug-shellshock-bisa-ancam-perbankan

Langkah pengujian untuk vulnerability bash bisa dilakukan sebagai berikut :

[root@ip-local-private ~]# env x='() { :;}; echo vulnerable’ bash -c “echo this is a test”

=====================================
Apabila outputnya seperti dibawah ini :

vulnerable
this is a test

Maka server anda rentan dan harus diupdate paket bashnya.

=====================================
Apabila outputnya seperti dibawah ini :

this is a test

ataupun seperti dibawah ini :

bash: warning: x: ignoring function definition attempt
bash: error importing function definition for `x’

this is a test

Maka server anda tidak harus di update paket bashnya.

Perbaikan / patch atas bugs tersebut caranya cukup mudah, lakukan 2 langkah berikut :

yum clean all
yum update

kemudian lakukan pengujian ulang atas bugs diatas.

jadi yang rajin meng-update os nya ya kawan!

(http://arifzulfikarp.blogspot.co.id/2014/10/update-bash-package-di-centosrhel-64.html)

1. yum install lxlighttpd

2. /etc/init.d/kloxo restart

test

qmail remote dan queue delete

/etc/init.d/qmail stop

find /var/qmail/queue/remote -type f -exec rm {} \;