You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello all!
I had used this script on many VPSs, thanks Angristan!
Then after trying a new server, I ran into huge issues with the handshake not working. I broke down and tried to install manually, without the script, and still ran into issues. I even ran the Kernel debugger!
Turns out, the VPS provider's firewall was blocking UDP as a form of DDoS mitigation. After a support ticket, my issue was rectified.
I have been having DNS issues with this script and ONLY this server. I needed to add dns-nameserver into /etc/network/interfaces
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello all!
I had used this script on many VPSs, thanks Angristan!
Then after trying a new server, I ran into huge issues with the handshake not working. I broke down and tried to install manually, without the script, and still ran into issues. I even ran the Kernel debugger!
Turns out, the VPS provider's firewall was blocking UDP as a form of DDoS mitigation. After a support ticket, my issue was rectified.
I have been having DNS issues with this script and ONLY this server. I needed to add dns-nameserver into /etc/network/interfaces
eg,
nano /etc/network/interfaces
The primary network interface
auto eth0
iface eth0 inet static
address
netmask 255.255.255.128
dns-nameserver 1.1.1.1
dns-nameserver 1.0.0.1
gateway
Let me know if this helps anyone.
Beta Was this translation helpful? Give feedback.
All reactions