ok now your VPN worked?
are u from Iran and trying to catch new youtube shits?
are u trying watch porn ?
or might u be blocked by google if u are just
use shecan.ir and u will be fine
# Get your ip public
curl ipinfo.io/ip
# More specific
curl ipinfo.io/{param}
# Param-List:
# ip
# hostname
# city
# region
# loc
# org
# country
# timezone
# Print my public IP
dig +short myip.opendns.com @resolver1.opendns.com
# Output
77.122.128.246
# Store IP in Bash Variable
myip="$(dig +short myip.opendns.com @resolver1.opendns.com)"
Never Share your "IP address" to anyone,
it can be used to access your Device and data.
to see ip using command(Windows)
//See your internal ip on any windows
Search -> Write:cmd-> command <ipconfig>
foc Mac OS
1- command <ipconfig getifaddr en1> For wired connections, enter into the Terminal and your local IP will appear.
2- command <ipconfig getifaddr en0> For Wi-Fi, enter and your local IP will appear.
ip route get 8.8.8.8 | awk -F"src " 'NR==1{split($2,a," ");print a[1]}'
ip route get 8.8.8.8 | awk 'match($0,/src (S*)/,a)&&$0=a[1]'
ip route get 8.8.8.8 | awk '{for(i=1;i<=NF;i++)if($i~/src/)$0=$(i+1)}NR==1'
ip route get 8.8.8.8 | sed -E 's/.*src (S+) .*/1/;t;d'
ip route get 8.8.8.8 | sed 's/.*src ([^ ]*).*/1/;t;d'
ip route get 8.8.8.8 | sed -nE '1{s/.*?src (S+) .*/1/;p}'
ip route get 8.8.8.8 | grep -oP 'src K[^ ]+'
10.36.15.150
ip route get 8.8.8.8 | awk -F"dev " 'NR==1{split($2,a," ");print a[1]}'
ip route get 8.8.8.8 | awk 'match($0,/dev (S*)/,a)&&$0=a[1]'
ip route get 8.8.8.8 | awk '{for(i=1;i<=NF;i++)if($i~/dev/)$0=$(i+1)}NR==1'
ip route get 8.8.8.8 | sed -E 's/.*?dev (S+) .*/1/;t;d'
ip route get 8.8.8.8 | sed 's/.*dev ([^ ]*).*/1/;t;d'
ip route get 8.8.8.8 | sed -nE '1{s/.*?dev (S+) .*/1/;p}'
ip route get 8.8.8.8 | grep -oP 'dev K[^ ]+'
ens192