Advertisement
teknoraver

ssh dscp

Oct 25th, 2024 (edited)
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. $ timeout 5 ssh git@github.com git-upload-pack
  2. Terminated
  3.  
  4. $ timeout 5 ssh -o IPQoS=af21 git@github.com git-upload-pack
  5. 0054ERR
  6. is not a valid repository name
  7. Visit https://support.github.com/ for help
  8.  
  9. $ timeout 5 ssh -o IPQoS=cs1 git@github.com git-upload-pack
  10. 0054ERR
  11. is not a valid repository name
  12. Visit https://support.github.com/ for help
  13.  
  14. $ timeout 5 ssh -vvv git@github.com git-upload-pack 2>&1 |grep IP_TOS
  15. debug3: set_sock_tos: set socket 3 IP_TOS 0x48
  16. debug3: set_sock_tos: set socket 3 IP_TOS 0x20
  17. Terminated
  18.  
  19. $ timeout 5 ssh -vvv -o IPQoS=af21 git@github.com git-upload-pack id 2>&1 |grep IP_TOS
  20. debug3: set_sock_tos: set socket 3 IP_TOS 0x48
  21. debug3: set_sock_tos: set socket 3 IP_TOS 0x48
  22.  
  23. $ timeout 5 ssh -vvv -o IPQoS=cs1 git@github.com git-upload-pack id 2>&1 |grep IP_TOS
  24. debug3: set_sock_tos: set socket 3 IP_TOS 0x20
  25. debug3: set_sock_tos: set socket 3 IP_TOS 0x20
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement