Bahkan lebih simpel dan andal!
Sintaks Umum:
sudo {http,https,ftp}_proxy=http://<username>:<password>@<proxy_url/_proxyip>:<port>/ wget --timeout=5 --no-check-certificate http://<website_url>
Contoh:
[root@localhost ~]# sudo {http,https,ftp}_proxy=http://username:password-123@proxy.example.com:6050/ wget --timeout=5 --no-check-certificate http://google.com
{http, https, ftp} _proxy -> http, https, url ftp. Dipisahkan oleh koma.
--timeout = 5 -> Koneksi agar tetap hidup dalam hitungan detik.
-tidak-periksa-sertifikat -> Abaikan SSL / Verifikasi Sertifikat.
--spider -> Jika Anda ingin menguji konektivitas tanpa mengunduh file.
Catatan:
Konverter Online:
Ganti karakter khusus dengan unicode heksadesimal yang setara. Untuk daftar unicode, rujuk situs web https://unicode-table.com (atau) http://unicodelookup.com
Konverter Lokal menggunakan Python:
Referensi: konversi kata sandi "p @ s # w: E" ke unicode adalah sebagai berikut,
@ = %40
$ = %24
# = %23
: = %3A
p@s#w:E = p%40s%23w%3AE
Memasukkan:
[root@localhost ~]# python -c "import sys, urllib as enc; print enc.quote_plus(sys.argv[1])" "p@s#w:E"
Keluaran:
p%40s%23w%3AE