What's new

Closed QueenCee VPN V5 Lite ( All Networks )

Status
Not open for further replies.
This is the correct script - pansin ko nadoble - sorry

#!/bin/bash
#
# tc uses the following units when passed as a parameter.
# kbps: Kilobytes per second
# mbps: Megabytes per second
# kbit: Kilobits per second
# mbit: Megabits per second
# bps: Bytes per second
# Amounts of data can be specified in:
# kb or k: Kilobytes
# mb or m: Megabytes
# mbit: Megabits
# kbit: Kilobits
# To get the byte figure from bits, divide the number by 8 bit
#

#
# Name of the traffic control command.
TC=/sbin/tc

# The network interface we're planning on limiting bandwidth.
IF=eth0 # Interface

# Download limit (in mega bits)
DNLD=1000000mbit # DOWNLOAD Limit

# Upload limit (in mega bits)
UPLD=1000000mbit # UPLOAD Limit

# IP address of the machine we are controlling
IP=(YOUR IP) # Host IP

# Filter options for limiting the intended interface.
U32="$TC filter add dev $IF protocol ip parent 1:0 prio 1 u32"

start() {

# We'll use Hierarchical Token Bucket (HTB) to shape bandwidth.
# For detailed configuration options, please consult Linux man
# page.

$TC qdisc add dev $IF root handle 1: htb default 30
$TC class add dev $IF parent 1: classid 1:1 htb rate $DNLD
$TC class add dev $IF parent 1: classid 1:2 htb rate $UPLD
$U32 match ip dst $IP/32 flowid 1:1
$U32 match ip src $IP/32 flowid 1:2

# The first line creates the root qdisc, and the next two lines
# create two child qdisc that are to be used to shape download
# and upload bandwidth.
#
# The 4th and 5th line creates the filter to match the interface.
# The 'dst' IP address is used to limit download speed, and the
# 'src' IP address is used to limit upload speed.

}

stop() {

# Stop the bandwidth shaping.
$TC qdisc del dev $IF root

}

restart() {

# Self-explanatory.
stop
sleep 1
start

}

show() {

# Display status of traffic control status.
$TC -s qdisc ls dev $IF

}

case "$1" in

start)

echo -n "Starting bandwidth shaping: "
start
echo "done"
;;

stop)

echo -n "Stopping bandwidth shaping: "
stop
echo "done"
;;

restart)

echo -n "Restarting bandwidth shaping: "
restart
echo "done"
;;

show)

echo "Bandwidth shaping status for $IF:"
show
echo ""
;;

*)

pwd=$(pwd)
echo "Usage: tc.bash {start|stop|restart|show}"
;;

esac

exit 0

Yan po


hindi ko po magets.. sana po English or tagalog.. :p
nagamit ko naman po ang V5 for a while pero not now. V6 na lang po ang working saken. nevertheless, thanks pa rin mam queencee !!
 
Madam, as of Sep. 2, 2016 si na nagana ang V5 using TnT. Ano pong meron? Thanks po.
johnleo123
have you seen the latest updated list on page 1 sir?
if yes, you can also try to mix match the proxy servers with the real proxy servers.
proceed by connecting to the best performance or in my vpn as the philippines flag then jump to the other regions/servers for a fresh set.
 
johnleo123
have you seen the latest updated list on page 1 sir?
if yes, you can also try to mix match the proxy servers with the real proxy servers.
proceed by connecting to the best performance or in my vpn as the philippines flag then jump to the other regions/servers for a fresh set.
I already did mix matching but still its 0b madam, but jumping to other regions? Well I try madam. Thanks for the response madam. I was shocked when I saw that "h.facebook.com" server was gone, why is that madam? Its the server we can rely on.
 
I already did mix matching but still its 0b madam, but jumping to other regions? Well I try madam. Thanks for the response madam. I was shocked when I saw that "h.facebook.com" server was gone, why is that madam? Its the server we can rely on.
johnleo123 h. facebook still exist as a site but as for a proxy server, it will not respond to tnt/sun/smart anymore.Just that.
 
When was vpn v5 was updated madam?
johnleo123
There is nothing wrong with Queencee vpn v5 lite. It is just the proxy servers or the free sites that are not responding when under maintenance on any sim network. The list on page 1 is updated early morning. Meaning I have new proxy servers for you to use because the ones I deleted are non responsive like for example h. facebook.
 
johnleo123
There is nothing wrong with Queencee vpn v5 lite. It is just the proxy servers or the free sites that are not responding when under maintenance on any sim network. The list on page 1 is updated early morning. Meaning I have new proxy servers for you to use because the ones I deleted are non responsive like for example h. facebook.
Madam, my QueenCee V5 still not responsive using my TnT sim. What will I do? I tried mix matching, jumping to other regions and there's nothing happened. Help please.
 
Last edited:
Madam, my QueenCee V5 still not responsive using my TnT sim. What will I do? I tried mix matching, jumping to other regions and there's nothing happened. Help please.
johnleo123
You can do this :
1.Go to Settings and choose Apps.
2.Locate QueenCee VPN. Hit Clear Data.
3.Relaunch QueenCee VPN and input the correct Handler Settings for the sim in use.Hit Save
4.Turn Data Connection On
5.As soon as clicking save, a choice between Browser Only and Tunnel Whole Device will appear. Please click Tunnel Whole Device.

If the initial set of your handler settings did not connect,
Continue with the mix matching. Make sure your unit is set to allow you to use it on 3g.
You should be getting enough or good signal on your location too.
 
johnleo123
You can do this :
1.Go to Settings and choose Apps.
2.Locate QueenCee VPN. Hit Clear Data.
3.Relaunch QueenCee VPN and input the correct Handler Settings for the sim in use.Hit Save
4.Turn Data Connection On
5.As soon as clicking save, a choice between Browser Only and Tunnel Whole Device will appear. Please click Tunnel Whole Device.

If the initial set of your handler settings did not connect,
Continue with the mix matching. Make sure your unit is set to allow you to use it on 3g.
You should be getting enough or good signal on your location too.
Thanks Madam. I'll post a reply if ever I got connected.

Hindi pa rin ako makaconnecr madam
 
San po buh pwde madownload ang hspa+tweeker?

Pwde po buh maka hingi nga apk mo sir?.



Pano po bub gamitin itong termux sir..?. I need help po..
Termux and tweker sa google play ho

San po buh pwde madownload ang hspa+tweeker?

Pwde po buh maka hingi nga apk mo sir?.



Pano po bub gamitin itong termux sir..?. I need help po..
Termux and tweker sa google play ho
 

Attachments

Status
Not open for further replies.

Users search this thread by keywords

  1. Queencee vpn
Back
Top