New pages

Jump to navigation Jump to search
New pages
Hide registered users | Show bots | Show redirects

2 July 2026

  • 22:4922:49, 2 July 2026 Nftables (hist | edit) [3,949 bytes] Scott (talk | contribs) (Created page with "= nftables Cheat Sheet = Config: <code>/etc/nftables.conf</code> · table <code>inet filter</code> · chains <code>input</code> / <code>forward</code> / <code>output</code> Input policy is '''drop'''; SSH allowed only from <code>$ssh_nets_v4</code>. Out-of-band rescue: IPMI/BMC console (H5Viewer or Serial-over-LAN). == Everyday commands == <syntaxhighlight lang="bash"> # Syntax-check the config WITHOUT applying (always do this first) sudo nft -c -f /etc/nftables.con...")
  • 22:4822:48, 2 July 2026 Fail2ban (hist | edit) [3,963 bytes] Scott (talk | contribs) (Created page with "= fail2ban Cheat Sheet = Config: <code>/etc/fail2ban/jail.local</code> (jails) · <code>/etc/fail2ban/fail2ban.local</code> (daemon) Backend: '''systemd journal''' (not log files) · Ban action: '''nftables''' Jail: <code>sshd</code> · maxretry 4 · findtime 10m · bantime 1h Bans trigger on '''auth failures''', not connection counts. == Status & inspection == <syntaxhighlight lang="bash"> # Daemon alive? sudo systemctl status fail2ban sudo fail2ban-client ping...")
  • 22:3122:31, 2 July 2026 Firewall config 2026 (hist | edit) [26 bytes] Scott (talk | contribs) (Created page with "# fail2ban Cheat Sheet Config: `/etc/fail2ban/jail.local` (jails) · `/etc/fail2ban/fail2ban.local` (daemon) Backend: **systemd journal** (not log files) · Ban action: **nftables** Jail: `sshd` · maxretry 4 · findtime 10m · bantime 1h Bans trigger on **auth failures**, not connection counts. --- ## Status & inspection ```bash # Daemon alive? sudo systemctl status fail2ban sudo fail2ban-client ping # should answer "pong" # Which jails are running?...")

15 April 2026

  • 19:3419:34, 15 April 2026 Openclaw (hist | edit) [1,155 bytes] Scott (talk | contribs) (Created page with "== Managing Models == current models: * openai-codex/gpt-5.4 * anthropic/claude-opus-4-6 switch model: <pre> openclaw config set agents.defaults.model.primary openai-codex/gpt-5.4 openclaw config set agents.defaults.heartbeat.model openai-codex/gpt-5.4 openclaw gateway restart </pre> <pre> openclaw config set agents.defaults.model.primary anthropic/claude-opus-4-6 openclaw config set agents.defaults.heartbeat.model anthropic/claude-sonnet-4-6 openclaw gateway restart <...")