Need to disable on Recovery mode, CMD + R
csrutil status
csrutil disable
https://haproxy.debian.net/#?distribution=Debian&release=sid&version=1.9
You need to enable the experimental repository:
tee /etc/apt/sources.list.d/experimental.list
*filter
:INPUT DROP [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
:f2b-sshd - [0:0]
:f2b-SSH - [0:0]
:RATE-LIMIT - [0:0]
-A INPUT -i lo -j ACCEPT
// License belongs to @serapath | |
// https://gistcdn.githack.com/ookangzheng/98af01a88a0ab8937d24e12f0c5d307e/raw/afb42195ba4f1542d2dffe634179458a79de9c11/require-js.js | |
// CDN: https://yerl.org/nLBxY | |
window.require = (function (modules) { | |
function init (name, _module) { | |
var se = document.createElement('script') | |
var module = JSON.parse(_module)[name] | |
se.text = module.bundle | |
document.head.appendChild(se) |
// JavaScript 字符串编码使用 UTF-16 | |
"💩".length === 2; | |
"💩" === "\u{1F4A9}"; // es6 | |
"💩" === "\uD83D\uDCA9"; // es5 | |
// 同一个编码可能使用不同的码位 | |
"ò" === "ò"; // ❎ | |
"ò" === "\xF2"; // ✅ | |
"ò" === "o\u0300"; // ✅ | |
"o\u0300".normalize("NFC") === "\xF2"; // ✅ es6 提供了 normalize 函数 |
iptables -t nat -A PREROUTING -i eth0 -p udp ! --source 192.168.2.196 ! --destination 192.168.2.196 --dport 53 -j DNAT --to 192.168.2.196
iptables -t nat -A PREROUTING -i eth0 -p tcp ! --source 192.168.2.196 ! --destination 192.168.2.196 --dport 53 -j DNAT --to 192.168.2.196
or
iptables -t nat -I PREROUTING -i br-lan -p tcp --dport 53 -j DNAT --to 192.168.2.4:53
iptables -t nat -I PREROUTING -i br-lan -p udp --dport 53 -j DNAT --to 192.168.2.4:53