start new:
tmux
start new with session name:
tmux new -s myname
| #Use this to include other text into the file. | |
| include: "/usr/local/etc/unbound/conf.d/*.conf" | |
| forward-zone: | |
| name: "." | |
| forward-addr: 8.8.8.8 | |
| # The server clause sets the main parameters. | |
| server: | |
| # number of threads to create. 1 disables threading. | |
| num-threads: 1 |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import sys, socket, select, SocketServer, struct, logging | |
| from time import sleep | |
| logging.basicConfig(level=logging.INFO) | |
| BUFLEN = 1024 | |
| SLEEPTIME = 0.4 |