Answer the question
In order to leave comments, you need to log in
How to bypass VPN blocking by ISP?
There is a simple server on OpenVZ on which OpenVPN worked successfully for a very long time. Recently blocked his work switched to TCP: 443 everything worked for a couple of weeks and again stopped connecting. Tried UDP 53, also without success. The most interesting thing is that everything starts working if you connect to VPN through a regular http proxy, but at the same time pings jump up to 3000.
In addition, l2tp / ipsec / PPTP work is blocked
. in the country there is a main provider monopolist where the whole thing is cut off.
What can be done about it? Maybe there are already ready-made guides for setting up, masking such traffic?
Answer the question
In order to leave comments, you need to log in
All menu items must be the same width
Set the parent to the desired width + display: flex; align-items: center; justify-content: center; , set the menu items to 100 percent width. On the first drop-down, make the first item an absolute and just give it a fixed width and padding, and that's all.
https://codepen.io/dcfanoid/pen/pMQZxp
<ul class="menu">
<li class="menu__item"><a href="/">Item 1</a></li>
<li class="menu__item"><a href="/">Item 2</a></li>
<li class="menu__item"><a href="/">Item 3</a></li>
<li class="menu__item"><a href="/">Item 4</a></li>
<li class="menu__item"><a href="/">Item 5</a></li>
</ul>
.menu {
display: flex;
flex-direction: row;
align-items: center;
list-style: none;
padding: 0;
margin: 0;
width: 100%;
height: 50px;
background-color: rgb(194, 194, 194);
text-align: center;
}
.menu__item {
flex: 1;
margin: 0
}
.menu__item a {
line-height: 50px;
display: block;
transition: background-color .2s ease
}
.menu__item a:hover {
background-color: rgba(0, 0, 0, .1)
}
Try using SSH tunnel. Anything that can use Socks5 to connect will work.
Guide on how to set up an ssh tunnel from under Windows using PuTTY https://putty.org.ru/articles/putty-ssh-tunnels.html
On linux, it's even easier:
We configure the software on a Socks5 proxy with the address localhost (127.0 .0.1) and port 12345.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question