The figure below calls out
- The netfilter hooks
- The order of table traversal
| #!/usr/bin/env python | |
| # Reflects the requests from HTTP methods GET, POST, PUT, and DELETE | |
| # Written by Nathan Hamiel (2010) | |
| from http.server import HTTPServer, BaseHTTPRequestHandler | |
| from optparse import OptionParser | |
| class RequestHandler(BaseHTTPRequestHandler): | |
| def do_GET(self): |
| # Save this in ~/.screenrc | |
| # Use bash | |
| shell /bin/bash | |
| autodetach on | |
| # Big scrollback | |
| defscrollback 5000 |