11
sklafg
6y

What is the stupidest solution that actually worked?

Comments
  • 2
    Everything we ever did
  • 2
    when you have connectivity problems:

    #!/bin/bash

    iptables -P INPUT ACCEPT

    iptables -P FORWARD ACCEPT

    iptables -P OUTPUT ACCEPT

    iptables -t nat -F

    iptables -t mangle -F

    iptables -F

    iptables -X
  • 1
    Thats a good one
  • 1
    Well for debugging--

    error_log(print_r($number,true));
  • 3
    Obviously that's gotta be a feature. And hacks to work around proprietary Android kernels and stuff like that..
    Ah and to deflect a bug in my dotfiles, I just ended up disabling the whole feature :P
Add Comment