Skip to content

Instantly share code, notes, and snippets.

@vpereira01
Created May 23, 2022 18:15
Show Gist options
  • Save vpereira01/71caee5d418a4106a6e5bccd6dfd9de5 to your computer and use it in GitHub Desktop.
Save vpereira01/71caee5d418a4106a6e5bccd6dfd9de5 to your computer and use it in GitHub Desktop.
user@host:~# sysctl -n net.ipv6.auto_flowlabels
1
user@host:~# curl -6 https://code.jquery.com/jquery-3.6.0.min.js -o /dev/null
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (56) OpenSSL SSL_read: Connection reset by peer, errno 104
user@host:~# sysctl -w net.ipv6.auto_flowlabels=0
net.ipv6.auto_flowlabels = 0
user@host:~# curl -6 https://code.jquery.com/jquery-3.6.0.min.js -o /dev/null
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 89501 100 89501 0 0 816k 0 --:--:-- --:--:-- --:--:-- 816k
user@host:~# sysctl -w net.ipv6.auto_flowlabels=1
net.ipv6.auto_flowlabels = 1
user@host:~# curl -6 https://code.jquery.com/jquery-3.6.0.min.js -o /dev/null
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (56) OpenSSL SSL_read: Connection reset by peer, errno 104
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment