local (non-tailnet) DNS is failing whenever Tailscale is connected and "Use Tailscale DNS Settings" is active.
I have reproduced this on the following platforms:
- macOS 15.6 (TS Standalone 1.86.2)
- iOS 18.6 (TS 1.84.1)
- tvOS 18.5 (TS 1.84.1)
| ------------------------------------------------------------------------ | |
| ZFS Subsystem Report Fri Jan 23 13:12:50 2026 | |
| Linux 6.12.33-production+truenas 2.3.4-1 | |
| Machine: bobbynewmark (x86_64) 2.3.4-1 | |
| ARC status: | |
| Total memory size: 125.5 GiB | |
| Min target size: 3.1 % 3.9 GiB | |
| Max target size: 99.2 % 124.5 GiB |
| <div class="view view--quadrant"> | |
| <div class="layout"> | |
| <div class="grid grid--cols-2"> | |
| <div class="grid"> | |
| <div class="col"> | |
| <div class="item"> | |
| <div class="content"> | |
| <img class="image w--min-10 w--max-10 h--min-10 h--max-10" src="{{ weather_50266.weather_image }}" /> | |
| </div> | |
| </div> |
| mkdir -p ~/Library/LaunchAgents | |
| cat << EOF > ~/Library/LaunchAgents/com.dosburros.SSH_AUTH_SOCK.plist | |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Label</key> | |
| <string>com.dosburros.SSH_AUTH_SOCK</string> | |
| <key>ProgramArguments</key> | |
| <array> |
| // ==UserScript== | |
| // @name Paylocity Enhance | |
| // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js | |
| // @require https://gist.github.com/raw/2625891/waitForKeyElements.js | |
| // @namespace https://app.paylocity.com/ | |
| // @version 0.1 | |
| // @description Try to make Paylocity's UI marginally better | |
| // @author Sean Graham | |
| // @match https://app.paylocity.com/PerformanceManagement/Reviews/activeReviews | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=paylocity.com |
| unbind C-b | |
| set -g prefix C-a | |
| bind -r a send-prefix | |
| bind C-a last-window | |
| # https://gist.github.com/admackin/4507371 | |
| # fix ssh agent when tmux is detached | |
| # See .ssh/rc for socket linking | |
| set -g update-environment -r | |
| set-environment -g SSH_AUTH_SOCK $HOME/.ssh/agent.sock |
| " .vimrc | |
| " Originally Jon Parise (jon@csh.rit.edu) | |
| " Modified by Sean Graham (grahams@sean-graham.com) | |
| " set encoding=utf-8 | |
| if file_readable(expand("~/.vimrc_local")) | |
| source ~/.vimrc_local | |
| endif |
| import sqlite3 | |
| from urllib.parse import unquote | |
| from urllib.parse import parse_qs | |
| dbPath = "./com.plexapp.plugins.library.db" | |
| conn = sqlite3.connect(dbPath) | |
| c = conn.cursor() | |
| c2 = conn.cursor() | |
| doviTitles = c.execute('''SELECT metadata_items.title, media_items.id, media_streams.extra_data FROM media_items |
| unbind C-b | |
| set -g prefix C-a | |
| bind -r a send-prefix | |
| bind C-a last-window | |
| # https://gist.github.com/admackin/4507371 | |
| # fix ssh agent when tmux is detached | |
| # See .ssh/rc for socket linking | |
| set -g update-environment -r | |
| set-environment -g SSH_AUTH_SOCK $HOME/.ssh/agent.sock |