Tớ không rõ ở VN cấm FB ở cấp độ như thế nào nhưng xét về mặt kỹ thuật, có vài cách để "vượt".
I. Dùng t0r: https://www.torproject.org/, đọc kỹ hướng dẫn của họ và thực hiện theo. T0r hơi chậm nhưng vẫn có thể vào FB.
II. Tạo cho mình một vps riêng chạy squid và sử dụng tuỳ thích. Tôi nghĩ đây là cách tốt nhất bởi vì giá thuê VPS hiện thời rất rẻ (từ $5 đến $10 / tháng, thậm chí có những nơi có $3/tháng nếu trả trước 12 tháng). Ví dụ, http://virpus.com/budget-vps/ là 1 nhà cung cấp VPS cho băng thông đến 1000Gb / tháng, xài không cách gì mà hết .
Giả sử bồ thuê 1 cái VPS chạy Debian, đây là quy trình tạo cho mình 1 proxy chỉ mất vài phút (và tất nhiên bồ phải quen thuộc với cách sử dụng một số command trên Linux):
1. apt-get update
2. apt-get install squid
3. mv /etc/squid/squid.conf /etc/squid/squid.conf.old
4. vi /etc/squid/squid.conf và tạo ra 1 config như sau:
Code:
visible_hostname <ip_của_vps>
http_port <ip_của_vps>:<port_mình_muốn_dùng_cho_squid> transparent
dns_nameservers 8.8.8.8 4.4.4.4
acl QUERY urlpath_regex cgi-bin \?
no_cache deny QUERY
cache_mem 32 MB
cache_swap_low 90
cache_swap_high 95
maximum_object_size 4096 KB
minimum_object_size 5 KB
maximum_object_size_in_memory 16 KB
cache_replacement_policy lru
memory_replacement_policy lru
cache_dir ufs /var/spool/squid 100 16 256
cache_access_log /var/log/squid/access.log
cache_log /var/log/squid/cache.log
cache_store_log /var/log/squid/store.log
pid_filename /var/run/squid.pid
auth_param basic program /usr/lib/squid/ncsa_auth /etc/squid/<file_chứa_squid_user_password>
auth_param basic children 5
auth_param basic realm "Please enter your credentials"
auth_param basic credentialsttl 2 hours
auth_param basic casesensitive off
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern . 0 20% 4320
acl all src all
acl manager proto cache_object
acl localhost src 127.0.0.1/32
acl myself src <ip_của_vps>/32
acl SSL_ports port 443 563
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 563 # https, snews
acl Safe_ports port 70 # gopher
acl Safe_ports port 210 # wais
acl Safe_ports port 1025-65535 # unregistered ports
acl Safe_ports port 280 # http-mgmt
acl Safe_ports port 488 # gss-http
acl Safe_ports port 591 # filemaker
acl Safe_ports port 777 # multiling http
acl Safe_ports port 5050
acl CONNECT method CONNECT
acl ncsa_users proxy_auth REQUIRED
http_access allow manager localhost
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localhost
http_access allow myself
http_access allow ncsa_users
http_access deny all
cache_effective_group nogroup
trong đó,
<ip_của_vps> là IP chính mà nhà cung cấp dịch vụ cung cấp cho mình.
<port_mình_muốn_dùng_cho_squid> là cổng dịch vụ mình gán cho squid. Nên chọn 1 cổng nào đó bình thường và không bị các tường lửa cản lọc (như cổng 80 hay cổng 443).
<file_chứa_squid_user_password> là hồ sơ chứa tên và mật khẩu cho phép sử dụng dịch vụ proxy squid. Nếu không có thì cơ hội proxy của mình bị sử dụng rộng rãi và mình sẽ bị nhà cung cấp VPS treo account .
5. Tạo <file_chứa_squid_user_password> bằng cách:
a. cd /etc/squid
b. htpasswd -cbs <file_chứa_squid_user_password> <user_name> <pass_word>
6. Khởi động dịch vụ squid proxy:
/etc/init.d/squid start
III. Thuê một dịch vụ VPN rẻ tiền (thông thường họ cung cấp pptp hoặc openVPN). Xem cái này để chọn: http://vpnreviewz.com/best-vpn-service-providers/
IV. Sử dụng VPN miễn phí. Cái này thì bị giới hạn thời gian, giới hạn băng thông và chẳng có gì bảo đảm bảo mật. Xem cái này để chọn: http://techpp.com/2009/07/09/top-5-free-vpn-clients/