Code Monkey home page Code Monkey logo

tmate-ssh-server's People

Contributors

4a6f656c avatar ansasaki avatar bcbcarl avatar bob-beck avatar cjeker avatar cryptomilk avatar ebardie avatar felixonmars avatar flokli avatar graingert avatar ischwarze avatar jhunt avatar jonathangray avatar klemensn avatar marcespie avatar mathstuf avatar mherrb avatar mkilian avatar nicm avatar nviennot avatar pini-gh avatar sebastianbenoit avatar sergico avatar sthen avatar stspdotname avatar swills avatar tgouverneur avatar thomasadam avatar varac avatar xxorde avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

tmate-ssh-server's Issues

[Enhancement] Static access link Feature

This tool is so useful for support tasks, but there are machines you don't have access to check the access link or to launch the daemon.

  • Not closing daemon after disconnect all sessions.
  • The server has the option to set and keep the access link

Attempting to build tmate-slave i get an error :(

In file included from tmate-slave.c:18:
tmate.h:101: error: redefinition of typedef ‘ssh_session’
libssh/include/libssh/libssh.h:115: note: previous declaration of ‘ssh_session’ was here
tmate.h:102: error: redefinition of typedef ‘ssh_channel’
libssh/include/libssh/libssh.h:110: note: previous declaration of ‘ssh_channel’ was here
make: *** [tmate-slave.o] Error 1
root@pair:~/tmate-slave#

Ubuntu 10.04

These are the commands i've used to get to this point:

apt-get install git-core build-essential pkg-config libtool libevent-dev libncurses-dev zlib1g-dev automake libssh-dev cmake ruby vim -y
git clone https://github.com/nviennot/tmate-slave.git && cd tmate-slave
./create_keys.sh # This will generate SSH keys, remember the keys fingerprints.
vim tmate.h
apt-get remove libevent-dev --purge
cd ../
wget https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz
tar xvzf lib
cd lib
./configure
make
make install
cd ../
apt-get remove libssh-4 --purge
wget http://www.libssh.org/files/0.5/libssh-0.5.3.tar.gz
tar xvzf libssh-0.5.3.tar.gz
cd libssh-0.5.3
mkdir build
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug ..
make
make install
cd ../..
cd tmate-slave
./autogen.sh && ./configure && make

Arch Linux / Manjaro Packet

PKGBUILD

# Maintainer: ds2k5

pkgname=tmate-slave-git
pkgver=1.8.r1432.g76ec591
pkgrel=1
pkgdesc="Tmate Server - is a fork of tmux. It provides an instant pairing solution."
arch=("any")
url="https://github.com/tmate-io/tmate-slave"
license=("BSD-licensed")
depends=('msgpack-c' 'openssh')
makedepends=('git')
conflicts=('tmate-git')
provides=('tmate-git')
options=(!emptydirs)
source=("${pkgname}::git+https://github.com/tmate-io/tmate-slave")

md5sums=('SKIP')

prepare() {
	cd "${pkgname}"
}

pkgver() {
        cd "${pkgname}"
        git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v//'
	}


build() {
	cd "${pkgname}"
	./autogen.sh
	./configure
	make
	strip tmate-slave

}

package() {
	cd "${pkgname}"
	#mkdir -p "$pkgdir/usr/local/bin"
	#make INSTALL_ROOT="$pkgdir/${pkgname}" install
        make DESTDIR="$pkgdir/" install
}

Install with: makepkg && sudo pacman -U tmate-slave-git-.pkg.tar.xz
for example: makepkg && sudo pacman -U tmate-slave-git-1.8.r1432.g76ec591-1-any.pkg.tar.xz

building inside of Alpine Linux within Docker

Hey there,

Thanks you for spending your time on this project and to keep the servers online. It's been invaluable being able to seamlessly pair-up with my colleague, even when lives 150+ms away.

I'm looking at trying to get tmate-slave built within Alpine Linux inside of Docker. I am able to successfully build the binary using Debian, but those containers are roughly the size of Texas. My ultimate goal is to build a binary, and then ship it to a slim container with only the libraries needed for it to run.

I think I've managed to get fairly far in the build process, and all errors so far have been mitigated by installing a missing library or something similar. I've finally hit a point where I'm stuck and thought I'd pick your brain to see if you had any suggestions or wisdom. My issue is similar to #5 which makes me wonder if the libc distribution shipped with Alpine is missing features.

Please let me know if there's any other information I can send your way to help troubleshoot this. It'd be stellar if this could be built to work within Alpine, as I could then easily ship a container around to find the best location to host the server for my colleague and I.

Here is the commit with Alpine Dockerfile & build script: https://github.com/theckman/tmate-slave-build-dockerfile/tree/9d1acd7873d2a0c3ca595bdab0bfbb8831c0cd0a

Here's a synopsis on the commands to run to use the repo above. This assumes you have docker locally and the repo checked out to that specific commit:

docker build -t tmate-slave-build .
mkdir nexus
docker run -v $(pwd)/nexus:/nexus tmate-slave-build

Here is the error it produces:

gcc -DPACKAGE_NAME=\"tmux\" -DPACKAGE_TARNAME=\"tmux\" -DPACKAGE_VERSION=\"2.2\" -DPACKAGE_STRING=\"tmux\ 2.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"tmux\" -DVERSION=\"2.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRING
S_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_CURSES_H=1 -DHAVE_DIRENT_H=1 -DHAVE_FCNTL_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_NCURSES_H=1 -DHAVE_PATHS_H=1 -DHAVE_PTY_H=1 -DHAVE_STDINT_H=1 -DHAVE_SYS_DIR_H=1 -DHAVE_TERM_H=1 -DHAVE_DIRFD=1 -DHAVE_FLOCK=1 -DHAVE_SYSCONF=1 -DHAVE_CFMAKERAW=1 -DHAVE_SETRES
UID=1 -DHAVE_SETRESGID=1 -DHAVE_SETREUID=1 -DHAVE_SETREGID=1 -DHAVE_LIBXNET=1 -DHAVE_FORKPTY=1 -DHAVE_DAEMON=1 -DHAVE_SETENV=1 -DHAVE_STRLCPY=1 -DHAVE_STRLCAT=1 -DHAVE_ASPRINTF=1 -DHAVE_FGETLN=1 -DHAVE_STRCASESTR=1 -DHAVE_STRSEP=1 -DHAVE_CFMAKERAW=1 -DHAVE_OPENAT=1 -DHAVE_DECL_OPTARG=1 -DHAVE_DECL_OPTIND=1 -DHAVE_DEC
L_OPTRESET=0 -DHAVE_BSD_TYPES=1 -DHAVE___PROGNAME=1 -DHAVE_PROC_PID=1 -DIS_LINUX=1  -I.   -DTMUX_CONF="\"/etc/tmux.conf\"" -DDEBUG -iquote.       -rdynamic  -std=gnu99 -O2 -g -Wno-long-long -Wall -W -Wnested-externs -Wformat=2 -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -Wwrite-strings -Wshadow -W
pointer-arith -Wsign-compare -Wundef -Wbad-function-cast -Winline -Wcast-align -Wdeclaration-after-statement -Wno-pointer-sign -Wno-attributes   -MT tmate-slave.o -MD -MP -MF $depbase.Tpo -c -o tmate-slave.o tmate-slave.c &&\
mv -f $depbase.Tpo $depbase.Po
tmate-slave.c: In function 'jail':
tmate-slave.c:367:6: warning: implicit declaration of function 'unshare' [-Wimplicit-function-declaration]
  if (unshare(CLONE_NEWPID | CLONE_NEWIPC | CLONE_NEWNS | CLONE_NEWNET) < 0)
      ^~~~~~~
tmate-slave.c:367:2: warning: nested extern declaration of 'unshare' [-Wnested-externs]
  if (unshare(CLONE_NEWPID | CLONE_NEWIPC | CLONE_NEWNS | CLONE_NEWNET) < 0)
  ^~
tmate-slave.c:367:14: error: 'CLONE_NEWPID' undeclared (first use in this function)
  if (unshare(CLONE_NEWPID | CLONE_NEWIPC | CLONE_NEWNS | CLONE_NEWNET) < 0)
              ^~~~~~~~~~~~
tmate-slave.c:367:14: note: each undeclared identifier is reported only once for each function it appears in
tmate-slave.c:367:29: error: 'CLONE_NEWIPC' undeclared (first use in this function)
  if (unshare(CLONE_NEWPID | CLONE_NEWIPC | CLONE_NEWNS | CLONE_NEWNET) < 0)
                             ^~~~~~~~~~~~
tmate-slave.c:367:44: error: 'CLONE_NEWNS' undeclared (first use in this function)
  if (unshare(CLONE_NEWPID | CLONE_NEWIPC | CLONE_NEWNS | CLONE_NEWNET) < 0)
                                            ^~~~~~~~~~~
tmate-slave.c:367:58: error: 'CLONE_NEWNET' undeclared (first use in this function)
  if (unshare(CLONE_NEWPID | CLONE_NEWIPC | CLONE_NEWNS | CLONE_NEWNET) < 0)
                                                          ^~~~~~~~~~~~
tmate-slave.c:375:6: warning: implicit declaration of function 'setresgid' [-Wimplicit-function-declaration]
  if (setresgid(gid, gid, gid) < 0)
tmate-slave.c:375:2: warning: nested extern declaration of 'setresgid' [-Wnested-externs]
  if (setresgid(gid, gid, gid) < 0)
  ^~
tmate-slave.c:386:6: warning: implicit declaration of function 'setresuid' [-Wimplicit-function-declaration]
  if (setresuid(uid, uid, uid) < 0)
      ^~~~~~~~~
tmate-slave.c:386:2: warning: nested extern declaration of 'setresuid' [-Wnested-externs]
  if (setresuid(uid, uid, uid) < 0)
  ^~
make: *** [Makefile:889: tmate-slave.o] Error 1

tmate web connection though tmate-ssh-server

Hi,

I was wondering if I was missing something. I have got the tmate-ssh-server working on a Centos 7 LXC, it works fine for ssh connections, but I can't seem to get it to generate a web URL. Is this possible with the self-hosted server? Do I need apache installed on my server?

I have looked through all the issues and can't seem to see any mention of this.

It may be intended behaviour?

Thanks in advance

mb

Setup CI with dockerhub

Containers fail to build on a few of the most recent commits to master. It would be great to catch these failures earlier. It looks like the failures relate to #52.

msgpack error ubuntu 14

Long time no see :) Trying to install but I'm getting this error:

cd msgpack; ([ -f Makefile ] || (./bootstrap && ./configure))
make -C msgpack/src libmsgpackc.la
make[1]: Entering directory `/home/cj/src/tmate-slave/msgpack/src'
make[1]: *** No rule to make target `libmsgpackc.la'.  Stop.
make[1]: Leaving directory `/home/cj/src/tmate-slave/msgpack/src'
make: *** [msgpack/src/.libs/libmsgpackc.a] Error 2

Any ideas? Thank you!

authorized_keys_path with -a option

Hello,
I setup tmate-ssh-server few weeks ago using the docker container image provided and used '-a' to provide a file containing the ssh public keys.

On latest docker container image (tested on 2019-11-29), '-a' option is not available. How can I provide a file containing all the public keys to tmate-ssh-server?
Many thanks and kind regards,

Avoid 1, l, I aswell as O and 0 inside the tmate-id

I use Tmate from time to time to help other linux users, when the Xserver on their computer fails. In this case it's quite complicated to copy and paste the id into an email, so I need to "transmit" the id by speaking on the phone or asking to capture the tmate screen with the id with a smartphone, so that they can send me a "screenshot".

The problem: The Tmate-id contains letters like "1", "l" (small L) and "I" (capital i) aswell as O (capital ohhh) and "0" (zero). Depending on the terminal font it's quite complicated to decipher the correct id and it takes a couple of tries to establish the connection. So my wish: Avoid those characters inside the id completely.

Error doing the key exchange

Hi,

tmate works fine when I use master.tmate.io, but when I try to use it with my own server, tmate-slave answers this:

[.........................] [tmate] FATAL Error doing the key exchange

and tmate:

Error connecting: kex error : no match for method server host key algo: server [ssh-dss,ssh-rsa], client [ecdsa-sha2-nistp256]

When I move my ~/.ssh/known_hosts away, it works.

Any idea how I could fix this ?

[from src] tmate-slave -v => Error listening to socket: Failed to import private DSA host key

I'm trying to test out tmate-slave; and I'm seeing the above error.

Here is the dockerfile that can reproduce the issue:

# tmate-slave
#
# VERSION               0.0.1

FROM       ubuntu:trusty
MAINTAINER Dr Nic Williams <[email protected]>

# make sure the package repository is up to date
# RUN echo "deb http://archive.ubuntu.com/ubuntu trusty main universe" > /etc/apt/sources.list
RUN apt-get update

RUN apt-get install -y git-core build-essential pkg-config libtool libevent-dev libncurses-dev zlib1g-dev automake libssh-dev libssl-dev cmake ruby

RUN mkdir -p /usr/local/src
ADD src/tmate-slave /usr/local/src/tmate-slave
RUN ls -al /usr/local/src/
RUN cd /usr/local/src/tmate-slave && ./create_keys.sh && ./autogen.sh && ./configure && make
# RUN mv /usr/local/src/tmate-slave/tmate-slave /usr/bin/
CMD ["./usr/local/src/tmate-slave/tmate-slave", "-v"]

When I run the container:

2014-08-11 01:11:02 [main] [tmate] FATAL Error listening to socket: Failed to import private DSA host key

Ideas?

Limit access to tmate-slave

I'd like to run my own tmate-slave server, but if I understand correctly, everybody could connectand start new sessions. Is there a way to limit access to it, i.e. based on the ssh pubkey that is connecting ?
This way, I could invite friends but not thw whole world.

Consistently get "Error writing to channel" when a client try to join a session

I'm setting up my own tmate-slave (the default tmate.io seems to be overloaded)

So here what I did on my ubuntu 16.04:

apt update
apt install -y git-core build-essential pkg-config libtool libevent-dev libncurses-dev zlib1g-dev automake libssh-dev cmake ruby

# Install msgpack

curl -OL "https://github.com/msgpack/msgpack-c/releases/download/cpp-1.3.0/msgpack-1.3.0.tar.gz"
tar xzf msgpack-1.3.0.tar.gz && cd msgpack-1.3.0/
./configure --prefix=/usr && make && make install

# Install libssh

git clone https://github.com/nviennot/libssh.git
cd libssh && mkdir -p build && cd build && cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DWITH_EXAMPLES=OFF -DWITH_SFTP=OFF .. && make && make install

# Install tmate-slave

git clone https://github.com/tmate-io/tmate-slave.git && cd tmate-slave
./autogen.sh
export PKG_CONFIG_PATH=/usr/lib/pkgconfig/
./configure && make
./create_keys.sh # This will generate SSH keys, remember the keys fingerprints.
sudo ./tmate-slave

./tmate-slave -p 2222 -h [REDACTED]

Now Configure client ~/.tmate.conf:

set -g tmate-server-host "[REDACTED]"
set -g tmate-server-port 2222
set -g tmate-server-rsa-fingerprint   "95:2b:4c:5e:90:a9:a9:79:d1:34:b9:1a:61:da:4e:31"
set -g tmate-server-ecdsa-fingerprint "09:47:d4:e4:bb:69:1a:61:17:48:b6:c5:e9:d2:2c:96"
set -g tmate-identity ""              # Can be specified to use a different SSH key.

After that: Start tmate to host a session:

$ tmate
[tmate] ssh session: ssh -p2222 WUFYWY8kCgSlhTrPl61EtiR30@[REDACTED]

But attempt to connect to such sessions yield error:

$ ssh -p2222 WUFYWY8kCgSlhTrPl61EtiR30@[REDACTED]
[server exited]
Connection to [REDACTED] closed by remote host.
Connection to [REDACTED] closed.

In tmux-slave output, here is what it printed:

<5> [init] (tmate) Bootstrapping ssh client ip=[REDACTED]
<5> [WUFYWY8kCgSlhTrPl61EtiR30] (tmate) Spawning slave client for [REDACTED]([REDACTED])
<5> [WUFYWY8kCgSlhTrPl61EtiR30] (tmate) Client joined (cid=0)
<4> [WUFYWY8kCgSlhTrPl61EtiR30] (tmate) Error writing to channel:
<5> [WUFYWY8kCgSlhTrPl61EtiR30] (tmate) Client left (cid=0)

which traced back to this:

static void on_daemon_encoder_write(void *userdata, struct evbuffer *buffer)
{
        struct tmate_session *session = userdata;
        ssize_t len, written;
        unsigned char *buf;

        for(;;) {
                len = evbuffer_get_length(buffer);
                if (!len)
                        break;

                buf = evbuffer_pullup(buffer, -1);

                written = ssh_channel_write(session->ssh_client.channel, buf, len);
                if (written < 0) {
                        tmate_warn("Error writing to channel: %s",
                                    ssh_get_error(session->ssh_client.session));
                        request_server_termination();
                        break;
                }

                evbuffer_drain(buffer, written);
        }
}

So ssh_channel_write can't write and ssh_get_error doesn't return any clues

golang ssh library cannot connect to sf.tmate.io

I was trying to use go.crypto to connect to the sf.tmate.io SSH session but get the following error:

unable to connect: ssh: handshake failed: ssh: no common algorithms

I found an explanation for the possible cause: http://stackoverflow.com/questions/18998473/failed-to-dial-handshake-failed-ssh-no-common-algorithms-error-in-ssh-client/19002265#19002265

Currently, I've fallen back to calling out to an external ssh CLI [1] but unfortunately for the Windows users it means they need to find and install an SSH client CLI.

It would be awesome if sf.tmate.io supported one of the cyphers supported by go-crypto which I think are:

  • aes128-ctr
  • aes192-ctr
  • aes256-ctr
  • arcfour128
  • arcfour256

Possible?

[1] https://github.com/cloudfoundry-community/cf-ssh#why-require-ssh-cli

OpenVZ: Can't fork in new namespace

Hello! I'm unable to connect to the tmate-slave service on a machine running on OpenVZ:

drakkhen@gerbil:~/tmate-slave$ sudo ./tmate-slave -k keys -p 2022 -h localhost -v
2013-11-18 16:35:08 [main] [tmate] Accepting connections on 2022
2013-11-18 16:35:26 [main] [tmate] FATAL Can't fork in new namespace, are you running a recent kernel?
drakkhen@gerbil:~/tmate-slave$ uname -a
Linux utl 2.6.32-042stab061.2 #1 SMP Fri Aug 24 09:07:21 MSK 2012 x86_64 GNU/Linux

I mention OpenVZ because we have run into other kernel (or module) related issues on our OpenVZ machines before, and I suspect that may be what is required to reproduce the problem.

create_keys.sh uses unknown option to ssh-keygen

-!- tmate/tmate-slave ‹master› » ./create_keys.sh 
unknown option -- E
usage: ssh-keygen [-q] [-b bits] [-t dsa | ecdsa | ed25519 | rsa | rsa1]
                  [-N new_passphrase] [-C comment] [-f output_keyfile]
       ssh-keygen -p [-P old_passphrase] [-N new_passphrase] [-f keyfile]
       ssh-keygen -i [-m key_format] [-f input_keyfile]
       ssh-keygen -e [-m key_format] [-f input_keyfile]
       ssh-keygen -y [-f input_keyfile]
       ssh-keygen -c [-P passphrase] [-C comment] [-f keyfile]
       ssh-keygen -l [-f input_keyfile]
       ssh-keygen -B [-f input_keyfile]
       ssh-keygen -D pkcs11
       ssh-keygen -F hostname [-f known_hosts_file] [-l]
       ssh-keygen -H [-f known_hosts_file]
       ssh-keygen -R hostname [-f known_hosts_file]
       ssh-keygen -r hostname [-f input_keyfile] [-g]
       ssh-keygen -G output_file [-v] [-b bits] [-M memory] [-S start_point]
       ssh-keygen -T output_file -f input_file [-v] [-a rounds] [-J num_lines]
                  [-j start_line] [-K checkpt] [-W generator]
       ssh-keygen -s ca_key -I certificate_identity [-h] [-n principals]
                  [-O option] [-V validity_interval] [-z serial_number] file ...
       ssh-keygen -L [-f input_keyfile]
       ssh-keygen -A
       ssh-keygen -k -f krl_file [-u] [-s ca_public] [-z version_number]
                  file ...
       ssh-keygen -Q -f krl_file file ...

Cannot authenticate when server has ed25519 keys

When I run the tmate-slave docker container and try to connect from a tmate client (version 2.2.1), I can never "authenticate" the server.

Server-side log
$ docker run --privileged --rm -i -p 2222:22 \
                                    -v $(pwd)/keys:/daemon-keys \
                                    tmate-server:latest \
                                    /bin/sh -c "/sbin/tmate-slave -k /daemon-keys -b 0.0.0.0 -p 22 -v -v -v"
<7> (tmate) [ssh_pki_import_privkey_base64] ssh_pki_import_privkey_base64: Trying to decode privkey passphrase=false
<7> (tmate) [ssh_pki_openssh_import] ssh_pki_openssh_import: Opening OpenSSH private key: ciphername: none, kdf: none, nkeys: 1

<7> (tmate) [ssh_pki_import_privkey_base64] ssh_pki_import_privkey_base64: Trying to decode privkey passphrase=false
<7> (tmate) [ssh_pki_openssh_import] ssh_pki_openssh_import: Opening OpenSSH private key: ciphername: none, kdf: none, nkeys: 1

<7> (tmate) [ssh_pki_import_privkey_base64] ssh_pki_import_privkey_base64: Trying to decode privkey passphrase=false
<7> (tmate) [ssh_pki_openssh_import] ssh_pki_openssh_import: Opening OpenSSH private key: ciphername: none, kdf: none, nkeys: 1

<5> (tmate) Accepting connections on 0.0.0.0:22
<6> (tmate) Child spawned pid=7, ip=172.17.0.1
<5> [init] (tmate) Bootstrapping ssh client ip=172.17.0.1
<6> [init] (tmate) Exchanging DH keys
<8> [init] (tmate) [ssh_socket_pollcallback] ssh_socket_pollcallback: Received POLLOUT in connecting state
<8> [init] (tmate) [callback_receive_banner] callback_receive_banner: Received banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_server_connection_callback] ssh_server_connection_callback: SSH client banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh_0.8.5
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=700,padding=4,comp=695,payload=695]
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 20 [len=700,padding=5,comp=694,payload=694]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 20
<8> [init] (tmate) [ssh_packet_kexinit] ssh_packet_kexinit: The client supports extension negotiation: enabling all extensions
<7> [init] (tmate) [ssh_kex_select_methods] ssh_kex_select_methods: Negotiated curve25519-sha256,ssh-ed25519,aes256-ctr,aes256-ctr,hmac-sha2-256,hmac-sha2-256,[email protected],[email protected],,
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set output algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC output algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set input algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC input algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling C->S delayed compression
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling S->C delayed compression
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: Processing 48 bytes left in socket buffer
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 30 [len=44,padding=6,comp=37,payload=37]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 30
<8> [init] (tmate) [ssh_packet_kexdh_init] ssh_packet_kexdh_init: Received SSH_MSG_KEXDH_INIT
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_KEX_ECDH_REPLY sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=188,padding=8,comp=179,payload=179]
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=12,padding=10,comp=1,payload=1]
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_NEWKEYS sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 21 [len=12,padding=10,comp=1,payload=1]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 21
<7> [init] (tmate) [ssh_packet_newkeys] ssh_packet_newkeys: Received SSH_MSG_NEWKEYS
<8> [init] (tmate) [ssh_server_send_extensions] ssh_server_send_extensions: Sending SSH_MSG_EXT_INFO
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=156,padding=14,comp=141,payload=141]
<8> [init] (tmate) [ssh_handle_key_exchange] ssh_handle_key_exchange: ssh_handle_key_exchange: current state : 7
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket exception callback: 1 (0)
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket error: disconnected
<2> [init] (tmate) fatal: Error polling ssh socket: Socket error: disconnected
<6> (tmate) Child spawned pid=8, ip=172.17.0.1
<5> [init] (tmate) Bootstrapping ssh client ip=172.17.0.1
<6> [init] (tmate) Exchanging DH keys
<8> [init] (tmate) [ssh_socket_pollcallback] ssh_socket_pollcallback: Received POLLOUT in connecting state
<8> [init] (tmate) [callback_receive_banner] callback_receive_banner: Received banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_server_connection_callback] ssh_server_connection_callback: SSH client banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh_0.8.5
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=700,padding=4,comp=695,payload=695]
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 20 [len=700,padding=5,comp=694,payload=694]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 20
<8> [init] (tmate) [ssh_packet_kexinit] ssh_packet_kexinit: The client supports extension negotiation: enabling all extensions
<7> [init] (tmate) [ssh_kex_select_methods] ssh_kex_select_methods: Negotiated curve25519-sha256,ssh-ed25519,aes256-ctr,aes256-ctr,hmac-sha2-256,hmac-sha2-256,[email protected],[email protected],,
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set output algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC output algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set input algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC input algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling C->S delayed compression
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling S->C delayed compression
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: Processing 48 bytes left in socket buffer
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 30 [len=44,padding=6,comp=37,payload=37]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 30
<8> [init] (tmate) [ssh_packet_kexdh_init] ssh_packet_kexdh_init: Received SSH_MSG_KEXDH_INIT
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_KEX_ECDH_REPLY sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=188,padding=8,comp=179,payload=179]
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=12,padding=10,comp=1,payload=1]
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_NEWKEYS sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 21 [len=12,padding=10,comp=1,payload=1]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 21
<7> [init] (tmate) [ssh_packet_newkeys] ssh_packet_newkeys: Received SSH_MSG_NEWKEYS
<8> [init] (tmate) [ssh_server_send_extensions] ssh_server_send_extensions: Sending SSH_MSG_EXT_INFO
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=156,padding=14,comp=141,payload=141]
<8> [init] (tmate) [ssh_handle_key_exchange] ssh_handle_key_exchange: ssh_handle_key_exchange: current state : 7
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket exception callback: 1 (0)
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket error: disconnected
<2> [init] (tmate) fatal: Error polling ssh socket: Socket error: disconnected
<6> (tmate) Child spawned pid=9, ip=172.17.0.1
<5> [init] (tmate) Bootstrapping ssh client ip=172.17.0.1
<6> [init] (tmate) Exchanging DH keys
<8> [init] (tmate) [ssh_socket_pollcallback] ssh_socket_pollcallback: Received POLLOUT in connecting state
<8> [init] (tmate) [callback_receive_banner] callback_receive_banner: Received banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_server_connection_callback] ssh_server_connection_callback: SSH client banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh_0.8.5
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=700,padding=4,comp=695,payload=695]
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 20 [len=700,padding=5,comp=694,payload=694]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 20
<8> [init] (tmate) [ssh_packet_kexinit] ssh_packet_kexinit: The client supports extension negotiation: enabling all extensions
<7> [init] (tmate) [ssh_kex_select_methods] ssh_kex_select_methods: Negotiated curve25519-sha256,ssh-ed25519,aes256-ctr,aes256-ctr,hmac-sha2-256,hmac-sha2-256,[email protected],[email protected],,
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set output algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC output algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set input algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC input algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling C->S delayed compression
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling S->C delayed compression
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: Processing 48 bytes left in socket buffer
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 30 [len=44,padding=6,comp=37,payload=37]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 30
<8> [init] (tmate) [ssh_packet_kexdh_init] ssh_packet_kexdh_init: Received SSH_MSG_KEXDH_INIT
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_KEX_ECDH_REPLY sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=188,padding=8,comp=179,payload=179]
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=12,padding=10,comp=1,payload=1]
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_NEWKEYS sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 21 [len=12,padding=10,comp=1,payload=1]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 21
<7> [init] (tmate) [ssh_packet_newkeys] ssh_packet_newkeys: Received SSH_MSG_NEWKEYS
<8> [init] (tmate) [ssh_server_send_extensions] ssh_server_send_extensions: Sending SSH_MSG_EXT_INFO
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=156,padding=14,comp=141,payload=141]
<8> [init] (tmate) [ssh_handle_key_exchange] ssh_handle_key_exchange: ssh_handle_key_exchange: current state : 7
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket exception callback: 1 (0)
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket error: disconnected
<2> [init] (tmate) fatal: Error polling ssh socket: Socket error: disconnected
<6> (tmate) Child spawned pid=10, ip=172.17.0.1
<5> [init] (tmate) Bootstrapping ssh client ip=172.17.0.1
<6> [init] (tmate) Exchanging DH keys
<8> [init] (tmate) [ssh_socket_pollcallback] ssh_socket_pollcallback: Received POLLOUT in connecting state
<8> [init] (tmate) [callback_receive_banner] callback_receive_banner: Received banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_server_connection_callback] ssh_server_connection_callback: SSH client banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh_0.8.5
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=700,padding=4,comp=695,payload=695]
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 20 [len=700,padding=5,comp=694,payload=694]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 20
<8> [init] (tmate) [ssh_packet_kexinit] ssh_packet_kexinit: The client supports extension negotiation: enabling all extensions
<7> [init] (tmate) [ssh_kex_select_methods] ssh_kex_select_methods: Negotiated curve25519-sha256,ssh-ed25519,aes256-ctr,aes256-ctr,hmac-sha2-256,hmac-sha2-256,[email protected],[email protected],,
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set output algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC output algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set input algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC input algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling C->S delayed compression
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling S->C delayed compression
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: Processing 48 bytes left in socket buffer
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 30 [len=44,padding=6,comp=37,payload=37]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 30
<8> [init] (tmate) [ssh_packet_kexdh_init] ssh_packet_kexdh_init: Received SSH_MSG_KEXDH_INIT
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_KEX_ECDH_REPLY sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=188,padding=8,comp=179,payload=179]
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=12,padding=10,comp=1,payload=1]
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_NEWKEYS sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 21 [len=12,padding=10,comp=1,payload=1]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 21
<7> [init] (tmate) [ssh_packet_newkeys] ssh_packet_newkeys: Received SSH_MSG_NEWKEYS
<8> [init] (tmate) [ssh_server_send_extensions] ssh_server_send_extensions: Sending SSH_MSG_EXT_INFO
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=156,padding=14,comp=141,payload=141]
<8> [init] (tmate) [ssh_handle_key_exchange] ssh_handle_key_exchange: ssh_handle_key_exchange: current state : 7
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket exception callback: 1 (0)
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket error: disconnected
<2> [init] (tmate) fatal: Error polling ssh socket: Socket error: disconnected
<6> (tmate) Child spawned pid=11, ip=172.17.0.1
<5> [init] (tmate) Bootstrapping ssh client ip=172.17.0.1
<6> [init] (tmate) Exchanging DH keys
<8> [init] (tmate) [ssh_socket_pollcallback] ssh_socket_pollcallback: Received POLLOUT in connecting state
<8> [init] (tmate) [callback_receive_banner] callback_receive_banner: Received banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_server_connection_callback] ssh_server_connection_callback: SSH client banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh_0.8.5
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=700,padding=4,comp=695,payload=695]
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 20 [len=700,padding=5,comp=694,payload=694]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 20
<8> [init] (tmate) [ssh_packet_kexinit] ssh_packet_kexinit: The client supports extension negotiation: enabling all extensions
<7> [init] (tmate) [ssh_kex_select_methods] ssh_kex_select_methods: Negotiated curve25519-sha256,ssh-ed25519,aes256-ctr,aes256-ctr,hmac-sha2-256,hmac-sha2-256,[email protected],[email protected],,
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set output algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC output algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set input algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC input algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling C->S delayed compression
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling S->C delayed compression
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: Processing 48 bytes left in socket buffer
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 30 [len=44,padding=6,comp=37,payload=37]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 30
<8> [init] (tmate) [ssh_packet_kexdh_init] ssh_packet_kexdh_init: Received SSH_MSG_KEXDH_INIT
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_KEX_ECDH_REPLY sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=188,padding=8,comp=179,payload=179]
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=12,padding=10,comp=1,payload=1]
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_NEWKEYS sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 21 [len=12,padding=10,comp=1,payload=1]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 21
<7> [init] (tmate) [ssh_packet_newkeys] ssh_packet_newkeys: Received SSH_MSG_NEWKEYS
<8> [init] (tmate) [ssh_server_send_extensions] ssh_server_send_extensions: Sending SSH_MSG_EXT_INFO
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=156,padding=14,comp=141,payload=141]
<8> [init] (tmate) [ssh_handle_key_exchange] ssh_handle_key_exchange: ssh_handle_key_exchange: current state : 7
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket exception callback: 1 (0)
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket error: disconnected
<2> [init] (tmate) fatal: Error polling ssh socket: Socket error: disconnected
<6> (tmate) Child spawned pid=12, ip=172.17.0.1
<5> [init] (tmate) Bootstrapping ssh client ip=172.17.0.1
<6> [init] (tmate) Exchanging DH keys
<8> [init] (tmate) [ssh_socket_pollcallback] ssh_socket_pollcallback: Received POLLOUT in connecting state
<8> [init] (tmate) [callback_receive_banner] callback_receive_banner: Received banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_server_connection_callback] ssh_server_connection_callback: SSH client banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh_0.8.5
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=700,padding=4,comp=695,payload=695]
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 20 [len=700,padding=5,comp=694,payload=694]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 20
<8> [init] (tmate) [ssh_packet_kexinit] ssh_packet_kexinit: The client supports extension negotiation: enabling all extensions
<7> [init] (tmate) [ssh_kex_select_methods] ssh_kex_select_methods: Negotiated curve25519-sha256,ssh-ed25519,aes256-ctr,aes256-ctr,hmac-sha2-256,hmac-sha2-256,[email protected],[email protected],,
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set output algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC output algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set input algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC input algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling C->S delayed compression
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling S->C delayed compression
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: Processing 48 bytes left in socket buffer
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 30 [len=44,padding=6,comp=37,payload=37]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 30
<8> [init] (tmate) [ssh_packet_kexdh_init] ssh_packet_kexdh_init: Received SSH_MSG_KEXDH_INIT
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_KEX_ECDH_REPLY sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=188,padding=8,comp=179,payload=179]
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=12,padding=10,comp=1,payload=1]
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_NEWKEYS sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 21 [len=12,padding=10,comp=1,payload=1]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 21
<7> [init] (tmate) [ssh_packet_newkeys] ssh_packet_newkeys: Received SSH_MSG_NEWKEYS
<8> [init] (tmate) [ssh_server_send_extensions] ssh_server_send_extensions: Sending SSH_MSG_EXT_INFO
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=156,padding=14,comp=141,payload=141]
<8> [init] (tmate) [ssh_handle_key_exchange] ssh_handle_key_exchange: ssh_handle_key_exchange: current state : 7
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket exception callback: 1 (0)
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket error: disconnected
<2> [init] (tmate) fatal: Error polling ssh socket: Socket error: disconnected
<6> (tmate) Child spawned pid=13, ip=172.17.0.1
<5> [init] (tmate) Bootstrapping ssh client ip=172.17.0.1
<6> [init] (tmate) Exchanging DH keys
<8> [init] (tmate) [ssh_socket_pollcallback] ssh_socket_pollcallback: Received POLLOUT in connecting state
<8> [init] (tmate) [callback_receive_banner] callback_receive_banner: Received banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_server_connection_callback] ssh_server_connection_callback: SSH client banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh_0.8.5
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=700,padding=4,comp=695,payload=695]
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 20 [len=700,padding=5,comp=694,payload=694]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 20
<8> [init] (tmate) [ssh_packet_kexinit] ssh_packet_kexinit: The client supports extension negotiation: enabling all extensions
<7> [init] (tmate) [ssh_kex_select_methods] ssh_kex_select_methods: Negotiated curve25519-sha256,ssh-ed25519,aes256-ctr,aes256-ctr,hmac-sha2-256,hmac-sha2-256,[email protected],[email protected],,
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set output algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC output algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set input algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC input algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling C->S delayed compression
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling S->C delayed compression
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: Processing 48 bytes left in socket buffer
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 30 [len=44,padding=6,comp=37,payload=37]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 30
<8> [init] (tmate) [ssh_packet_kexdh_init] ssh_packet_kexdh_init: Received SSH_MSG_KEXDH_INIT
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_KEX_ECDH_REPLY sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=188,padding=8,comp=179,payload=179]
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=12,padding=10,comp=1,payload=1]
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_NEWKEYS sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 21 [len=12,padding=10,comp=1,payload=1]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 21
<7> [init] (tmate) [ssh_packet_newkeys] ssh_packet_newkeys: Received SSH_MSG_NEWKEYS
<8> [init] (tmate) [ssh_server_send_extensions] ssh_server_send_extensions: Sending SSH_MSG_EXT_INFO
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=156,padding=14,comp=141,payload=141]
<8> [init] (tmate) [ssh_handle_key_exchange] ssh_handle_key_exchange: ssh_handle_key_exchange: current state : 7
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket exception callback: 1 (0)
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket error: disconnected
<2> [init] (tmate) fatal: Error polling ssh socket: Socket error: disconnected
<6> (tmate) Child spawned pid=14, ip=172.17.0.1
<5> [init] (tmate) Bootstrapping ssh client ip=172.17.0.1
<6> [init] (tmate) Exchanging DH keys
<8> [init] (tmate) [ssh_socket_pollcallback] ssh_socket_pollcallback: Received POLLOUT in connecting state
<8> [init] (tmate) [callback_receive_banner] callback_receive_banner: Received banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_server_connection_callback] ssh_server_connection_callback: SSH client banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh_0.8.5
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=700,padding=4,comp=695,payload=695]
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 20 [len=700,padding=5,comp=694,payload=694]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 20
<8> [init] (tmate) [ssh_packet_kexinit] ssh_packet_kexinit: The client supports extension negotiation: enabling all extensions
<7> [init] (tmate) [ssh_kex_select_methods] ssh_kex_select_methods: Negotiated curve25519-sha256,ssh-ed25519,aes256-ctr,aes256-ctr,hmac-sha2-256,hmac-sha2-256,[email protected],[email protected],,
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set output algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC output algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set input algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC input algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling C->S delayed compression
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling S->C delayed compression
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: Processing 48 bytes left in socket buffer
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 30 [len=44,padding=6,comp=37,payload=37]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 30
<8> [init] (tmate) [ssh_packet_kexdh_init] ssh_packet_kexdh_init: Received SSH_MSG_KEXDH_INIT
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_KEX_ECDH_REPLY sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=188,padding=8,comp=179,payload=179]
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=12,padding=10,comp=1,payload=1]
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_NEWKEYS sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 21 [len=12,padding=10,comp=1,payload=1]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 21
<7> [init] (tmate) [ssh_packet_newkeys] ssh_packet_newkeys: Received SSH_MSG_NEWKEYS
<8> [init] (tmate) [ssh_server_send_extensions] ssh_server_send_extensions: Sending SSH_MSG_EXT_INFO
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=156,padding=14,comp=141,payload=141]
<8> [init] (tmate) [ssh_handle_key_exchange] ssh_handle_key_exchange: ssh_handle_key_exchange: current state : 7
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket exception callback: 1 (0)
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket error: disconnected
<2> [init] (tmate) fatal: Error polling ssh socket: Socket error: disconnected
<6> (tmate) Child spawned pid=15, ip=172.17.0.1
<5> [init] (tmate) Bootstrapping ssh client ip=172.17.0.1
<6> [init] (tmate) Exchanging DH keys
<8> [init] (tmate) [ssh_socket_pollcallback] ssh_socket_pollcallback: Received POLLOUT in connecting state
<8> [init] (tmate) [callback_receive_banner] callback_receive_banner: Received banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_server_connection_callback] ssh_server_connection_callback: SSH client banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh_0.8.5
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=700,padding=4,comp=695,payload=695]
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 20 [len=700,padding=5,comp=694,payload=694]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 20
<8> [init] (tmate) [ssh_packet_kexinit] ssh_packet_kexinit: The client supports extension negotiation: enabling all extensions
<7> [init] (tmate) [ssh_kex_select_methods] ssh_kex_select_methods: Negotiated curve25519-sha256,ssh-ed25519,aes256-ctr,aes256-ctr,hmac-sha2-256,hmac-sha2-256,[email protected],[email protected],,
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set output algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC output algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set input algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC input algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling C->S delayed compression
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling S->C delayed compression
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: Processing 48 bytes left in socket buffer
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 30 [len=44,padding=6,comp=37,payload=37]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 30
<8> [init] (tmate) [ssh_packet_kexdh_init] ssh_packet_kexdh_init: Received SSH_MSG_KEXDH_INIT
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_KEX_ECDH_REPLY sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=188,padding=8,comp=179,payload=179]
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=12,padding=10,comp=1,payload=1]
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_NEWKEYS sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 21 [len=12,padding=10,comp=1,payload=1]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 21
<7> [init] (tmate) [ssh_packet_newkeys] ssh_packet_newkeys: Received SSH_MSG_NEWKEYS
<8> [init] (tmate) [ssh_server_send_extensions] ssh_server_send_extensions: Sending SSH_MSG_EXT_INFO
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=156,padding=14,comp=141,payload=141]
<8> [init] (tmate) [ssh_handle_key_exchange] ssh_handle_key_exchange: ssh_handle_key_exchange: current state : 7
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket exception callback: 1 (0)
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket error: disconnected
<2> [init] (tmate) fatal: Error polling ssh socket: Socket error: disconnected
<6> (tmate) Child spawned pid=16, ip=172.17.0.1
<5> [init] (tmate) Bootstrapping ssh client ip=172.17.0.1
<6> [init] (tmate) Exchanging DH keys
<8> [init] (tmate) [ssh_socket_pollcallback] ssh_socket_pollcallback: Received POLLOUT in connecting state
<8> [init] (tmate) [callback_receive_banner] callback_receive_banner: Received banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_server_connection_callback] ssh_server_connection_callback: SSH client banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh_0.8.5
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=700,padding=4,comp=695,payload=695]
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 20 [len=700,padding=5,comp=694,payload=694]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 20
<8> [init] (tmate) [ssh_packet_kexinit] ssh_packet_kexinit: The client supports extension negotiation: enabling all extensions
<7> [init] (tmate) [ssh_kex_select_methods] ssh_kex_select_methods: Negotiated curve25519-sha256,ssh-ed25519,aes256-ctr,aes256-ctr,hmac-sha2-256,hmac-sha2-256,[email protected],[email protected],,
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set output algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC output algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set input algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC input algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling C->S delayed compression
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling S->C delayed compression
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: Processing 48 bytes left in socket buffer
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 30 [len=44,padding=6,comp=37,payload=37]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 30
<8> [init] (tmate) [ssh_packet_kexdh_init] ssh_packet_kexdh_init: Received SSH_MSG_KEXDH_INIT
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_KEX_ECDH_REPLY sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=188,padding=8,comp=179,payload=179]
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=12,padding=10,comp=1,payload=1]
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_NEWKEYS sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 21 [len=12,padding=10,comp=1,payload=1]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 21
<7> [init] (tmate) [ssh_packet_newkeys] ssh_packet_newkeys: Received SSH_MSG_NEWKEYS
<8> [init] (tmate) [ssh_server_send_extensions] ssh_server_send_extensions: Sending SSH_MSG_EXT_INFO
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=156,padding=14,comp=141,payload=141]
<8> [init] (tmate) [ssh_handle_key_exchange] ssh_handle_key_exchange: ssh_handle_key_exchange: current state : 7
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket exception callback: 1 (0)
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket error: disconnected
<2> [init] (tmate) fatal: Error polling ssh socket: Socket error: disconnected
<6> (tmate) Child spawned pid=17, ip=172.17.0.1
<5> [init] (tmate) Bootstrapping ssh client ip=172.17.0.1
<6> [init] (tmate) Exchanging DH keys
<8> [init] (tmate) [ssh_socket_pollcallback] ssh_socket_pollcallback: Received POLLOUT in connecting state
<8> [init] (tmate) [callback_receive_banner] callback_receive_banner: Received banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_server_connection_callback] ssh_server_connection_callback: SSH client banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh_0.8.5
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=700,padding=4,comp=695,payload=695]
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 20 [len=700,padding=5,comp=694,payload=694]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 20
<8> [init] (tmate) [ssh_packet_kexinit] ssh_packet_kexinit: The client supports extension negotiation: enabling all extensions
<7> [init] (tmate) [ssh_kex_select_methods] ssh_kex_select_methods: Negotiated curve25519-sha256,ssh-ed25519,aes256-ctr,aes256-ctr,hmac-sha2-256,hmac-sha2-256,[email protected],[email protected],,
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set output algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC output algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set input algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC input algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling C->S delayed compression
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling S->C delayed compression
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: Processing 48 bytes left in socket buffer
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 30 [len=44,padding=6,comp=37,payload=37]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 30
<8> [init] (tmate) [ssh_packet_kexdh_init] ssh_packet_kexdh_init: Received SSH_MSG_KEXDH_INIT
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_KEX_ECDH_REPLY sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=188,padding=8,comp=179,payload=179]
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=12,padding=10,comp=1,payload=1]
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_NEWKEYS sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 21 [len=12,padding=10,comp=1,payload=1]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 21
<7> [init] (tmate) [ssh_packet_newkeys] ssh_packet_newkeys: Received SSH_MSG_NEWKEYS
<8> [init] (tmate) [ssh_server_send_extensions] ssh_server_send_extensions: Sending SSH_MSG_EXT_INFO
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=156,padding=14,comp=141,payload=141]
<8> [init] (tmate) [ssh_handle_key_exchange] ssh_handle_key_exchange: ssh_handle_key_exchange: current state : 7
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket exception callback: 1 (0)
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket error: disconnected
<2> [init] (tmate) fatal: Error polling ssh socket: Socket error: disconnected
<6> (tmate) Child spawned pid=18, ip=172.17.0.1
<5> [init] (tmate) Bootstrapping ssh client ip=172.17.0.1
<6> [init] (tmate) Exchanging DH keys
<8> [init] (tmate) [ssh_socket_pollcallback] ssh_socket_pollcallback: Received POLLOUT in connecting state
<8> [init] (tmate) [callback_receive_banner] callback_receive_banner: Received banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_server_connection_callback] ssh_server_connection_callback: SSH client banner: SSH-2.0-libssh_0.8.5
<6> [init] (tmate) [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh_0.8.5
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=700,padding=4,comp=695,payload=695]
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 20 [len=700,padding=5,comp=694,payload=694]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 20
<8> [init] (tmate) [ssh_packet_kexinit] ssh_packet_kexinit: The client supports extension negotiation: enabling all extensions
<7> [init] (tmate) [ssh_kex_select_methods] ssh_kex_select_methods: Negotiated curve25519-sha256,ssh-ed25519,aes256-ctr,aes256-ctr,hmac-sha2-256,hmac-sha2-256,[email protected],[email protected],,
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set output algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC output algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set input algorithm aes256-ctr
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: Set HMAC input algorithm to hmac-sha2-256
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling C->S delayed compression
<8> [init] (tmate) [crypt_set_algorithms_server] crypt_set_algorithms_server: enabling S->C delayed compression
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: Processing 48 bytes left in socket buffer
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 30 [len=44,padding=6,comp=37,payload=37]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 30
<8> [init] (tmate) [ssh_packet_kexdh_init] ssh_packet_kexdh_init: Received SSH_MSG_KEXDH_INIT
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_KEX_ECDH_REPLY sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=188,padding=8,comp=179,payload=179]
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=12,padding=10,comp=1,payload=1]
<7> [init] (tmate) [ssh_server_curve25519_init] ssh_server_curve25519_init: SSH_MSG_NEWKEYS sent
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [ssh_packet_socket_callback] ssh_packet_socket_callback: packet: read type 21 [len=12,padding=10,comp=1,payload=1]
<8> [init] (tmate) [ssh_packet_process] ssh_packet_process: Dispatching handler for packet type 21
<7> [init] (tmate) [ssh_packet_newkeys] ssh_packet_newkeys: Received SSH_MSG_NEWKEYS
<8> [init] (tmate) [ssh_server_send_extensions] ssh_server_send_extensions: Sending SSH_MSG_EXT_INFO
<8> [init] (tmate) [ssh_socket_unbuffered_write] ssh_socket_unbuffered_write: Enabling POLLOUT for socket
<8> [init] (tmate) [packet_send2] packet_send2: packet: wrote [len=156,padding=14,comp=141,payload=141]
<8> [init] (tmate) [ssh_handle_key_exchange] ssh_handle_key_exchange: ssh_handle_key_exchange: current state : 7
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket exception callback: 1 (0)
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket error: disconnected
<2> [init] (tmate) fatal: Error polling ssh socket: Socket error: disconnected

tmate -v server log
1547648459.315444 server started (11569): socket /tmp/tmate-1000/5hInvC, protocol 8
1547648459.315458 on Linux 4.19.13-300.fc29.x86_64 #1 SMP Sat Dec 29 22:54:28 UTC 2018; libevent 2.1.8-stable (epoll)
1547648459.315507 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315516 cmdq 0x55a1196a2650: bind-key C-b send-prefix
1547648459.315520 preparing state for bind-key C-b send-prefix (client (nil))
1547648459.315523 cmd_find_client: no target, return (nil)
1547648459.315526 preparing -t state: target none
1547648459.315537 preparing -s state: target none
1547648459.315550 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315554 cmdq 0x55a1196a2650: bind-key C-o rotate-window
1547648459.315557 preparing state for bind-key C-o rotate-window (client (nil))
1547648459.315559 cmd_find_client: no target, return (nil)
1547648459.315561 preparing -t state: target none
1547648459.315562 preparing -s state: target none
1547648459.315567 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315570 cmdq 0x55a1196a2650: bind-key C-z suspend-client
1547648459.315573 preparing state for bind-key C-z suspend-client (client (nil))
1547648459.315575 cmd_find_client: no target, return (nil)
1547648459.315577 preparing -t state: target none
1547648459.315579 preparing -s state: target none
1547648459.315584 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315587 cmdq 0x55a1196a2650: bind-key Space next-layout
1547648459.315590 preparing state for bind-key Space next-layout (client (nil))
1547648459.315592 cmd_find_client: no target, return (nil)
1547648459.315593 preparing -t state: target none
1547648459.315595 preparing -s state: target none
1547648459.315601 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315604 cmdq 0x55a1196a2650: bind-key ! break-pane
1547648459.315607 preparing state for bind-key ! break-pane (client (nil))
1547648459.315609 cmd_find_client: no target, return (nil)
1547648459.315610 preparing -t state: target none
1547648459.315612 preparing -s state: target none
1547648459.315616 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315619 cmdq 0x55a1196a2650: bind-key " split-window
1547648459.315621 preparing state for bind-key " split-window (client (nil))
1547648459.315623 cmd_find_client: no target, return (nil)
1547648459.315625 preparing -t state: target none
1547648459.315627 preparing -s state: target none
1547648459.315631 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315634 cmdq 0x55a1196a2650: bind-key # list-buffers
1547648459.315636 preparing state for bind-key # list-buffers (client (nil))
1547648459.315638 cmd_find_client: no target, return (nil)
1547648459.315640 preparing -t state: target none
1547648459.315642 preparing -s state: target none
1547648459.315648 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315653 cmdq 0x55a1196a2650: bind-key $ command-prompt -I#S "rename-session '%%'"
1547648459.315657 preparing state for bind-key $ command-prompt -I#S "rename-session '%%'" (client (nil))
1547648459.315659 cmd_find_client: no target, return (nil)
1547648459.315660 preparing -t state: target none
1547648459.315662 preparing -s state: target none
1547648459.315667 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315670 cmdq 0x55a1196a2650: bind-key % split-window -h
1547648459.315673 preparing state for bind-key % split-window -h (client (nil))
1547648459.315675 cmd_find_client: no target, return (nil)
1547648459.315677 preparing -t state: target none
1547648459.315678 preparing -s state: target none
1547648459.315684 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315688 cmdq 0x55a1196a2650: bind-key & confirm-before "-pkill-window #W? (y/n)" kill-window
1547648459.315693 preparing state for bind-key & confirm-before "-pkill-window #W? (y/n)" kill-window (client (nil))
1547648459.315695 cmd_find_client: no target, return (nil)
1547648459.315697 preparing -t state: target none
1547648459.315699 preparing -s state: target none
1547648459.315703 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315711 cmdq 0x55a1196a2650: bind-key ' command-prompt -pindex "select-window -t ':%%'"
1547648459.315714 preparing state for bind-key ' command-prompt -pindex "select-window -t ':%%'" (client (nil))
1547648459.315716 cmd_find_client: no target, return (nil)
1547648459.315718 preparing -t state: target none
1547648459.315720 preparing -s state: target none
1547648459.315724 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315727 cmdq 0x55a1196a2650: bind-key ( switch-client -p
1547648459.315730 preparing state for bind-key ( switch-client -p (client (nil))
1547648459.315732 cmd_find_client: no target, return (nil)
1547648459.315734 preparing -t state: target none
1547648459.315735 preparing -s state: target none
1547648459.315740 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315743 cmdq 0x55a1196a2650: bind-key ) switch-client -n
1547648459.315747 preparing state for bind-key ) switch-client -n (client (nil))
1547648459.315749 cmd_find_client: no target, return (nil)
1547648459.315751 preparing -t state: target none
1547648459.315753 preparing -s state: target none
1547648459.315758 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315762 cmdq 0x55a1196a2650: bind-key , command-prompt -I#W "rename-window '%%'"
1547648459.315766 preparing state for bind-key , command-prompt -I#W "rename-window '%%'" (client (nil))
1547648459.315768 cmd_find_client: no target, return (nil)
1547648459.315769 preparing -t state: target none
1547648459.315771 preparing -s state: target none
1547648459.315775 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315778 cmdq 0x55a1196a2650: bind-key - delete-buffer
1547648459.315780 preparing state for bind-key - delete-buffer (client (nil))
1547648459.315782 cmd_find_client: no target, return (nil)
1547648459.315784 preparing -t state: target none
1547648459.315785 preparing -s state: target none
1547648459.315790 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315794 cmdq 0x55a1196a2650: bind-key . command-prompt "move-window -t '%%'"
1547648459.315797 preparing state for bind-key . command-prompt "move-window -t '%%'" (client (nil))
1547648459.315799 cmd_find_client: no target, return (nil)
1547648459.315801 preparing -t state: target none
1547648459.315802 preparing -s state: target none
1547648459.315806 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315810 cmdq 0x55a1196a2650: bind-key 0 select-window -t:=0
1547648459.315812 preparing state for bind-key 0 select-window -t:=0 (client (nil))
1547648459.315814 cmd_find_client: no target, return (nil)
1547648459.315816 preparing -t state: target none
1547648459.315818 preparing -s state: target none
1547648459.315822 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315825 cmdq 0x55a1196a2650: bind-key 1 select-window -t:=1
1547648459.315828 preparing state for bind-key 1 select-window -t:=1 (client (nil))
1547648459.315830 cmd_find_client: no target, return (nil)
1547648459.315832 preparing -t state: target none
1547648459.315833 preparing -s state: target none
1547648459.315838 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315841 cmdq 0x55a1196a2650: bind-key 2 select-window -t:=2
1547648459.315844 preparing state for bind-key 2 select-window -t:=2 (client (nil))
1547648459.315846 cmd_find_client: no target, return (nil)
1547648459.315848 preparing -t state: target none
1547648459.315850 preparing -s state: target none
1547648459.315854 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315857 cmdq 0x55a1196a2650: bind-key 3 select-window -t:=3
1547648459.315860 preparing state for bind-key 3 select-window -t:=3 (client (nil))
1547648459.315862 cmd_find_client: no target, return (nil)
1547648459.315864 preparing -t state: target none
1547648459.315865 preparing -s state: target none
1547648459.315870 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315873 cmdq 0x55a1196a2650: bind-key 4 select-window -t:=4
1547648459.315875 preparing state for bind-key 4 select-window -t:=4 (client (nil))
1547648459.315879 cmd_find_client: no target, return (nil)
1547648459.315881 preparing -t state: target none
1547648459.315883 preparing -s state: target none
1547648459.315888 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315891 cmdq 0x55a1196a2650: bind-key 5 select-window -t:=5
1547648459.315893 preparing state for bind-key 5 select-window -t:=5 (client (nil))
1547648459.315895 cmd_find_client: no target, return (nil)
1547648459.315897 preparing -t state: target none
1547648459.315899 preparing -s state: target none
1547648459.315905 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315908 cmdq 0x55a1196a2650: bind-key 6 select-window -t:=6
1547648459.315911 preparing state for bind-key 6 select-window -t:=6 (client (nil))
1547648459.315913 cmd_find_client: no target, return (nil)
1547648459.315915 preparing -t state: target none
1547648459.315916 preparing -s state: target none
1547648459.315921 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315925 cmdq 0x55a1196a2650: bind-key 7 select-window -t:=7
1547648459.315927 preparing state for bind-key 7 select-window -t:=7 (client (nil))
1547648459.315929 cmd_find_client: no target, return (nil)
1547648459.315931 preparing -t state: target none
1547648459.315933 preparing -s state: target none
1547648459.315937 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315941 cmdq 0x55a1196a2650: bind-key 8 select-window -t:=8
1547648459.315943 preparing state for bind-key 8 select-window -t:=8 (client (nil))
1547648459.315945 cmd_find_client: no target, return (nil)
1547648459.315947 preparing -t state: target none
1547648459.315949 preparing -s state: target none
1547648459.315954 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315957 cmdq 0x55a1196a2650: bind-key 9 select-window -t:=9
1547648459.315959 preparing state for bind-key 9 select-window -t:=9 (client (nil))
1547648459.315961 cmd_find_client: no target, return (nil)
1547648459.315963 preparing -t state: target none
1547648459.315965 preparing -s state: target none
1547648459.315970 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.315973 cmdq 0x55a1196a2650: bind-key : command-prompt
1547648459.315975 preparing state for bind-key : command-prompt (client (nil))
1547648459.315977 cmd_find_client: no target, return (nil)
1547648459.315986 preparing -t state: target none
1547648459.315989 preparing -s state: target none
1547648459.316008 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316011 cmdq 0x55a1196a2650: bind-key ; last-pane
1547648459.316014 preparing state for bind-key ; last-pane (client (nil))
1547648459.316025 cmd_find_client: no target, return (nil)
1547648459.316027 preparing -t state: target none
1547648459.316029 preparing -s state: target none
1547648459.316033 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316042 cmdq 0x55a1196a2650: bind-key = choose-buffer
1547648459.316045 preparing state for bind-key = choose-buffer (client (nil))
1547648459.316047 cmd_find_client: no target, return (nil)
1547648459.316049 preparing -t state: target none
1547648459.316051 preparing -s state: target none
1547648459.316054 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316057 cmdq 0x55a1196a2650: bind-key ? list-keys
1547648459.316059 preparing state for bind-key ? list-keys (client (nil))
1547648459.316061 cmd_find_client: no target, return (nil)
1547648459.316063 preparing -t state: target none
1547648459.316065 preparing -s state: target none
1547648459.316068 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316071 cmdq 0x55a1196a2650: bind-key D choose-client
1547648459.316074 preparing state for bind-key D choose-client (client (nil))
1547648459.316076 cmd_find_client: no target, return (nil)
1547648459.316078 preparing -t state: target none
1547648459.316080 preparing -s state: target none
1547648459.316084 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316087 cmdq 0x55a1196a2650: bind-key L switch-client -l
1547648459.316092 preparing state for bind-key L switch-client -l (client (nil))
1547648459.316094 cmd_find_client: no target, return (nil)
1547648459.316096 preparing -t state: target none
1547648459.316098 preparing -s state: target none
1547648459.316103 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316107 cmdq 0x55a1196a2650: bind-key M select-pane -M
1547648459.316110 preparing state for bind-key M select-pane -M (client (nil))
1547648459.316112 cmd_find_client: no target, return (nil)
1547648459.316114 preparing -t state: target none
1547648459.316115 preparing -s state: target none
1547648459.316120 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316123 cmdq 0x55a1196a2650: bind-key [ copy-mode
1547648459.316126 preparing state for bind-key [ copy-mode (client (nil))
1547648459.316128 cmd_find_client: no target, return (nil)
1547648459.316129 preparing -t state: target none
1547648459.316131 preparing -s state: target none
1547648459.316135 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316138 cmdq 0x55a1196a2650: bind-key ] paste-buffer
1547648459.316140 preparing state for bind-key ] paste-buffer (client (nil))
1547648459.316142 cmd_find_client: no target, return (nil)
1547648459.316144 preparing -t state: target none
1547648459.316146 preparing -s state: target none
1547648459.316150 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316153 cmdq 0x55a1196a2650: bind-key c new-window
1547648459.316156 preparing state for bind-key c new-window (client (nil))
1547648459.316158 cmd_find_client: no target, return (nil)
1547648459.316160 preparing -t state: target none
1547648459.316161 preparing -s state: target none
1547648459.316165 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316168 cmdq 0x55a1196a2650: bind-key d detach-client
1547648459.316172 preparing state for bind-key d detach-client (client (nil))
1547648459.316174 cmd_find_client: no target, return (nil)
1547648459.316176 preparing -t state: target none
1547648459.316178 preparing -s state: target none
1547648459.316182 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316186 cmdq 0x55a1196a2650: bind-key f command-prompt "find-window '%%'"
1547648459.316190 preparing state for bind-key f command-prompt "find-window '%%'" (client (nil))
1547648459.316192 cmd_find_client: no target, return (nil)
1547648459.316193 preparing -t state: target none
1547648459.316195 preparing -s state: target none
1547648459.316199 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316202 cmdq 0x55a1196a2650: bind-key i display-message
1547648459.316205 preparing state for bind-key i display-message (client (nil))
1547648459.316207 cmd_find_client: no target, return (nil)
1547648459.316208 preparing -t state: target none
1547648459.316210 preparing -s state: target none
1547648459.316214 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316217 cmdq 0x55a1196a2650: bind-key l last-window
1547648459.316220 preparing state for bind-key l last-window (client (nil))
1547648459.316222 cmd_find_client: no target, return (nil)
1547648459.316223 preparing -t state: target none
1547648459.316225 preparing -s state: target none
1547648459.316229 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316233 cmdq 0x55a1196a2650: bind-key m select-pane -m
1547648459.316236 preparing state for bind-key m select-pane -m (client (nil))
1547648459.316238 cmd_find_client: no target, return (nil)
1547648459.316240 preparing -t state: target none
1547648459.316241 preparing -s state: target none
1547648459.316246 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316249 cmdq 0x55a1196a2650: bind-key n next-window
1547648459.316251 preparing state for bind-key n next-window (client (nil))
1547648459.316253 cmd_find_client: no target, return (nil)
1547648459.316255 preparing -t state: target none
1547648459.316257 preparing -s state: target none
1547648459.316261 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316267 cmdq 0x55a1196a2650: bind-key o select-pane -t:.+
1547648459.316270 preparing state for bind-key o select-pane -t:.+ (client (nil))
1547648459.316272 cmd_find_client: no target, return (nil)
1547648459.316274 preparing -t state: target none
1547648459.316276 preparing -s state: target none
1547648459.316280 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316283 cmdq 0x55a1196a2650: bind-key p previous-window
1547648459.316286 preparing state for bind-key p previous-window (client (nil))
1547648459.316288 cmd_find_client: no target, return (nil)
1547648459.316290 preparing -t state: target none
1547648459.316291 preparing -s state: target none
1547648459.316295 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316298 cmdq 0x55a1196a2650: bind-key q display-panes
1547648459.316301 preparing state for bind-key q display-panes (client (nil))
1547648459.316303 cmd_find_client: no target, return (nil)
1547648459.316305 preparing -t state: target none
1547648459.316306 preparing -s state: target none
1547648459.316310 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316313 cmdq 0x55a1196a2650: bind-key r refresh-client
1547648459.316316 preparing state for bind-key r refresh-client (client (nil))
1547648459.316318 cmd_find_client: no target, return (nil)
1547648459.316320 preparing -t state: target none
1547648459.316321 preparing -s state: target none
1547648459.316326 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316329 cmdq 0x55a1196a2650: bind-key s choose-tree
1547648459.316331 preparing state for bind-key s choose-tree (client (nil))
1547648459.316333 cmd_find_client: no target, return (nil)
1547648459.316335 preparing -t state: target none
1547648459.316337 preparing -s state: target none
1547648459.316340 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316343 cmdq 0x55a1196a2650: bind-key t clock-mode
1547648459.316346 preparing state for bind-key t clock-mode (client (nil))
1547648459.316348 cmd_find_client: no target, return (nil)
1547648459.316349 preparing -t state: target none
1547648459.316351 preparing -s state: target none
1547648459.316356 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316359 cmdq 0x55a1196a2650: bind-key w choose-window
1547648459.316362 preparing state for bind-key w choose-window (client (nil))
1547648459.316364 cmd_find_client: no target, return (nil)
1547648459.316365 preparing -t state: target none
1547648459.316367 preparing -s state: target none
1547648459.316372 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316376 cmdq 0x55a1196a2650: bind-key x confirm-before "-pkill-pane #P? (y/n)" kill-pane
1547648459.316380 preparing state for bind-key x confirm-before "-pkill-pane #P? (y/n)" kill-pane (client (nil))
1547648459.316382 cmd_find_client: no target, return (nil)
1547648459.316384 preparing -t state: target none
1547648459.316385 preparing -s state: target none
1547648459.316390 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316393 cmdq 0x55a1196a2650: bind-key z resize-pane -Z
1547648459.316396 preparing state for bind-key z resize-pane -Z (client (nil))
1547648459.316398 cmd_find_client: no target, return (nil)
1547648459.316400 preparing -t state: target none
1547648459.316402 preparing -s state: target none
1547648459.316406 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316410 cmdq 0x55a1196a2650: bind-key { swap-pane -U
1547648459.316413 preparing state for bind-key { swap-pane -U (client (nil))
1547648459.316414 cmd_find_client: no target, return (nil)
1547648459.316416 preparing -t state: target none
1547648459.316418 preparing -s state: target none
1547648459.316423 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316426 cmdq 0x55a1196a2650: bind-key } swap-pane -D
1547648459.316429 preparing state for bind-key } swap-pane -D (client (nil))
1547648459.316431 cmd_find_client: no target, return (nil)
1547648459.316433 preparing -t state: target none
1547648459.316435 preparing -s state: target none
1547648459.316443 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316446 cmdq 0x55a1196a2650: bind-key ~ show-messages
1547648459.316449 preparing state for bind-key ~ show-messages (client (nil))
1547648459.316451 cmd_find_client: no target, return (nil)
1547648459.316453 preparing -t state: target none
1547648459.316455 preparing -s state: target none
1547648459.316459 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316463 cmdq 0x55a1196a2650: bind-key PPage copy-mode -u
1547648459.316466 preparing state for bind-key PPage copy-mode -u (client (nil))
1547648459.316468 cmd_find_client: no target, return (nil)
1547648459.316470 preparing -t state: target none
1547648459.316472 preparing -s state: target none
1547648459.316476 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316481 cmdq 0x55a1196a2650: bind-key -r Up select-pane -U
1547648459.316485 preparing state for bind-key -r Up select-pane -U (client (nil))
1547648459.316487 cmd_find_client: no target, return (nil)
1547648459.316488 preparing -t state: target none
1547648459.316490 preparing -s state: target none
1547648459.316496 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316500 cmdq 0x55a1196a2650: bind-key -r Down select-pane -D
1547648459.316504 preparing state for bind-key -r Down select-pane -D (client (nil))
1547648459.316506 cmd_find_client: no target, return (nil)
1547648459.316508 preparing -t state: target none
1547648459.316509 preparing -s state: target none
1547648459.316515 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316519 cmdq 0x55a1196a2650: bind-key -r Left select-pane -L
1547648459.316523 preparing state for bind-key -r Left select-pane -L (client (nil))
1547648459.316525 cmd_find_client: no target, return (nil)
1547648459.316527 preparing -t state: target none
1547648459.316529 preparing -s state: target none
1547648459.316534 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316538 cmdq 0x55a1196a2650: bind-key -r Right select-pane -R
1547648459.316542 preparing state for bind-key -r Right select-pane -R (client (nil))
1547648459.316544 cmd_find_client: no target, return (nil)
1547648459.316546 preparing -t state: target none
1547648459.316547 preparing -s state: target none
1547648459.316552 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316556 cmdq 0x55a1196a2650: bind-key M-1 select-layout even-horizontal
1547648459.316559 preparing state for bind-key M-1 select-layout even-horizontal (client (nil))
1547648459.316561 cmd_find_client: no target, return (nil)
1547648459.316563 preparing -t state: target none
1547648459.316565 preparing -s state: target none
1547648459.316570 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316573 cmdq 0x55a1196a2650: bind-key M-2 select-layout even-vertical
1547648459.316576 preparing state for bind-key M-2 select-layout even-vertical (client (nil))
1547648459.316578 cmd_find_client: no target, return (nil)
1547648459.316580 preparing -t state: target none
1547648459.316581 preparing -s state: target none
1547648459.316586 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316590 cmdq 0x55a1196a2650: bind-key M-3 select-layout main-horizontal
1547648459.316593 preparing state for bind-key M-3 select-layout main-horizontal (client (nil))
1547648459.316595 cmd_find_client: no target, return (nil)
1547648459.316597 preparing -t state: target none
1547648459.316599 preparing -s state: target none
1547648459.316603 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316607 cmdq 0x55a1196a2650: bind-key M-4 select-layout main-vertical
1547648459.316610 preparing state for bind-key M-4 select-layout main-vertical (client (nil))
1547648459.316611 cmd_find_client: no target, return (nil)
1547648459.316613 preparing -t state: target none
1547648459.316615 preparing -s state: target none
1547648459.316619 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316623 cmdq 0x55a1196a2650: bind-key M-5 select-layout tiled
1547648459.316626 preparing state for bind-key M-5 select-layout tiled (client (nil))
1547648459.316630 cmd_find_client: no target, return (nil)
1547648459.316632 preparing -t state: target none
1547648459.316634 preparing -s state: target none
1547648459.316638 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316641 cmdq 0x55a1196a2650: bind-key M-n next-window -a
1547648459.316644 preparing state for bind-key M-n next-window -a (client (nil))
1547648459.316646 cmd_find_client: no target, return (nil)
1547648459.316648 preparing -t state: target none
1547648459.316650 preparing -s state: target none
1547648459.316654 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316657 cmdq 0x55a1196a2650: bind-key M-o rotate-window -D
1547648459.316660 preparing state for bind-key M-o rotate-window -D (client (nil))
1547648459.316662 cmd_find_client: no target, return (nil)
1547648459.316664 preparing -t state: target none
1547648459.316665 preparing -s state: target none
1547648459.316670 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316673 cmdq 0x55a1196a2650: bind-key M-p previous-window -a
1547648459.316676 preparing state for bind-key M-p previous-window -a (client (nil))
1547648459.316678 cmd_find_client: no target, return (nil)
1547648459.316680 preparing -t state: target none
1547648459.316682 preparing -s state: target none
1547648459.316687 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316692 cmdq 0x55a1196a2650: bind-key -r M-Up resize-pane -U 5
1547648459.316696 preparing state for bind-key -r M-Up resize-pane -U 5 (client (nil))
1547648459.316698 cmd_find_client: no target, return (nil)
1547648459.316700 preparing -t state: target none
1547648459.316702 preparing -s state: target none
1547648459.316708 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316712 cmdq 0x55a1196a2650: bind-key -r M-Down resize-pane -D 5
1547648459.316716 preparing state for bind-key -r M-Down resize-pane -D 5 (client (nil))
1547648459.316718 cmd_find_client: no target, return (nil)
1547648459.316720 preparing -t state: target none
1547648459.316721 preparing -s state: target none
1547648459.316727 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316731 cmdq 0x55a1196a2650: bind-key -r M-Left resize-pane -L 5
1547648459.316735 preparing state for bind-key -r M-Left resize-pane -L 5 (client (nil))
1547648459.316737 cmd_find_client: no target, return (nil)
1547648459.316739 preparing -t state: target none
1547648459.316740 preparing -s state: target none
1547648459.316745 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316750 cmdq 0x55a1196a2650: bind-key -r M-Right resize-pane -R 5
1547648459.316754 preparing state for bind-key -r M-Right resize-pane -R 5 (client (nil))
1547648459.316756 cmd_find_client: no target, return (nil)
1547648459.316757 preparing -t state: target none
1547648459.316759 preparing -s state: target none
1547648459.316765 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316769 cmdq 0x55a1196a2650: bind-key -r C-Up resize-pane -U
1547648459.316773 preparing state for bind-key -r C-Up resize-pane -U (client (nil))
1547648459.316775 cmd_find_client: no target, return (nil)
1547648459.316777 preparing -t state: target none
1547648459.316778 preparing -s state: target none
1547648459.316783 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316787 cmdq 0x55a1196a2650: bind-key -r C-Down resize-pane -D
1547648459.316790 preparing state for bind-key -r C-Down resize-pane -D (client (nil))
1547648459.316792 cmd_find_client: no target, return (nil)
1547648459.316794 preparing -t state: target none
1547648459.316796 preparing -s state: target none
1547648459.316801 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316805 cmdq 0x55a1196a2650: bind-key -r C-Left resize-pane -L
1547648459.316808 preparing state for bind-key -r C-Left resize-pane -L (client (nil))
1547648459.316810 cmd_find_client: no target, return (nil)
1547648459.316812 preparing -t state: target none
1547648459.316813 preparing -s state: target none
1547648459.316820 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316824 cmdq 0x55a1196a2650: bind-key -r C-Right resize-pane -R
1547648459.316828 preparing state for bind-key -r C-Right resize-pane -R (client (nil))
1547648459.316830 cmd_find_client: no target, return (nil)
1547648459.316831 preparing -t state: target none
1547648459.316833 preparing -s state: target none
1547648459.316839 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316844 cmdq 0x55a1196a2650: bind-key -n MouseDown1Pane select-pane -t=; send-keys -M
1547648459.316849 preparing state for bind-key -n MouseDown1Pane select-pane -t=; send-keys -M (client (nil))
1547648459.316851 cmd_find_client: no target, return (nil)
1547648459.316852 preparing -t state: target none
1547648459.316854 preparing -s state: target none
1547648459.316863 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316867 cmdq 0x55a1196a2650: bind-key -n MouseDrag1Border resize-pane -M
1547648459.316871 preparing state for bind-key -n MouseDrag1Border resize-pane -M (client (nil))
1547648459.316873 cmd_find_client: no target, return (nil)
1547648459.316874 preparing -t state: target none
1547648459.316876 preparing -s state: target none
1547648459.316882 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316887 cmdq 0x55a1196a2650: bind-key -n MouseDown1Status select-window -t=
1547648459.316890 preparing state for bind-key -n MouseDown1Status select-window -t= (client (nil))
1547648459.316892 cmd_find_client: no target, return (nil)
1547648459.316894 preparing -t state: target none
1547648459.316895 preparing -s state: target none
1547648459.316901 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316905 cmdq 0x55a1196a2650: bind-key -n WheelDownStatus next-window
1547648459.316908 preparing state for bind-key -n WheelDownStatus next-window (client (nil))
1547648459.316910 cmd_find_client: no target, return (nil)
1547648459.316911 preparing -t state: target none
1547648459.316913 preparing -s state: target none
1547648459.316918 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316922 cmdq 0x55a1196a2650: bind-key -n WheelUpStatus previous-window
1547648459.316926 preparing state for bind-key -n WheelUpStatus previous-window (client (nil))
1547648459.316928 cmd_find_client: no target, return (nil)
1547648459.316929 preparing -t state: target none
1547648459.316931 preparing -s state: target none
1547648459.316939 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316948 cmdq 0x55a1196a2650: bind-key -n MouseDrag1Pane if -Ft= #{mouse_any_flag} "if -Ft= "#{pane_in_mode}" "copy-mode -M" "send-keys -M"" "copy-mode -M"
1547648459.316954 preparing state for bind-key -n MouseDrag1Pane if -Ft= #{mouse_any_flag} "if -Ft= "#{pane_in_mode}" "copy-mode -M" "send-keys -M"" "copy-mode -M" (client (nil))
1547648459.316956 cmd_find_client: no target, return (nil)
1547648459.316958 preparing -t state: target none
1547648459.316959 preparing -s state: target none
1547648459.316967 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.316974 cmdq 0x55a1196a2650: bind-key -n MouseDown3Pane if-shell -Ft= #{mouse_any_flag} "select-pane -t=; send-keys -M" "select-pane -mt="
1547648459.316987 preparing state for bind-key -n MouseDown3Pane if-shell -Ft= #{mouse_any_flag} "select-pane -t=; send-keys -M" "select-pane -mt=" (client (nil))
1547648459.317007 cmd_find_client: no target, return (nil)
1547648459.317009 preparing -t state: target none
1547648459.317011 preparing -s state: target none
1547648459.317029 continuing cmdq 0x55a1196a2650: flags 0, client (nil)
1547648459.317037 cmdq 0x55a1196a2650: bind-key -n WheelUpPane if-shell -Ft= #{mouse_any_flag} "send-keys -M" "if -Ft= "#{pane_in_mode}" "send-keys -M" "copy-mode -et=""
1547648459.317043 preparing state for bind-key -n WheelUpPane if-shell -Ft= #{mouse_any_flag} "send-keys -M" "if -Ft= "#{pane_in_mode}" "send-keys -M" "copy-mode -et="" (client (nil))
1547648459.317045 cmd_find_client: no target, return (nil)
1547648459.317049 preparing -t state: target none
1547648459.317051 preparing -s state: target none
1547648459.317120 add peer 0x55a1196b2d90: 9 (0x55a1196b27b0)
1547648459.317128 new client 0x55a1196b27b0
1547648459.317231 loading /home/chriswaldon/.tmux.conf
1547648459.317245 /home/chriswaldon/.tmux.conf: set -g mouse on
1547648459.317250 /home/chriswaldon/.tmux.conf: set -g escape-time 0
1547648459.317255 /home/chriswaldon/.tmux.conf: set -g prefix C-a
1547648459.317259 /home/chriswaldon/.tmux.conf: 
1547648459.317261 /home/chriswaldon/.tmux.conf: bind C-a send-prefix
1547648459.317264 /home/chriswaldon/.tmux.conf: unbind C-b
1547648459.317269 /home/chriswaldon/.tmux.conf: 
1547648459.317271 /home/chriswaldon/.tmux.conf: bind -n C-h select-pane -L
1547648459.317275 /home/chriswaldon/.tmux.conf: bind -n C-j select-pane -D
1547648459.317280 /home/chriswaldon/.tmux.conf: bind -n C-k select-pane -U
1547648459.317283 /home/chriswaldon/.tmux.conf: bind -n C-l select-pane -R
1547648459.317286 /home/chriswaldon/.tmux.conf: 
1547648459.317289 /home/chriswaldon/.tmux.conf: bind h split-window -v
1547648459.317292 /home/chriswaldon/.tmux.conf: bind v split-window -h
1547648459.317295 /home/chriswaldon/.tmux.conf: 
1547648459.317297 /home/chriswaldon/.tmux.conf: set -g default-command "env SHELL=fish rover"
1547648459.317301 /home/chriswaldon/.tmux.conf: 
1547648459.317304 /home/chriswaldon/.tmux.conf: set -g default-terminal screen-256color
1547648459.317308 /home/chriswaldon/.tmux.conf: 
1547648459.317310 /home/chriswaldon/.tmux.conf: setw -g mode-keys vi
1547648459.317316 /home/chriswaldon/.tmux.conf: bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel "xclip -i -f -selection primary | xclip -i -selection clipboard"
1547648459.317324 /home/chriswaldon/.tmux.conf: bind-key -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel "xclip -i -f -selection primary | xclip -i -selection clipboard"
1547648459.317335 loading /home/chriswaldon/.tmate.conf
1547648459.317545 /home/chriswaldon/.tmate.conf: set -g tmate-server-host "localhost"
1547648459.317577 /home/chriswaldon/.tmate.conf: set -g tmate-server-port 2222
1547648459.317582 /home/chriswaldon/.tmate.conf: set -g tmate-server-rsa-fingerprint "4a:f9:37:42:fa:fa:5b:c8:45:fb:59:da:d4:47:f7:b1"
1547648459.317589 /home/chriswaldon/.tmate.conf: set -g tmate-server-ecdsa-fingerprint "2d:26:8a:ff:0f:97:ff:26:90:25:68:ec:3d:e0:15:64"
1547648459.317596 continuing cmdq 0x55a1196c31a0: flags 0, client (nil)
1547648459.317601 cmdq 0x55a1196c31a0: set-option -g mouse on
1547648459.317605 preparing state for set-option -g mouse on (client (nil))
1547648459.317607 cmd_find_client: no target, return (nil)
1547648459.317609 preparing -t state: target none
1547648459.317611 cmd_prepare_state_flag: flag t 8 0x2
1547648459.317613 cmd_find_target: target none, type 1
1547648459.317615 cmd_find_target: cmdq 0x55a1196c31a0, flags 0x2
1547648459.317617 cmd_find_target: s=none
1547648459.317619 cmd_find_target: wl=none
1547648459.317621 cmd_find_target: wp=none
1547648459.317623 cmd_find_target: idx=none
1547648459.317625 preparing -s state: target none
1547648459.317635 cmdq 0x55a1196c31a0: set-option -g escape-time 0
1547648459.317638 preparing state for set-option -g escape-time 0 (client (nil))
1547648459.317640 cmd_find_client: no target, return (nil)
1547648459.317642 preparing -t state: target none
1547648459.317644 cmd_prepare_state_flag: flag t 8 0x2
1547648459.317646 cmd_find_target: target none, type 1
1547648459.317648 cmd_find_target: cmdq 0x55a1196c31a0, flags 0x2
1547648459.317650 cmd_find_target: s=none
1547648459.317651 cmd_find_target: wl=none
1547648459.317653 cmd_find_target: wp=none
1547648459.317655 cmd_find_target: idx=none
1547648459.317657 preparing -s state: target none
1547648459.317664 cmdq 0x55a1196c31a0: set-option -g prefix C-a
1547648459.317667 preparing state for set-option -g prefix C-a (client (nil))
1547648459.317669 cmd_find_client: no target, return (nil)
1547648459.317671 preparing -t state: target none
1547648459.317673 cmd_prepare_state_flag: flag t 8 0x2
1547648459.317678 cmd_find_target: target none, type 1
1547648459.317680 cmd_find_target: cmdq 0x55a1196c31a0, flags 0x2
1547648459.317682 cmd_find_target: s=none
1547648459.317683 cmd_find_target: wl=none
1547648459.317685 cmd_find_target: wp=none
1547648459.317687 cmd_find_target: idx=none
1547648459.317688 preparing -s state: target none
1547648459.317693 cmdq 0x55a1196c31a0: bind-key C-a send-prefix
1547648459.317695 preparing state for bind-key C-a send-prefix (client (nil))
1547648459.317697 cmd_find_client: no target, return (nil)
1547648459.317699 preparing -t state: target none
1547648459.317701 preparing -s state: target none
1547648459.317706 cmdq 0x55a1196c31a0: unbind-key C-b
1547648459.317708 preparing state for unbind-key C-b (client (nil))
1547648459.317710 cmd_find_client: no target, return (nil)
1547648459.317712 preparing -t state: target none
1547648459.317713 preparing -s state: target none
1547648459.317718 cmdq 0x55a1196c31a0: bind-key -n C-h select-pane -L
1547648459.317721 preparing state for bind-key -n C-h select-pane -L (client (nil))
1547648459.317723 cmd_find_client: no target, return (nil)
1547648459.317725 preparing -t state: target none
1547648459.317727 preparing -s state: target none
1547648459.317732 cmdq 0x55a1196c31a0: bind-key -n C-j select-pane -D
1547648459.317735 preparing state for bind-key -n C-j select-pane -D (client (nil))
1547648459.317737 cmd_find_client: no target, return (nil)
1547648459.317739 preparing -t state: target none
1547648459.317741 preparing -s state: target none
1547648459.317746 cmdq 0x55a1196c31a0: bind-key -n C-k select-pane -U
1547648459.317749 preparing state for bind-key -n C-k select-pane -U (client (nil))
1547648459.317751 cmd_find_client: no target, return (nil)
1547648459.317753 preparing -t state: target none
1547648459.317755 preparing -s state: target none
1547648459.317760 cmdq 0x55a1196c31a0: bind-key -n C-l select-pane -R
1547648459.317763 preparing state for bind-key -n C-l select-pane -R (client (nil))
1547648459.317765 cmd_find_client: no target, return (nil)
1547648459.317768 preparing -t state: target none
1547648459.317770 preparing -s state: target none
1547648459.317775 cmdq 0x55a1196c31a0: bind-key h split-window -v
1547648459.317778 preparing state for bind-key h split-window -v (client (nil))
1547648459.317779 cmd_find_client: no target, return (nil)
1547648459.317781 preparing -t state: target none
1547648459.317783 preparing -s state: target none
1547648459.317788 cmdq 0x55a1196c31a0: bind-key v split-window -h
1547648459.317790 preparing state for bind-key v split-window -h (client (nil))
1547648459.317792 cmd_find_client: no target, return (nil)
1547648459.317794 preparing -t state: target none
1547648459.317796 preparing -s state: target none
1547648459.317801 cmdq 0x55a1196c31a0: set-option -g default-command "env SHELL=fish rover"
1547648459.317804 preparing state for set-option -g default-command "env SHELL=fish rover" (client (nil))
1547648459.317806 cmd_find_client: no target, return (nil)
1547648459.317808 preparing -t state: target none
1547648459.317810 cmd_prepare_state_flag: flag t 8 0x2
1547648459.317812 cmd_find_target: target none, type 1
1547648459.317814 cmd_find_target: cmdq 0x55a1196c31a0, flags 0x2
1547648459.317815 cmd_find_target: s=none
1547648459.317817 cmd_find_target: wl=none
1547648459.317819 cmd_find_target: wp=none
1547648459.317820 cmd_find_target: idx=none
1547648459.317822 preparing -s state: target none
1547648459.317828 cmdq 0x55a1196c31a0: set-option -g default-terminal screen-256color
1547648459.317831 preparing state for set-option -g default-terminal screen-256color (client (nil))
1547648459.317833 cmd_find_client: no target, return (nil)
1547648459.317835 preparing -t state: target none
1547648459.317837 cmd_prepare_state_flag: flag t 8 0x2
1547648459.317840 cmd_find_target: target none, type 1
1547648459.317842 cmd_find_target: cmdq 0x55a1196c31a0, flags 0x2
1547648459.317843 cmd_find_target: s=none
1547648459.317845 cmd_find_target: wl=none
1547648459.317847 cmd_find_target: wp=none
1547648459.317850 cmd_find_target: idx=none
1547648459.317852 preparing -s state: target none
1547648459.317857 cmdq 0x55a1196c31a0: set-window-option -g mode-keys vi
1547648459.317860 preparing state for set-window-option -g mode-keys vi (client (nil))
1547648459.317862 cmd_find_client: no target, return (nil)
1547648459.317863 preparing -t state: target none
1547648459.317865 cmd_prepare_state_flag: flag t 8 0x2
1547648459.317867 cmd_find_target: target none, type 1
1547648459.317869 cmd_find_target: cmdq 0x55a1196c31a0, flags 0x2
1547648459.317871 cmd_find_target: s=none
1547648459.317872 cmd_find_target: wl=none
1547648459.317874 cmd_find_target: wp=none
1547648459.317876 cmd_find_target: idx=none
1547648459.317877 preparing -s state: target none
1547648459.317887 cmdq 0x55a1196c31a0: bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel "xclip -i -f -selection primary | xclip -i -selection clipboard"
1547648459.317893 preparing state for bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel "xclip -i -f -selection primary | xclip -i -selection clipboard" (client (nil))
1547648459.317895 cmd_find_client: no target, return (nil)
1547648459.317897 preparing -t state: target none
1547648459.317898 preparing -s state: target none
1547648459.317916 cmdq 0x55a1196c31a0: bind-key -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel "xclip -i -f -selection primary | xclip -i -selection clipboard"
1547648459.317921 preparing state for bind-key -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel "xclip -i -f -selection primary | xclip -i -selection clipboard" (client (nil))
1547648459.317924 cmd_find_client: no target, return (nil)
1547648459.317925 preparing -t state: target none
1547648459.317927 preparing -s state: target none
1547648459.317934 cmdq 0x55a1196c31a0: set-option -g tmate-server-host localhost
1547648459.317937 preparing state for set-option -g tmate-server-host localhost (client (nil))
1547648459.317939 cmd_find_client: no target, return (nil)
1547648459.317941 preparing -t state: target none
1547648459.317943 cmd_prepare_state_flag: flag t 8 0x2
1547648459.317945 cmd_find_target: target none, type 1
1547648459.317947 cmd_find_target: cmdq 0x55a1196c31a0, flags 0x2
1547648459.317949 cmd_find_target: s=none
1547648459.317950 cmd_find_target: wl=none
1547648459.317952 cmd_find_target: wp=none
1547648459.317954 cmd_find_target: idx=none
1547648459.317955 preparing -s state: target none
1547648459.317960 cmdq 0x55a1196c31a0: set-option -g tmate-server-port 2222
1547648459.317964 preparing state for set-option -g tmate-server-port 2222 (client (nil))
1547648459.317966 cmd_find_client: no target, return (nil)
1547648459.317967 preparing -t state: target none
1547648459.317969 cmd_prepare_state_flag: flag t 8 0x2
1547648459.317971 cmd_find_target: target none, type 1
1547648459.317973 cmd_find_target: cmdq 0x55a1196c31a0, flags 0x2
1547648459.317975 cmd_find_target: s=none
1547648459.317977 cmd_find_target: wl=none
1547648459.317994 cmd_find_target: wp=none
1547648459.317999 cmd_find_target: idx=none
1547648459.318001 preparing -s state: target none
1547648459.318008 cmdq 0x55a1196c31a0: set-option -g tmate-server-rsa-fingerprint 4a:f9:37:42:fa:fa:5b:c8:45:fb:59:da:d4:47:f7:b1
1547648459.318021 preparing state for set-option -g tmate-server-rsa-fingerprint 4a:f9:37:42:fa:fa:5b:c8:45:fb:59:da:d4:47:f7:b1 (client (nil))
1547648459.318023 cmd_find_client: no target, return (nil)
1547648459.318025 preparing -t state: target none
1547648459.318027 cmd_prepare_state_flag: flag t 8 0x2
1547648459.318029 cmd_find_target: target none, type 1
1547648459.318031 cmd_find_target: cmdq 0x55a1196c31a0, flags 0x2
1547648459.318032 cmd_find_target: s=none
1547648459.318034 cmd_find_target: wl=none
1547648459.318036 cmd_find_target: wp=none
1547648459.318038 cmd_find_target: idx=none
1547648459.318039 preparing -s state: target none
1547648459.318045 cmdq 0x55a1196c31a0: set-option -g tmate-server-ecdsa-fingerprint 2d:26:8a:ff:0f:97:ff:26:90:25:68:ec:3d:e0:15:64
1547648459.318051 preparing state for set-option -g tmate-server-ecdsa-fingerprint 2d:26:8a:ff:0f:97:ff:26:90:25:68:ec:3d:e0:15:64 (client (nil))
1547648459.318054 cmd_find_client: no target, return (nil)
1547648459.318055 preparing -t state: target none
1547648459.318057 cmd_prepare_state_flag: flag t 8 0x2
1547648459.318059 cmd_find_target: target none, type 1
1547648459.318061 cmd_find_target: cmdq 0x55a1196c31a0, flags 0x2
1547648459.318063 cmd_find_target: s=none
1547648459.318064 cmd_find_target: wl=none
1547648459.318066 cmd_find_target: wp=none
1547648459.318068 cmd_find_target: idx=none
1547648459.318070 preparing -s state: target none
1547648459.318194 [tmate] I Looking up localhost...
1547648459.318341 [tmate] D Connecting to localhost...
1547648459.318348 [tmate] D Trying server 127.0.0.1
1547648459.318565 [tmate] D [1] [socket_callback_connected] socket_callback_connected: Socket connection callback: 1 (0)
1547648459.318588 unref client 0x55a1196b27b0 (2 references)
1547648459.318603 server loop enter
1547648459.318636 peer 0x55a1196b2d90 message 100
1547648459.318640 client 0x55a1196b27b0 IDENTIFY_FLAGS 0x30000
1547648459.318643 peer 0x55a1196b2d90 message 101
1547648459.318645 client 0x55a1196b27b0 IDENTIFY_TERM screen-256color
1547648459.318647 peer 0x55a1196b2d90 message 102
1547648459.318649 client 0x55a1196b27b0 IDENTIFY_TTYNAME /dev/pts/3
1547648459.318651 peer 0x55a1196b2d90 message 108
1547648459.318656 client 0x55a1196b27b0 IDENTIFY_CWD /home/chriswaldon
1547648459.318658 peer 0x55a1196b2d90 message 104
1547648459.318660 client 0x55a1196b27b0 IDENTIFY_STDIN 12
1547648459.318684 peer 0x55a1196b2d90 message 107
1547648459.318688 client 0x55a1196b27b0 IDENTIFY_CLIENTPID 11567
1547648459.318690 peer 0x55a1196b2d90 message 105
1547648459.318693 client 0x55a1196b27b0 IDENTIFY_ENVIRON BASH_ENV=/usr/share/Modules/init/bash
1547648459.318696 peer 0x55a1196b2d90 message 105
1547648459.318720 client 0x55a1196b27b0 IDENTIFY_ENVIRON BASH_FUNC__module_raw%%=() {  unset _mlshdbg;\n if [ "${MODULES_SILENT_SHELL_DEBUG:-0}" = '1' ]; then\n case "$-" in \n *v*x*)\n set +vx;\n _mlshdbg='vx'\n ;;\n *v*)\n set +v;\n _mlshdbg='v'\n ;;\n *x*)\n set +x;\n _mlshdbg='x'\n ;;\n *)\n _mlshdbg=''\n ;;\n esac;\n fi;\n unset _mlre _mlIFS;\n if [ -n "${IFS+x}" ]; then\n _mlIFS=$IFS;\n fi;\n IFS=' ';\n for _mlv in ${MODULES_RUN_QUARANTINE:-};\n do\n if [ "${_mlv}" = "${_mlv##*[!A-Za-z0-9_]}" -a "${_mlv}" = "${_mlv#[0-9]}" ]; then\n if [ -n "`eval 'echo ${'$_mlv'+x}'`" ]; then\n _mlre="${_mlre:-}${_mlv}_modquar='`eval 'echo ${'$_mlv'}'`' ";\n fi;\n _mlrv="MODULES_RUNENV_${_mlv}";\n _mlre="${_mlre:-}${_mlv}='`eval 'echo ${'$_mlrv':-}'`' ";\n fi;\n done;\n if [ -n "${_mlre:-}" ]; then\n eval `eval ${_mlre}/usr/bin/tclsh /usr/share/Modules/libexec/modulecmd.tcl bash '"$@"'`;\n else\n eval `/usr/bin/tclsh /usr/share/Modules/libexec/modulecmd.tcl bash "$@"`;\n fi;\n _mlstatus=$?;\n if [ -n "${_mlIFS+x}" ]; then\n IFS=$_mlIFS;\n else\n unset IFS;\n fi;\n unset _mlre _mlv _mlrv _mlIFS;\n if [ -n "${_mlshdbg:-}" ]; then\n set -$_mlshdbg;\n fi;\n unset _mlshdbg;\n return $_mlstatus\n}
1547648459.318723 peer 0x55a1196b2d90 message 105
1547648459.318726 client 0x55a1196b27b0 IDENTIFY_ENVIRON BASH_FUNC_module%%=() {  _module_raw "$@" 2>&1\n}
1547648459.318728 peer 0x55a1196b2d90 message 105
1547648459.318732 client 0x55a1196b27b0 IDENTIFY_ENVIRON BASH_FUNC_scl%%=() {  if [ "$1" = "load" -o "$1" = "unload" ]; then\n eval "module $@";\n else\n /usr/bin/scl "$@";\n fi\n}
1547648459.318734 peer 0x55a1196b2d90 message 105
1547648459.318742 client 0x55a1196b27b0 IDENTIFY_ENVIRON BASH_FUNC_switchml%%=() {  typeset swfound=1;\n if [ "${MODULES_USE_COMPAT_VERSION:-0}" = '1' ]; then\n typeset swname='main';\n if [ -e /usr/share/Modules/libexec/modulecmd.tcl ]; then\n typeset swfound=0;\n unset MODULES_USE_COMPAT_VERSION;\n fi;\n else\n typeset swname='compatibility';\n if [ -e /usr/share/Modules/libexec/modulecmd-compat ]; then\n typeset swfound=0;\n MODULES_USE_COMPAT_VERSION=1;\n export MODULES_USE_COMPAT_VERSION;\n fi;\n fi;\n if [ $swfound -eq 0 ]; then\n echo "Switching to Modules $swname version";\n source /usr/share/Modules/init/bash;\n else\n echo "Cannot switch to Modules $swname version, command not found";\n return 1;\n fi\n}
1547648459.318748 peer 0x55a1196b2d90 message 105
1547648459.318751 client 0x55a1196b27b0 IDENTIFY_ENVIRON BLPROVIDER=intel_backlight
1547648459.318753 peer 0x55a1196b2d90 message 105
1547648459.318756 client 0x55a1196b27b0 IDENTIFY_ENVIRON DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus
1547648459.318758 peer 0x55a1196b2d90 message 105
1547648459.318761 client 0x55a1196b27b0 IDENTIFY_ENVIRON DESKTOP_SESSION=dwm-user
1547648459.318763 peer 0x55a1196b2d90 message 105
1547648459.318765 client 0x55a1196b27b0 IDENTIFY_ENVIRON DISPLAY=:0
1547648459.318767 peer 0x55a1196b2d90 message 105
1547648459.318770 client 0x55a1196b27b0 IDENTIFY_ENVIRON EDITOR=/home/chriswaldon/.local/bin/kak
1547648459.318772 peer 0x55a1196b2d90 message 105
1547648459.318775 client 0x55a1196b27b0 IDENTIFY_ENVIRON ENV=/usr/share/Modules/init/profile.sh
1547648459.318777 peer 0x55a1196b2d90 message 105
1547648459.318779 client 0x55a1196b27b0 IDENTIFY_ENVIRON GDMSESSION=dwm-user
1547648459.318781 peer 0x55a1196b2d90 message 105
1547648459.318784 client 0x55a1196b27b0 IDENTIFY_ENVIRON GDM_LANG=en_US.UTF-8
1547648459.318786 peer 0x55a1196b2d90 message 105
1547648459.318788 client 0x55a1196b27b0 IDENTIFY_ENVIRON GOPATH=/home/chriswaldon/Code/go
1547648459.318790 peer 0x55a1196b2d90 message 105
1547648459.318793 client 0x55a1196b27b0 IDENTIFY_ENVIRON HISTCONTROL=ignoredups
1547648459.318795 peer 0x55a1196b2d90 message 105
1547648459.318797 client 0x55a1196b27b0 IDENTIFY_ENVIRON HISTSIZE=1000
1547648459.318799 peer 0x55a1196b2d90 message 105
1547648459.318802 client 0x55a1196b27b0 IDENTIFY_ENVIRON HOME=/home/chriswaldon
1547648459.318804 peer 0x55a1196b2d90 message 105
1547648459.318806 client 0x55a1196b27b0 IDENTIFY_ENVIRON HOSTNAME=brick
1547648459.318808 peer 0x55a1196b2d90 message 105
1547648459.318811 client 0x55a1196b27b0 IDENTIFY_ENVIRON LANG=en_US.UTF-8
1547648459.318813 peer 0x55a1196b2d90 message 105
1547648459.318815 client 0x55a1196b27b0 IDENTIFY_ENVIRON LESSOPEN=||/usr/bin/lesspipe.sh %s
1547648459.318817 peer 0x55a1196b2d90 message 105
1547648459.318820 client 0x55a1196b27b0 IDENTIFY_ENVIRON LOADEDMODULES=
1547648459.318822 peer 0x55a1196b2d90 message 105
1547648459.318824 client 0x55a1196b27b0 IDENTIFY_ENVIRON LOGNAME=chriswaldon
1547648459.318827 peer 0x55a1196b2d90 message 105
1547648459.318842 client 0x55a1196b27b0 IDENTIFY_ENVIRON LS_COLORS=rs=0:di=38;5;33:ln=38;5;51:mh=00:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=01;05;37;41:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;40:*.tar=38;5;9:*.tgz=38;5;9:*.arc=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lha=38;5;9:*.lz4=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.tzo=38;5;9:*.t7z=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lrz=38;5;9:*.lz=38;5;9:*.lzo=38;5;9:*.xz=38;5;9:*.zst=38;5;9:*.tzst=38;5;9:*.bz2=38;5;9:*.bz=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.war=38;5;9:*.ear=38;5;9:*.sar=38;5;9:*.rar=38;5;9:*.alz=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.cab=38;5;9:*.wim=38;5;9:*.swm=38;5;9:*.dwm=38;5;9:*.esd=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.mjpg=38;5;13:*.mjpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.webm=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.m4a=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.oga=38;5;45:*.opus=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:
1547648459.318847 peer 0x55a1196b2d90 message 105
1547648459.318850 client 0x55a1196b27b0 IDENTIFY_ENVIRON MAIL=/var/spool/mail/chriswaldon
1547648459.318852 peer 0x55a1196b2d90 message 105
1547648459.318855 client 0x55a1196b27b0 IDENTIFY_ENVIRON MODULEPATH=/etc/scl/modulefiles:/etc/scl/modulefiles:/usr/share/Modules/modulefiles:/etc/modulefiles:/usr/share/modulefiles
1547648459.318857 peer 0x55a1196b2d90 message 105
1547648459.318861 client 0x55a1196b27b0 IDENTIFY_ENVIRON MODULEPATH_modshare=/usr/share/modulefiles:1:/usr/share/Modules/modulefiles:1:/etc/modulefiles:1
1547648459.318863 peer 0x55a1196b2d90 message 105
1547648459.318865 client 0x55a1196b27b0 IDENTIFY_ENVIRON MODULESHOME=/usr/share/Modules
1547648459.318867 peer 0x55a1196b2d90 message 105
1547648459.318870 client 0x55a1196b27b0 IDENTIFY_ENVIRON MODULES_CMD=/usr/share/Modules/libexec/modulecmd.tcl
1547648459.318872 peer 0x55a1196b2d90 message 105
1547648459.318875 client 0x55a1196b27b0 IDENTIFY_ENVIRON MODULES_RUN_QUARANTINE=LD_LIBRARY_PATH
1547648459.318877 peer 0x55a1196b2d90 message 105
1547648459.318882 client 0x55a1196b27b0 IDENTIFY_ENVIRON PATH=/home/chriswaldon/.local/bin:/home/chriswaldon/.local/bin:/usr/lib64/qt-3.3/bin:/usr/share/Modules/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/home/chriswaldon/.nix_profile/bin:/home/chriswaldon/Code/go/bin:/home/chriswaldon/.local/bin:/home/chriswaldon/bin:/home/chriswaldon/.nix_profile/bin:/home/chriswaldon/Code/go/bin
1547648459.318884 peer 0x55a1196b2d90 message 105
1547648459.318887 client 0x55a1196b27b0 IDENTIFY_ENVIRON PWD=/home/chriswaldon
1547648459.318889 peer 0x55a1196b2d90 message 105
1547648459.318892 client 0x55a1196b27b0 IDENTIFY_ENVIRON QTDIR=/usr/lib64/qt-3.3
1547648459.318894 peer 0x55a1196b2d90 message 105
1547648459.318896 client 0x55a1196b27b0 IDENTIFY_ENVIRON QTINC=/usr/lib64/qt-3.3/include
1547648459.318898 peer 0x55a1196b2d90 message 105
1547648459.318901 client 0x55a1196b27b0 IDENTIFY_ENVIRON QTLIB=/usr/lib64/qt-3.3/lib
1547648459.318903 peer 0x55a1196b2d90 message 105
1547648459.318905 client 0x55a1196b27b0 IDENTIFY_ENVIRON RVSEL=Code/
1547648459.318907 peer 0x55a1196b2d90 message 105
1547648459.318910 client 0x55a1196b27b0 IDENTIFY_ENVIRON SHELL=fish
1547648459.318912 peer 0x55a1196b2d90 message 105
1547648459.318914 client 0x55a1196b27b0 IDENTIFY_ENVIRON SHLVL=7
1547648459.318916 peer 0x55a1196b2d90 message 105
1547648459.318919 client 0x55a1196b27b0 IDENTIFY_ENVIRON SSH_AGENT_PID=2213
1547648459.318921 peer 0x55a1196b2d90 message 105
1547648459.318923 client 0x55a1196b27b0 IDENTIFY_ENVIRON SSH_AUTH_SOCK=/tmp/ssh-MLR9stksWRu2/agent.2195
1547648459.318925 peer 0x55a1196b2d90 message 105
1547648459.318928 client 0x55a1196b27b0 IDENTIFY_ENVIRON TERM=screen-256color
1547648459.318930 peer 0x55a1196b2d90 message 105
1547648459.318932 client 0x55a1196b27b0 IDENTIFY_ENVIRON TMUX_PANE=%1
1547648459.318934 peer 0x55a1196b2d90 message 105
1547648459.318937 client 0x55a1196b27b0 IDENTIFY_ENVIRON USER=chriswaldon
1547648459.318939 peer 0x55a1196b2d90 message 105
1547648459.318941 client 0x55a1196b27b0 IDENTIFY_ENVIRON USERNAME=chriswaldon
1547648459.318943 peer 0x55a1196b2d90 message 105
1547648459.318945 client 0x55a1196b27b0 IDENTIFY_ENVIRON WINDOWID=54525958
1547648459.318947 peer 0x55a1196b2d90 message 105
1547648459.318950 client 0x55a1196b27b0 IDENTIFY_ENVIRON WINDOWPATH=2
1547648459.318952 peer 0x55a1196b2d90 message 105
1547648459.318954 client 0x55a1196b27b0 IDENTIFY_ENVIRON XAUTHORITY=/run/user/1000/gdm/Xauthority
1547648459.318956 peer 0x55a1196b2d90 message 105
1547648459.318959 client 0x55a1196b27b0 IDENTIFY_ENVIRON XDG_DATA_DIRS=/home/chriswaldon/.local/share/flatpak/exports/share/:/var/lib/flatpak/exports/share/:/usr/local/share/:/usr/share/
1547648459.318962 peer 0x55a1196b2d90 message 105
1547648459.318964 client 0x55a1196b27b0 IDENTIFY_ENVIRON XDG_RUNTIME_DIR=/run/user/1000
1547648459.318968 peer 0x55a1196b2d90 message 105
1547648459.318971 client 0x55a1196b27b0 IDENTIFY_ENVIRON XDG_SEAT=seat0
1547648459.318989 peer 0x55a1196b2d90 message 105
1547648459.318992 client 0x55a1196b27b0 IDENTIFY_ENVIRON XDG_SESSION_DESKTOP=dwm-user
1547648459.318994 peer 0x55a1196b2d90 message 105
1547648459.318998 client 0x55a1196b27b0 IDENTIFY_ENVIRON XDG_SESSION_ID=2
1547648459.319000 peer 0x55a1196b2d90 message 105
1547648459.319003 client 0x55a1196b27b0 IDENTIFY_ENVIRON XDG_SESSION_TYPE=x11
1547648459.319006 peer 0x55a1196b2d90 message 105
1547648459.319010 client 0x55a1196b27b0 IDENTIFY_ENVIRON XDG_VTNR=2
1547648459.319013 peer 0x55a1196b2d90 message 105
1547648459.319015 client 0x55a1196b27b0 IDENTIFY_ENVIRON XML_CATALOG_FILES=/usr/local/etc/xml/catalog
1547648459.319134 peer 0x55a1196b2d90 message 106
1547648459.319356 peer 0x55a1196b2d90 message 200
1547648459.319370 continuing cmdq 0x55a1196c2f40: flags 0, client 0x55a1196b27b0
1547648459.319373 cmdq 0x55a1196c2f40: new-session
1547648459.319376 preparing state for new-session (client 0x55a1196b27b0)
1547648459.319378 cmd_find_current_session: have client 0x55a1196b27b0
1547648459.319391 cmd_find_client: no target, return (nil)
1547648459.319393 preparing -t state: target none
1547648459.319395 cmd_prepare_state_flag: flag t 4 0x2
1547648459.319398 cmd_find_current_session: have client 0x55a1196b27b0
1547648459.319400 cmd_find_target: target none, type 2
1547648459.319402 cmd_find_target: cmdq 0x55a1196c2f40, flags 0x2
1547648459.319404 cmd_find_target: s=none
1547648459.319406 cmd_find_target: wl=none
1547648459.319408 cmd_find_target: wp=none
1547648459.319409 cmd_find_target: idx=none
1547648459.319411 preparing -s state: target none
1547648459.319414 new term: screen-256color
1547648459.319552 screen-256color override: XT 
1547648459.319573 new key \033Oo: 0x100000000045 (KP/)
1547648459.319576 new key \033Oj: 0x100000000046 (KP*)
1547648459.319578 new key \033Om: 0x100000000047 (KP-)
1547648459.319580 new key \033Ow: 0x100000000048 (KP7)
1547648459.319591 new key \033Ox: 0x100000000049 (KP8)
1547648459.319593 new key \033Oy: 0x10000000004a (KP9)
1547648459.319595 new key \033Ok: 0x10000000004b (KP+)
1547648459.319597 new key \033Ot: 0x10000000004c (KP4)
1547648459.319600 new key \033Ou: 0x10000000004d (KP5)
1547648459.319602 new key \033Ov: 0x10000000004e (KP6)
1547648459.319604 new key \033Oq: 0x10000000004f (KP1)
1547648459.319606 new key \033Or: 0x100000000050 (KP2)
1547648459.319608 new key \033Os: 0x100000000051 (KP3)
1547648459.319610 new key \033OM: 0x100000000052 (KPEnter)
1547648459.319613 new key \033Op: 0x100000000053 (KP0)
1547648459.319615 new key \033On: 0x100000000054 (KP.)
1547648459.319617 new key \033OA: 0x100000000041 (Up)
1547648459.319620 new key \033OB: 0x100000000042 (Down)
1547648459.319622 new key \033OC: 0x100000000044 (Right)
1547648459.319624 new key \033OD: 0x100000000043 (Left)
1547648459.319626 new key \033[A: 0x100000000041 (Up)
1547648459.319629 new key \033[B: 0x100000000042 (Down)
1547648459.319631 new key \033[C: 0x100000000044 (Right)
1547648459.319633 new key \033[D: 0x100000000043 (Left)
1547648459.319635 new key \033OH: 0x10000000003c (Home)
1547648459.319637 new key \033OF: 0x10000000003d (End)
1547648459.319640 new key \033[H: 0x10000000003c (Home)
1547648459.319642 new key \033[F: 0x10000000003d (End)
1547648459.319644 new key \033Oa: 0x500000000041 (C-Up)
1547648459.319646 new key \033Ob: 0x500000000042 (C-Down)
1547648459.319649 new key \033Oc: 0x500000000044 (C-Right)
1547648459.319651 new key \033Od: 0x500000000043 (C-Left)
1547648459.319653 new key \033[a: 0x900000000041 (S-Up)
1547648459.319656 new key \033[b: 0x900000000042 (S-Down)
1547648459.319658 new key \033[c: 0x900000000044 (S-Right)
1547648459.319660 new key \033[d: 0x900000000043 (S-Left)
1547648459.319662 new key \033[11^: 0x50000000002e (C-F1)
1547648459.319665 new key \033[12^: 0x50000000002f (C-F2)
1547648459.319667 new key \033[13^: 0x500000000030 (C-F3)
1547648459.319670 new key \033[14^: 0x500000000031 (C-F4)
1547648459.319673 new key \033[15^: 0x500000000032 (C-F5)
1547648459.319676 new key \033[17^: 0x500000000033 (C-F6)
1547648459.319678 new key \033[18^: 0x500000000034 (C-F7)
1547648459.319681 new key \033[19^: 0x500000000035 (C-F8)
1547648459.319687 new key \033[20^: 0x500000000036 (C-F9)
1547648459.319690 new key \033[21^: 0x500000000037 (C-F10)
1547648459.319692 new key \033[23^: 0x500000000038 (C-F11)
1547648459.319694 new key \033[24^: 0x500000000039 (C-F12)
1547648459.319697 new key \033[2^: 0x50000000003a (C-IC)
1547648459.319699 new key \033[3^: 0x50000000003b (C-DC)
1547648459.319701 new key \033[7^: 0x50000000003c (C-Home)
1547648459.319704 new key \033[8^: 0x50000000003d (C-End)
1547648459.319706 new key \033[6^: 0x50000000003e (C-NPage)
1547648459.319708 new key \033[5^: 0x50000000003f (C-PPage)
1547648459.319711 new key \033[11$: 0x90000000002e (S-F1)
1547648459.319713 new key \033[12$: 0x90000000002f (S-F2)
1547648459.319715 new key \033[13$: 0x900000000030 (S-F3)
1547648459.319718 new key \033[14$: 0x900000000031 (S-F4)
1547648459.319720 new key \033[15$: 0x900000000032 (S-F5)
1547648459.319722 new key \033[17$: 0x900000000033 (S-F6)
1547648459.319724 new key \033[18$: 0x900000000034 (S-F7)
1547648459.319726 new key \033[19$: 0x900000000035 (S-F8)
1547648459.319729 new key \033[20$: 0x900000000036 (S-F9)
1547648459.319731 new key \033[21$: 0x900000000037 (S-F10)
1547648459.319733 new key \033[23$: 0x900000000038 (S-F11)
1547648459.319737 new key \033[24$: 0x900000000039 (S-F12)
1547648459.319739 new key \033[2$: 0x90000000003a (S-IC)
1547648459.319741 new key \033[3$: 0x90000000003b (S-DC)
1547648459.319744 new key \033[7$: 0x90000000003c (S-Home)
1547648459.319746 new key \033[8$: 0x90000000003d (S-End)
1547648459.319748 new key \033[6$: 0x90000000003e (S-NPage)
1547648459.319751 new key \033[5$: 0x90000000003f (S-PPage)
1547648459.319753 new key \033[11@: 0xd0000000002e (C-S-F1)
1547648459.319755 new key \033[12@: 0xd0000000002f (C-S-F2)
1547648459.319758 new key \033[13@: 0xd00000000030 (C-S-F3)
1547648459.319760 new key \033[14@: 0xd00000000031 (C-S-F4)
1547648459.319762 new key \033[15@: 0xd00000000032 (C-S-F5)
1547648459.319764 new key \033[17@: 0xd00000000033 (C-S-F6)
1547648459.319767 new key \033[18@: 0xd00000000034 (C-S-F7)
1547648459.319769 new key \033[19@: 0xd00000000035 (C-S-F8)
1547648459.319771 new key \033[20@: 0xd00000000036 (C-S-F9)
1547648459.319774 new key \033[21@: 0xd00000000037 (C-S-F10)
1547648459.319776 new key \033[23@: 0xd00000000038 (C-S-F11)
1547648459.319778 new key \033[24@: 0xd00000000039 (C-S-F12)
1547648459.319780 new key \033[2@: 0xd0000000003a (C-S-IC)
1547648459.319783 new key \033[3@: 0xd0000000003b (C-S-DC)
1547648459.319786 new key \033[7@: 0xd0000000003c (C-S-Home)
1547648459.319788 new key \033[8@: 0xd0000000003d (C-S-End)
1547648459.319791 new key \033[6@: 0xd0000000003e (C-S-NPage)
1547648459.319793 new key \033[5@: 0xd0000000003f (C-S-PPage)
1547648459.319797 new key \033[I: 0x100000000000 (Invalid#100000000000)
1547648459.319801 new key \033[O: 0x100000000001 (Invalid#100000000001)
1547648459.319803 new key \033OP: 0x10000000002e (F1)
1547648459.319806 new key \033OQ: 0x10000000002f (F2)
1547648459.319808 new key \033OR: 0x100000000030 (F3)
1547648459.319810 new key \033OS: 0x100000000031 (F4)
1547648459.319813 new key \033[15~: 0x100000000032 (F5)
1547648459.319815 new key \033[17~: 0x100000000033 (F6)
1547648459.319817 new key \033[18~: 0x100000000034 (F7)
1547648459.319819 new key \033[19~: 0x100000000035 (F8)
1547648459.319821 new key \033[20~: 0x100000000036 (F9)
1547648459.319824 new key \033[21~: 0x100000000037 (F10)
1547648459.319826 new key \033[23~: 0x100000000038 (F11)
1547648459.319828 new key \033[24~: 0x100000000039 (F12)
1547648459.319831 new key \033[2~: 0x10000000003a (IC)
1547648459.319833 new key \033[3~: 0x10000000003b (DC)
1547648459.319835 new key \033[1~: 0x10000000003c (Home)
1547648459.319838 new key \033[4~: 0x10000000003d (End)
1547648459.319840 new key \033[6~: 0x10000000003e (NPage)
1547648459.319843 new key \033[5~: 0x10000000003f (PPage)
1547648459.319845 new key \033[Z: 0x100000000040 (BTab)
1547648459.319847 replacing key \033OA: 0x100000000041 (Up)
1547648459.319850 replacing key \033OB: 0x100000000042 (Down)
1547648459.319854 replacing key \033OD: 0x100000000043 (Left)
1547648459.319857 replacing key \033OC: 0x100000000044 (Right)
1547648459.319867 new session 0 $0
1547648459.319871 session 0 activity 1547648459.319869 (last 0.000000)
1547648459.319919 @0 alerts flags added 0x2
1547648459.319927 spawn: /bin/bash -- env SHELL=fish rover
1547648459.319930 spawn: argv[0] = env SHELL=fish rover
1547648459.320426 @0 alerts timer reset 0
1547648459.320440 @0 alerts flags added 0x2
1547648459.320442 session 0 created
1547648459.320457 sending message 207 to peer 0x55a1196b2d90 (0 bytes)
1547648459.320469 client 0x55a1196b27b0, status interval 15
1547648459.320473 session 0 activity 1547648459.320471 (last 1547648459.319869)
1547648459.320524 session 0 has 3 references
1547648459.320527 session 0 has 2 references
1547648459.320530 unref client 0x55a1196b27b0 (2 references)
1547648459.320687 @0 active pane changed
1547648459.320709 format '[tmux]' -> '[tmux]'
1547648459.320712 format '' -> ''
1547648459.320715 format '#{?pane_in_mode,[tmux],#{pane_current_command}}#{?pane_dead,[dead],}' -> '[tmux]'
1547648459.320720 @0 new name [tmux] (was env)
1547648459.320766 @0 active pane not changed
1547648459.320854 peer 0x55a1196b2d90 message 208
1547648459.320862 @0 active pane not changed
1547648459.328771 [tmate] D [1] [ssh_client_connection_callback] ssh_client_connection_callback: SSH server banner: SSH-2.0-tmate
1547648459.328789 [tmate] D [1] [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-tmate
1547648459.335754 [tmate] D [1] [ssh_known_hosts_read_entries] ssh_known_hosts_read_entries: Failed to open the known_hosts file '/etc/ssh/ssh_known_hosts': No such file or directory
1547648459.338161 @0 active pane not changed
1547648459.362092 [tmate] D Establishing connection to 127.0.0.1
1547648459.362131 [tmate] D Cannot authenticate server
1547648459.362141 [tmate] D SSH client killed (127.0.0.1)
1547648459.362176 [tmate] D Reconnecting... (Cannot authenticate server)
1547648459.362362 @0 active pane not changed
1547648459.362382 @0 active pane not changed
1547648461.358023 [tmate] I Looking up localhost...
1547648461.358262 [tmate] D Connecting to localhost...
1547648461.360826 [tmate] D Trying server 127.0.0.1
1547648461.361058 [tmate] D [1] [socket_callback_connected] socket_callback_connected: Socket connection callback: 1 (0)
1547648461.361348 @0 active pane not changed
1547648461.361384 @0 active pane not changed
1547648461.362217 [tmate] D [1] [ssh_client_connection_callback] ssh_client_connection_callback: SSH server banner: SSH-2.0-tmate
1547648461.362234 [tmate] D [1] [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-tmate
1547648461.362294 [tmate] D [1] [ssh_known_hosts_read_entries] ssh_known_hosts_read_entries: Failed to open the known_hosts file '/etc/ssh/ssh_known_hosts': No such file or directory
1547648461.364039 @0 active pane not changed
1547648461.383962 @0 active pane not changed
1547648461.387717 [tmate] D Establishing connection to 127.0.0.1
1547648461.387741 [tmate] D Cannot authenticate server
1547648461.387753 [tmate] D SSH client killed (127.0.0.1)
1547648461.387826 [tmate] D Reconnecting... (Cannot authenticate server)
1547648461.388062 @0 active pane not changed
1547648461.388091 @0 active pane not changed
1547648463.386235 [tmate] I Looking up localhost...
1547648463.386900 [tmate] D Connecting to localhost...
1547648463.386940 [tmate] D Trying server 127.0.0.1
1547648463.387390 [tmate] D [1] [socket_callback_connected] socket_callback_connected: Socket connection callback: 1 (0)
1547648463.388050 @0 active pane not changed
1547648463.388106 @0 active pane not changed
1547648463.389594 [tmate] D [1] [ssh_client_connection_callback] ssh_client_connection_callback: SSH server banner: SSH-2.0-tmate
1547648463.389636 [tmate] D [1] [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-tmate
1547648463.389740 [tmate] D [1] [ssh_known_hosts_read_entries] ssh_known_hosts_read_entries: Failed to open the known_hosts file '/etc/ssh/ssh_known_hosts': No such file or directory
1547648463.394423 @0 active pane not changed
1547648463.418703 @0 active pane not changed
1547648463.422456 [tmate] D Establishing connection to 127.0.0.1
1547648463.422471 [tmate] D Cannot authenticate server
1547648463.422480 [tmate] D SSH client killed (127.0.0.1)
1547648463.422531 [tmate] D Reconnecting... (Cannot authenticate server)
1547648463.422772 @0 active pane not changed
1547648463.422792 @0 active pane not changed
1547648465.420854 [tmate] I Looking up localhost...
1547648465.421312 [tmate] D Connecting to localhost...
1547648465.421336 [tmate] D Trying server 127.0.0.1
1547648465.421600 [tmate] D [1] [socket_callback_connected] socket_callback_connected: Socket connection callback: 1 (0)
1547648465.421928 @0 active pane not changed
1547648465.421960 @0 active pane not changed
1547648465.423201 [tmate] D [1] [ssh_client_connection_callback] ssh_client_connection_callback: SSH server banner: SSH-2.0-tmate
1547648465.423223 [tmate] D [1] [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-tmate
1547648465.423295 [tmate] D [1] [ssh_known_hosts_read_entries] ssh_known_hosts_read_entries: Failed to open the known_hosts file '/etc/ssh/ssh_known_hosts': No such file or directory
1547648465.426539 @0 active pane not changed
1547648465.454768 [tmate] D Establishing connection to 127.0.0.1
1547648465.454787 [tmate] D Cannot authenticate server
1547648465.454798 [tmate] D SSH client killed (127.0.0.1)
1547648465.454831 [tmate] D Reconnecting... (Cannot authenticate server)
1547648465.455083 @0 active pane not changed
1547648465.455109 @0 active pane not changed
1547648467.451241 [tmate] I Looking up localhost...
1547648467.451880 [tmate] D Connecting to localhost...
1547648467.451918 [tmate] D Trying server 127.0.0.1
1547648467.452390 [tmate] D [1] [socket_callback_connected] socket_callback_connected: Socket connection callback: 1 (0)
1547648467.453192 @0 active pane not changed
1547648467.453255 @0 active pane not changed
1547648467.454794 [tmate] D [1] [ssh_client_connection_callback] ssh_client_connection_callback: SSH server banner: SSH-2.0-tmate
1547648467.454824 [tmate] D [1] [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-tmate
1547648467.454936 [tmate] D [1] [ssh_known_hosts_read_entries] ssh_known_hosts_read_entries: Failed to open the known_hosts file '/etc/ssh/ssh_known_hosts': No such file or directory
1547648467.460692 @0 active pane not changed
1547648467.488166 @0 active pane not changed
1547648467.491787 [tmate] D Establishing connection to 127.0.0.1
1547648467.491803 [tmate] D Cannot authenticate server
1547648467.491812 [tmate] D SSH client killed (127.0.0.1)
1547648467.491864 [tmate] D Reconnecting... (Cannot authenticate server)
1547648467.492047 @0 active pane not changed
1547648467.492062 @0 active pane not changed
1547648469.490186 [tmate] I Looking up localhost...
1547648469.490687 [tmate] D Connecting to localhost...
1547648469.490725 [tmate] D Trying server 127.0.0.1
1547648469.491176 [tmate] D [1] [socket_callback_connected] socket_callback_connected: Socket connection callback: 1 (0)
1547648469.491973 @0 active pane not changed
1547648469.492054 @0 active pane not changed
1547648469.493592 [tmate] D [1] [ssh_client_connection_callback] ssh_client_connection_callback: SSH server banner: SSH-2.0-tmate
1547648469.493630 [tmate] D [1] [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-tmate
1547648469.493760 [tmate] D [1] [ssh_known_hosts_read_entries] ssh_known_hosts_read_entries: Failed to open the known_hosts file '/etc/ssh/ssh_known_hosts': No such file or directory
1547648469.500025 @0 active pane not changed
1547648469.523837 @0 active pane not changed
1547648469.527502 [tmate] D Establishing connection to 127.0.0.1
1547648469.527517 [tmate] D Cannot authenticate server
1547648469.527526 [tmate] D SSH client killed (127.0.0.1)
1547648469.527568 [tmate] D Reconnecting... (Cannot authenticate server)
1547648469.527734 @0 active pane not changed
1547648469.527749 @0 active pane not changed
1547648471.525871 [tmate] I Looking up localhost...
1547648471.526497 [tmate] D Connecting to localhost...
1547648471.526533 [tmate] D Trying server 127.0.0.1
1547648471.526911 [tmate] D [1] [socket_callback_connected] socket_callback_connected: Socket connection callback: 1 (0)
1547648471.527647 @0 active pane not changed
1547648471.527714 @0 active pane not changed
1547648471.529079 [tmate] D [1] [ssh_client_connection_callback] ssh_client_connection_callback: SSH server banner: SSH-2.0-tmate
1547648471.529113 [tmate] D [1] [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-tmate
1547648471.529234 [tmate] D [1] [ssh_known_hosts_read_entries] ssh_known_hosts_read_entries: Failed to open the known_hosts file '/etc/ssh/ssh_known_hosts': No such file or directory
1547648471.531927 @0 active pane not changed
1547648471.551741 @0 active pane not changed
1547648471.555378 [tmate] D Establishing connection to 127.0.0.1
1547648471.555393 [tmate] D Cannot authenticate server
1547648471.555402 [tmate] D SSH client killed (127.0.0.1)
1547648471.555453 [tmate] D Reconnecting... (Cannot authenticate server)
1547648471.555665 @0 active pane not changed
1547648471.555679 @0 active pane not changed
1547648473.553799 [tmate] I Looking up localhost...
1547648473.554285 [tmate] D Connecting to localhost...
1547648473.554320 [tmate] D Trying server 127.0.0.1
1547648473.554698 [tmate] D [1] [socket_callback_connected] socket_callback_connected: Socket connection callback: 1 (0)
1547648473.555207 @0 active pane not changed
1547648473.555259 @0 active pane not changed
1547648473.556852 [tmate] D [1] [ssh_client_connection_callback] ssh_client_connection_callback: SSH server banner: SSH-2.0-tmate
1547648473.556891 [tmate] D [1] [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-tmate
1547648473.557040 [tmate] D [1] [ssh_known_hosts_read_entries] ssh_known_hosts_read_entries: Failed to open the known_hosts file '/etc/ssh/ssh_known_hosts': No such file or directory
1547648473.561643 @0 active pane not changed
1547648473.587351 @0 active pane not changed
1547648473.590927 [tmate] D Establishing connection to 127.0.0.1
1547648473.590943 [tmate] D Cannot authenticate server
1547648473.590954 [tmate] D SSH client killed (127.0.0.1)
1547648473.591014 [tmate] D Reconnecting... (Cannot authenticate server)
1547648473.591193 @0 active pane not changed
1547648473.591210 @0 active pane not changed
1547648474.320075 client 0x55a1196b27b0, status interval 15
1547648474.320158 @0 active pane not changed
1547648475.589076 [tmate] I Looking up localhost...
1547648475.589362 [tmate] D Connecting to localhost...
1547648475.589383 [tmate] D Trying server 127.0.0.1
1547648475.589616 [tmate] D [1] [socket_callback_connected] socket_callback_connected: Socket connection callback: 1 (0)
1547648475.589909 @0 active pane not changed
1547648475.589937 @0 active pane not changed
1547648475.591127 [tmate] D [1] [ssh_client_connection_callback] ssh_client_connection_callback: SSH server banner: SSH-2.0-tmate
1547648475.591146 [tmate] D [1] [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-tmate
1547648475.591239 [tmate] D [1] [ssh_known_hosts_read_entries] ssh_known_hosts_read_entries: Failed to open the known_hosts file '/etc/ssh/ssh_known_hosts': No such file or directory
1547648475.595035 @0 active pane not changed
1547648475.624290 [tmate] D Establishing connection to 127.0.0.1
1547648475.624320 [tmate] D Cannot authenticate server
1547648475.624330 [tmate] D SSH client killed (127.0.0.1)
1547648475.624364 [tmate] D Reconnecting... (Cannot authenticate server)
1547648475.624578 @0 active pane not changed
1547648475.624598 @0 active pane not changed
1547648477.620628 [tmate] I Looking up localhost...
1547648477.621019 [tmate] D Connecting to localhost...
1547648477.621041 [tmate] D Trying server 127.0.0.1
1547648477.621282 [tmate] D [1] [socket_callback_connected] socket_callback_connected: Socket connection callback: 1 (0)
1547648477.621609 @0 active pane not changed
1547648477.621639 @0 active pane not changed
1547648477.622319 [tmate] D [1] [ssh_client_connection_callback] ssh_client_connection_callback: SSH server banner: SSH-2.0-tmate
1547648477.622345 [tmate] D [1] [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-tmate
1547648477.622402 [tmate] D [1] [ssh_known_hosts_read_entries] ssh_known_hosts_read_entries: Failed to open the known_hosts file '/etc/ssh/ssh_known_hosts': No such file or directory
1547648477.625183 @0 active pane not changed
1547648477.648949 [tmate] D Establishing connection to 127.0.0.1
1547648477.648978 [tmate] D Cannot authenticate server
1547648477.648998 [tmate] D SSH client killed (127.0.0.1)
1547648477.649055 [tmate] D Reconnecting... (Cannot authenticate server)
1547648477.649313 @0 active pane not changed
1547648477.649341 @0 active pane not changed
1547648479.645439 [tmate] I Looking up localhost...
1547648479.645738 [tmate] D Connecting to localhost...
1547648479.645760 [tmate] D Trying server 127.0.0.1
1547648479.646015 [tmate] D [1] [socket_callback_connected] socket_callback_connected: Socket connection callback: 1 (0)
1547648479.646313 @0 active pane not changed
1547648479.646345 @0 active pane not changed
1547648479.647556 [tmate] D [1] [ssh_client_connection_callback] ssh_client_connection_callback: SSH server banner: SSH-2.0-tmate
1547648479.647580 [tmate] D [1] [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-tmate
1547648479.647654 [tmate] D [1] [ssh_known_hosts_read_entries] ssh_known_hosts_read_entries: Failed to open the known_hosts file '/etc/ssh/ssh_known_hosts': No such file or directory
1547648479.650386 @0 active pane not changed
1547648479.678148 [tmate] D Establishing connection to 127.0.0.1
1547648479.678167 [tmate] D Cannot authenticate server
1547648479.678179 [tmate] D SSH client killed (127.0.0.1)
1547648479.678213 [tmate] D Reconnecting... (Cannot authenticate server)
1547648479.678468 @0 active pane not changed
1547648479.678491 @0 active pane not changed
1547648480.650028 keys are 10 (\033[<0;80;9M)
1547648480.650071 mouse input (SGR): \033[<0;80;9M
1547648480.650082 complete key \033[<0;80;9M 0x100000000002
1547648480.650093 session 0 activity 1547648480.650088 (last 1547648459.320471)
1547648480.650105 mouse 00 at 79,8 (last 0,0) (0)
1547648480.650112 down at 79,8
1547648480.650121 mouse at 79,8 is on pane %0
1547648480.650135 continuing cmdq 0x55a1196c2f40: flags 0, client 0x55a1196b27b0
1547648480.650150 cmdq 0x55a1196c2f40: select-pane -t =
1547648480.650160 preparing state for select-pane -t = (client 0x55a1196b27b0)
1547648480.650169 cmd_find_current_client: using cmdq 0x55a1196c2f40 client 0x55a1196b27b0
1547648480.650175 cmd_find_client: no target, return 0x55a1196b27b0
1547648480.650182 preparing -t state: target =
1547648480.650190 cmd_prepare_state_flag: flag t 11 0
1547648480.650197 cmd_find_current_session: have client 0x55a1196b27b0 (with session)
1547648480.650204 cmd_find_target: target =, type 0
1547648480.650211 cmd_find_target: cmdq 0x55a1196c2f40, flags 0
1547648480.650219 cmd_find_target: s=$0
1547648480.650226 cmd_find_target: wl=0 1 w=@0 [tmux]
1547648480.650232 cmd_find_target: wp=%0
1547648480.650237 cmd_find_target: idx=none
1547648480.650246 preparing -s state: target none
1547648480.650259 cmdq 0x55a1196c2f40: send-keys -M
1547648480.650272 preparing state for send-keys -M (client 0x55a1196b27b0)
1547648480.650285 cmd_find_current_client: using cmdq 0x55a1196c2f40 client 0x55a1196b27b0
1547648480.650294 cmd_find_client: no target, return 0x55a1196b27b0
1547648480.650302 preparing -t state: target none
1547648480.650310 cmd_prepare_state_flag: flag t 11 0
1547648480.650320 cmd_find_current_session: have client 0x55a1196b27b0 (with session)
1547648480.650329 cmd_find_target: target none, type 0
1547648480.650338 cmd_find_target: cmdq 0x55a1196c2f40, flags 0
1547648480.650345 cmd_find_target: s=$0
1547648480.650354 cmd_find_target: wl=0 1 w=@0 [tmux]
1547648480.650362 cmd_find_target: wp=%0
1547648480.650371 cmd_find_target: idx=0
1547648480.650381 preparing -s state: target none
1547648480.650486 @0 active pane not changed
1547648480.750706 keys are 10 (\033[<0;80;9m)
1547648480.750768 mouse input (SGR): \033[<0;80;9m
1547648480.750781 complete key \033[<0;80;9m 0x100000000002
1547648480.750795 session 0 activity 1547648480.750789 (last 1547648480.650088)
1547648480.750809 mouse 03 at 79,8 (last 79,8) (0)
1547648480.750817 up at 79,8
1547648480.750829 mouse at 79,8 is on pane %0
1547648480.750859 @0 active pane not changed
1547648481.364888 keys are 1 (q)
1547648481.364935 complete key q 0x71
1547648481.364949 session 0 activity 1547648481.364943 (last 1547648480.750789)
1547648481.364961 session 0 not pasting
1547648481.365113 @0 active pane changed
1547648481.365297 format '#{pane_current_command}' -> 'rover'
1547648481.365318 format '' -> ''
1547648481.365332 format '#{?pane_in_mode,[tmux],#{pane_current_command}}#{?pane_dead,[dead],}' -> 'rover'
1547648481.365360 @0 new name rover (was [tmux])
1547648481.365445 %0 has 1024 bytes
1547648481.365461 @0 alerts timer reset 0
1547648481.365470 @0 alerts flags added 0x2
1547648481.365521 input_parse: %0 ground, 1024 bytes: \033(B\033)0\033[?1049h\033[1;35r\033[m\017\033[4l\033[?1h\033=\033[?25l\033[39;49m\033[39;49m\033[m\017\033[H\033[J\033[35;52H\033[0;1m\017\033[36mLoading "/home/chriswaldon/"...\033[39m\033[m\017\r\033[2d\033[34m\342\224\214\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\220\033[3;1H\342\224\202\033[39m\033[0;7m\017 Code/                                                                                                                                              \033[0m\017\033[34m\342\224\202\033[4;1H\342\224\202\033[39m\033[m\017 Creds/\033[150G\033[34m\342\224\202\033[5;1H\342\224\202\033[39m\033[m\017 Desktop/\033[150G\033[34m\342\224\202\033[6;1H\342\224\202\033[39m\033[m\017 Documents/\033[150G\033[34m\342\224\202\033[7;1H\342\224\202\033[39m\033[m\017 Downloads/\033[150G\033[34m\342\224\202\033[8;1H\342\224\202\033[39m\033[m\017 Music/\033[150G\033[34m\342\224\202\033[9;1H\342\224\202\033[39m\033[m\017 Pictures/\033[150G\033[34m\342\224\202\033[10;1H
1547648481.365567 input_esc_dispatch: 'B', (
1547648481.365576 input_esc_dispatch: '0', )
1547648481.365587 input_csi_dispatch: 'h' "?" "1049"
1547648481.365602 input_csi_dispatch: 'r' "" "1"
1547648481.365610 input_csi_dispatch: 'm' "" ""
1547648481.365618 input_c0_dispatch: '\017'
1547648481.365630 input_csi_dispatch: 'l' "" "4"
1547648481.365642 input_csi_dispatch: 'h' "?" "1"
1547648481.365675 input_esc_dispatch: '=', 
1547648481.365684 input_csi_dispatch: 'l' "?" "25"
1547648481.365692 input_csi_dispatch: 'm' "" "39"
1547648481.365700 input_csi_dispatch: 'm' "" "39"
1547648481.365707 input_csi_dispatch: 'm' "" ""
1547648481.365713 input_c0_dispatch: '\017'
1547648481.365721 input_csi_dispatch: 'H' "" ""
1547648481.365732 input_csi_dispatch: 'J' "" ""
1547648481.365746 input_csi_dispatch: 'H' "" "35"
1547648481.365759 input_csi_dispatch: 'm' "" "0"
1547648481.365770 input_c0_dispatch: '\017'
1547648481.365781 input_csi_dispatch: 'm' "" "36"
1547648481.365808 input_csi_dispatch: 'm' "" "39"
1547648481.365818 input_csi_dispatch: 'm' "" ""
1547648481.365827 input_c0_dispatch: '\017'
1547648481.365836 input_c0_dispatch: '\r'
1547648481.365846 input_csi_dispatch: 'd' "" "2"
1547648481.365857 input_csi_dispatch: 'm' "" "34"
1547648481.365867 input_utf8_open 3
1547648481.365878 input_utf8_add
1547648481.365893 input_utf8_close 3 '\342\224\214' (width 1)
1547648481.365901 input_utf8_open 3
1547648481.365907 input_utf8_add
1547648481.365914 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.365920 input_utf8_open 3
1547648481.365926 input_utf8_add
1547648481.365933 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.365939 input_utf8_open 3
1547648481.365945 input_utf8_add
1547648481.365952 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.365958 input_utf8_open 3
1547648481.365964 input_utf8_add
1547648481.365971 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.365978 input_utf8_open 3
1547648481.366004 input_utf8_add
1547648481.366011 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366018 input_utf8_open 3
1547648481.366024 input_utf8_add
1547648481.366031 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366038 input_utf8_open 3
1547648481.366043 input_utf8_add
1547648481.366050 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366057 input_utf8_open 3
1547648481.366062 input_utf8_add
1547648481.366069 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366075 input_utf8_open 3
1547648481.366081 input_utf8_add
1547648481.366088 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366095 input_utf8_open 3
1547648481.366100 input_utf8_add
1547648481.366107 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366114 input_utf8_open 3
1547648481.366119 input_utf8_add
1547648481.366126 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366133 input_utf8_open 3
1547648481.366139 input_utf8_add
1547648481.366145 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366152 input_utf8_open 3
1547648481.366157 input_utf8_add
1547648481.366164 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366171 input_utf8_open 3
1547648481.366176 input_utf8_add
1547648481.366183 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366189 input_utf8_open 3
1547648481.366195 input_utf8_add
1547648481.366201 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366208 input_utf8_open 3
1547648481.366214 input_utf8_add
1547648481.366220 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366227 input_utf8_open 3
1547648481.366232 input_utf8_add
1547648481.366239 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366246 input_utf8_open 3
1547648481.366251 input_utf8_add
1547648481.366258 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366264 input_utf8_open 3
1547648481.366270 input_utf8_add
1547648481.366277 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366283 input_utf8_open 3
1547648481.366289 input_utf8_add
1547648481.366295 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366302 input_utf8_open 3
1547648481.366308 input_utf8_add
1547648481.366314 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366321 input_utf8_open 3
1547648481.366326 input_utf8_add
1547648481.366333 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366339 input_utf8_open 3
1547648481.366345 input_utf8_add
1547648481.366351 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366358 input_utf8_open 3
1547648481.366363 input_utf8_add
1547648481.366380 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366387 input_utf8_open 3
1547648481.366393 input_utf8_add
1547648481.366400 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366406 input_utf8_open 3
1547648481.366412 input_utf8_add
1547648481.366418 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366425 input_utf8_open 3
1547648481.366430 input_utf8_add
1547648481.366437 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366444 input_utf8_open 3
1547648481.366449 input_utf8_add
1547648481.366456 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366462 input_utf8_open 3
1547648481.366468 input_utf8_add
1547648481.366475 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366481 input_utf8_open 3
1547648481.366487 input_utf8_add
1547648481.366493 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366500 input_utf8_open 3
1547648481.366505 input_utf8_add
1547648481.366512 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366518 input_utf8_open 3
1547648481.366524 input_utf8_add
1547648481.366531 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366538 input_utf8_open 3
1547648481.366543 input_utf8_add
1547648481.366550 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366556 input_utf8_open 3
1547648481.366562 input_utf8_add
1547648481.366569 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366576 input_utf8_open 3
1547648481.366581 input_utf8_add
1547648481.366588 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366594 input_utf8_open 3
1547648481.366600 input_utf8_add
1547648481.366607 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366613 input_utf8_open 3
1547648481.366619 input_utf8_add
1547648481.366626 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366632 input_utf8_open 3
1547648481.366638 input_utf8_add
1547648481.366645 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366651 input_utf8_open 3
1547648481.366657 input_utf8_add
1547648481.366664 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366670 input_utf8_open 3
1547648481.366675 input_utf8_add
1547648481.366682 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366689 input_utf8_open 3
1547648481.366695 input_utf8_add
1547648481.366701 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366708 input_utf8_open 3
1547648481.366714 input_utf8_add
1547648481.366731 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366739 input_utf8_open 3
1547648481.366745 input_utf8_add
1547648481.366751 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366758 input_utf8_open 3
1547648481.366764 input_utf8_add
1547648481.366770 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366777 input_utf8_open 3
1547648481.366782 input_utf8_add
1547648481.366789 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366795 input_utf8_open 3
1547648481.366801 input_utf8_add
1547648481.366807 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366814 input_utf8_open 3
1547648481.366819 input_utf8_add
1547648481.366826 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366832 input_utf8_open 3
1547648481.366838 input_utf8_add
1547648481.366844 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366851 input_utf8_open 3
1547648481.366857 input_utf8_add
1547648481.366863 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366870 input_utf8_open 3
1547648481.366876 input_utf8_add
1547648481.366882 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366889 input_utf8_open 3
1547648481.366894 input_utf8_add
1547648481.366901 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366910 input_utf8_open 3
1547648481.366916 input_utf8_add
1547648481.366922 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366929 input_utf8_open 3
1547648481.366935 input_utf8_add
1547648481.366941 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366947 input_utf8_open 3
1547648481.366953 input_utf8_add
1547648481.366959 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.366966 input_utf8_open 3
1547648481.366971 input_utf8_add
1547648481.366978 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367007 input_utf8_open 3
1547648481.367013 input_utf8_add
1547648481.367020 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367026 input_utf8_open 3
1547648481.367032 input_utf8_add
1547648481.367038 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367046 input_utf8_open 3
1547648481.367051 input_utf8_add
1547648481.367058 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367064 input_utf8_open 3
1547648481.367069 input_utf8_add
1547648481.367076 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367102 input_utf8_open 3
1547648481.367109 input_utf8_add
1547648481.367116 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367122 input_utf8_open 3
1547648481.367128 input_utf8_add
1547648481.367134 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367141 input_utf8_open 3
1547648481.367146 input_utf8_add
1547648481.367153 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367160 input_utf8_open 3
1547648481.367165 input_utf8_add
1547648481.367172 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367178 input_utf8_open 3
1547648481.367184 input_utf8_add
1547648481.367190 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367197 input_utf8_open 3
1547648481.367202 input_utf8_add
1547648481.367209 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367215 input_utf8_open 3
1547648481.367221 input_utf8_add
1547648481.367227 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367234 input_utf8_open 3
1547648481.367239 input_utf8_add
1547648481.367246 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367252 input_utf8_open 3
1547648481.367258 input_utf8_add
1547648481.367264 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367271 input_utf8_open 3
1547648481.367277 input_utf8_add
1547648481.367283 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367290 input_utf8_open 3
1547648481.367295 input_utf8_add
1547648481.367302 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367308 input_utf8_open 3
1547648481.367314 input_utf8_add
1547648481.367321 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367327 input_utf8_open 3
1547648481.367333 input_utf8_add
1547648481.367340 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367346 input_utf8_open 3
1547648481.367352 input_utf8_add
1547648481.367358 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367365 input_utf8_open 3
1547648481.367371 input_utf8_add
1547648481.367377 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367384 input_utf8_open 3
1547648481.367389 input_utf8_add
1547648481.367396 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367403 input_utf8_open 3
1547648481.367409 input_utf8_add
1547648481.367415 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367422 input_utf8_open 3
1547648481.367427 input_utf8_add
1547648481.367434 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367440 input_utf8_open 3
1547648481.367446 input_utf8_add
1547648481.367453 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367460 input_utf8_open 3
1547648481.367465 input_utf8_add
1547648481.367472 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367478 input_utf8_open 3
1547648481.367484 input_utf8_add
1547648481.367490 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367497 input_utf8_open 3
1547648481.367502 input_utf8_add
1547648481.367509 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367516 input_utf8_open 3
1547648481.367522 input_utf8_add
1547648481.367528 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367534 input_utf8_open 3
1547648481.367540 input_utf8_add
1547648481.367547 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367553 input_utf8_open 3
1547648481.367559 input_utf8_add
1547648481.367565 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367572 input_utf8_open 3
1547648481.367578 input_utf8_add
1547648481.367585 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367591 input_utf8_open 3
1547648481.367597 input_utf8_add
1547648481.367603 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367616 input_utf8_open 3
1547648481.367622 input_utf8_add
1547648481.367629 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367636 input_utf8_open 3
1547648481.367641 input_utf8_add
1547648481.367648 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367655 input_utf8_open 3
1547648481.367660 input_utf8_add
1547648481.367667 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367674 input_utf8_open 3
1547648481.367679 input_utf8_add
1547648481.367686 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367692 input_utf8_open 3
1547648481.367698 input_utf8_add
1547648481.367704 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367718 input_utf8_open 3
1547648481.367724 input_utf8_add
1547648481.367731 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367737 input_utf8_open 3
1547648481.367743 input_utf8_add
1547648481.367749 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367755 input_utf8_open 3
1547648481.367761 input_utf8_add
1547648481.367767 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367779 input_utf8_open 3
1547648481.367785 input_utf8_add
1547648481.367791 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367797 input_utf8_open 3
1547648481.367803 input_utf8_add
1547648481.367809 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367816 input_utf8_open 3
1547648481.367822 input_utf8_add
1547648481.367828 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367835 input_utf8_open 3
1547648481.367840 input_utf8_add
1547648481.367847 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367853 input_utf8_open 3
1547648481.367859 input_utf8_add
1547648481.367866 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367872 input_utf8_open 3
1547648481.367878 input_utf8_add
1547648481.367884 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367891 input_utf8_open 3
1547648481.367896 input_utf8_add
1547648481.367903 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367909 input_utf8_open 3
1547648481.367915 input_utf8_add
1547648481.367922 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367928 input_utf8_open 3
1547648481.367934 input_utf8_add
1547648481.367940 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367947 input_utf8_open 3
1547648481.367952 input_utf8_add
1547648481.367959 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.367966 input_utf8_open 3
1547648481.367972 input_utf8_add
1547648481.367987 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368001 input_utf8_open 3
1547648481.368006 input_utf8_add
1547648481.368013 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368020 input_utf8_open 3
1547648481.368025 input_utf8_add
1547648481.368032 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368038 input_utf8_open 3
1547648481.368044 input_utf8_add
1547648481.368051 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368057 input_utf8_open 3
1547648481.368062 input_utf8_add
1547648481.368069 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368075 input_utf8_open 3
1547648481.368081 input_utf8_add
1547648481.368088 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368094 input_utf8_open 3
1547648481.368100 input_utf8_add
1547648481.368106 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368113 input_utf8_open 3
1547648481.368118 input_utf8_add
1547648481.368125 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368131 input_utf8_open 3
1547648481.368137 input_utf8_add
1547648481.368144 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368150 input_utf8_open 3
1547648481.368156 input_utf8_add
1547648481.368162 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368169 input_utf8_open 3
1547648481.368174 input_utf8_add
1547648481.368181 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368187 input_utf8_open 3
1547648481.368193 input_utf8_add
1547648481.368199 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368206 input_utf8_open 3
1547648481.368212 input_utf8_add
1547648481.368218 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368224 input_utf8_open 3
1547648481.368236 input_utf8_add
1547648481.368243 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368249 input_utf8_open 3
1547648481.368255 input_utf8_add
1547648481.368262 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368268 input_utf8_open 3
1547648481.368274 input_utf8_add
1547648481.368280 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368287 input_utf8_open 3
1547648481.368293 input_utf8_add
1547648481.368299 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368305 input_utf8_open 3
1547648481.368311 input_utf8_add
1547648481.368317 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368324 input_utf8_open 3
1547648481.368329 input_utf8_add
1547648481.368336 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368350 input_utf8_open 3
1547648481.368356 input_utf8_add
1547648481.368363 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368369 input_utf8_open 3
1547648481.368375 input_utf8_add
1547648481.368381 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368387 input_utf8_open 3
1547648481.368393 input_utf8_add
1547648481.368399 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368406 input_utf8_open 3
1547648481.368412 input_utf8_add
1547648481.368418 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368425 input_utf8_open 3
1547648481.368430 input_utf8_add
1547648481.368437 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368443 input_utf8_open 3
1547648481.368449 input_utf8_add
1547648481.368455 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368462 input_utf8_open 3
1547648481.368468 input_utf8_add
1547648481.368474 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368481 input_utf8_open 3
1547648481.368487 input_utf8_add
1547648481.368493 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368499 input_utf8_open 3
1547648481.368505 input_utf8_add
1547648481.368511 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368518 input_utf8_open 3
1547648481.368524 input_utf8_add
1547648481.368530 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368537 input_utf8_open 3
1547648481.368542 input_utf8_add
1547648481.368549 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368555 input_utf8_open 3
1547648481.368561 input_utf8_add
1547648481.368568 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368574 input_utf8_open 3
1547648481.368580 input_utf8_add
1547648481.368586 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368593 input_utf8_open 3
1547648481.368599 input_utf8_add
1547648481.368605 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368612 input_utf8_open 3
1547648481.368617 input_utf8_add
1547648481.368624 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368630 input_utf8_open 3
1547648481.368636 input_utf8_add
1547648481.368655 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368661 input_utf8_open 3
1547648481.368667 input_utf8_add
1547648481.368673 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368680 input_utf8_open 3
1547648481.368685 input_utf8_add
1547648481.368692 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368698 input_utf8_open 3
1547648481.368704 input_utf8_add
1547648481.368710 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368721 input_utf8_open 3
1547648481.368728 input_utf8_add
1547648481.368734 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368741 input_utf8_open 3
1547648481.368746 input_utf8_add
1547648481.368753 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368759 input_utf8_open 3
1547648481.368765 input_utf8_add
1547648481.368772 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368778 input_utf8_open 3
1547648481.368784 input_utf8_add
1547648481.368790 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368797 input_utf8_open 3
1547648481.368802 input_utf8_add
1547648481.368809 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368815 input_utf8_open 3
1547648481.368821 input_utf8_add
1547648481.368827 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.368834 input_utf8_open 3
1547648481.368840 input_utf8_add
1547648481.368851 input_utf8_close 3 '\342\224\220' (width 1)
1547648481.368861 input_csi_dispatch: 'H' "" "3"
1547648481.368867 input_utf8_open 3
1547648481.368873 input_utf8_add
1547648481.368880 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.368888 input_csi_dispatch: 'm' "" "39"
1547648481.368896 input_csi_dispatch: 'm' "" "0"
1547648481.368902 input_c0_dispatch: '\017'
1547648481.368943 input_csi_dispatch: 'm' "" "0"
1547648481.368949 input_c0_dispatch: '\017'
1547648481.368956 input_csi_dispatch: 'm' "" "34"
1547648481.368962 input_utf8_open 3
1547648481.368968 input_utf8_add
1547648481.368975 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.368989 input_csi_dispatch: 'H' "" "4"
1547648481.368996 input_utf8_open 3
1547648481.369001 input_utf8_add
1547648481.369008 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.369017 input_csi_dispatch: 'm' "" "39"
1547648481.369024 input_csi_dispatch: 'm' "" ""
1547648481.369030 input_c0_dispatch: '\017'
1547648481.369039 input_csi_dispatch: 'G' "" "150"
1547648481.369046 input_csi_dispatch: 'm' "" "34"
1547648481.369053 input_utf8_open 3
1547648481.369058 input_utf8_add
1547648481.369065 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.369074 input_csi_dispatch: 'H' "" "5"
1547648481.369080 input_utf8_open 3
1547648481.369086 input_utf8_add
1547648481.369093 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.369100 input_csi_dispatch: 'm' "" "39"
1547648481.369107 input_csi_dispatch: 'm' "" ""
1547648481.369113 input_c0_dispatch: '\017'
1547648481.369122 input_csi_dispatch: 'G' "" "150"
1547648481.369129 input_csi_dispatch: 'm' "" "34"
1547648481.369135 input_utf8_open 3
1547648481.369141 input_utf8_add
1547648481.369148 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.369156 input_csi_dispatch: 'H' "" "6"
1547648481.369162 input_utf8_open 3
1547648481.369168 input_utf8_add
1547648481.369175 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.369182 input_csi_dispatch: 'm' "" "39"
1547648481.369189 input_csi_dispatch: 'm' "" ""
1547648481.369195 input_c0_dispatch: '\017'
1547648481.369208 input_csi_dispatch: 'G' "" "150"
1547648481.369216 input_csi_dispatch: 'm' "" "34"
1547648481.369222 input_utf8_open 3
1547648481.369227 input_utf8_add
1547648481.369234 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.369243 input_csi_dispatch: 'H' "" "7"
1547648481.369249 input_utf8_open 3
1547648481.369254 input_utf8_add
1547648481.369261 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.369268 input_csi_dispatch: 'm' "" "39"
1547648481.369275 input_csi_dispatch: 'm' "" ""
1547648481.369281 input_c0_dispatch: '\017'
1547648481.369291 input_csi_dispatch: 'G' "" "150"
1547648481.369297 input_csi_dispatch: 'm' "" "34"
1547648481.369303 input_utf8_open 3
1547648481.369309 input_utf8_add
1547648481.369316 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.369324 input_csi_dispatch: 'H' "" "8"
1547648481.369330 input_utf8_open 3
1547648481.369336 input_utf8_add
1547648481.369343 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.369350 input_csi_dispatch: 'm' "" "39"
1547648481.369357 input_csi_dispatch: 'm' "" ""
1547648481.369363 input_c0_dispatch: '\017'
1547648481.369371 input_csi_dispatch: 'G' "" "150"
1547648481.369378 input_csi_dispatch: 'm' "" "34"
1547648481.369384 input_utf8_open 3
1547648481.369390 input_utf8_add
1547648481.369396 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.369408 input_csi_dispatch: 'H' "" "9"
1547648481.369414 input_utf8_open 3
1547648481.369420 input_utf8_add
1547648481.369427 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.369434 input_csi_dispatch: 'm' "" "39"
1547648481.369441 input_csi_dispatch: 'm' "" ""
1547648481.369447 input_c0_dispatch: '\017'
1547648481.369456 input_csi_dispatch: 'G' "" "150"
1547648481.369463 input_csi_dispatch: 'm' "" "34"
1547648481.369469 input_utf8_open 3
1547648481.369475 input_utf8_add
1547648481.369481 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.369490 input_csi_dispatch: 'H' "" "10"
1547648481.370113 @0 active pane changed
1547648481.370126 @0 name timer queued (495003 left)
1547648481.370179 %0 has 1024 bytes
1547648481.370190 @0 alerts timer reset 0
1547648481.370197 @0 alerts flags added 0x2
1547648481.370240 input_parse: %0 ground, 1024 bytes: \342\224\202\033[39m\033[m\017 Public/\033[150G\033[34m\342\224\202\033[11;1H\342\224\202\033[39m\033[m\017 Templates/\033[150G\033[34m\342\224\202\033[12;1H\342\224\202\033[39m\033[m\017 Videos/\033[150G\033[34m\342\224\202\033[13;1H\342\224\202\033[39m\033[m\017 wg/\033[150G\033[34m\342\224\202\033[14;1H\342\224\202\033[39m\033[m\017 after\033[145G80 B \033[34m\342\224\202\033[15;1H\342\224\202\033[39m\033[m\017 foo\033[144G1.4 K \033[34m\342\224\202\033[16;1H\342\224\202\033[39m\033[m\017 foo.wav\033[16;142H656.3 K \033[34m\342\224\202\033[17;1H\342\224\202\033[39m\033[m\017 privkeyA\033[145G45 B \033[34m\342\224\202\033[18;1H\342\224\202\033[39m\033[m\017 privkeyB\033[145G45 B \033[34m\342\224\202\033[19;1H\342\224\202\033[39m\033[m\017 pubkeyA\033[145G45 B \033[34m\342\224\202\033[20;1H\342\224\202\033[39m\033[m\017 pubkeyB\033[145G45 B \033[34m\342\224\202\033[21;1H\342\224\202\033[39m\033[m\017 tmate-client-11567.log\033[144G6.8 K \033[34m\342\224\202\033[22;1H\342\224\202\033[39m\033[m\017 tmate-client-28945.log\033[144G7.0 K \033[34m\342\224\202\033[23;1H\342\224\202\033[39m\033[m\017 tmate-server-11569.log\033[143G69.7 K \033[34m\342\224\202\033[24;1H\342\224\202\033[39m\033[m\017 tmate-server-28947.log\033[24;142H124.9 K \033[34m\342\224\202\033[25;1H\342\224\202\033[39m\033[m\017 tmux-client-3128.log\033[144G5.0 K \033[34m\342\224\202\033[26;1H\342\224\202\033[39m\033[m\017 tmux-server-3130.log\033[26;142H113.5 K \033[34m\342\224\202\033[27;1H\342\224\202\033[32m wg-demo.sh                                                                                                                                   691 B \033
1547648481.370250 input_utf8_open 3
1547648481.370256 input_utf8_add
1547648481.370265 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.370287 input_csi_dispatch: 'm' "" "39"
1547648481.370295 input_csi_dispatch: 'm' "" ""
1547648481.370302 input_c0_dispatch: '\017'
1547648481.370318 input_csi_dispatch: 'G' "" "150"
1547648481.370326 input_csi_dispatch: 'm' "" "34"
1547648481.370332 input_utf8_open 3
1547648481.370338 input_utf8_add
1547648481.370345 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.370358 input_csi_dispatch: 'H' "" "11"
1547648481.370365 input_utf8_open 3
1547648481.370371 input_utf8_add
1547648481.370377 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.370387 input_csi_dispatch: 'm' "" "39"
1547648481.370394 input_csi_dispatch: 'm' "" ""
1547648481.370400 input_c0_dispatch: '\017'
1547648481.370418 input_csi_dispatch: 'G' "" "150"
1547648481.370425 input_csi_dispatch: 'm' "" "34"
1547648481.370431 input_utf8_open 3
1547648481.370437 input_utf8_add
1547648481.370444 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.370456 input_csi_dispatch: 'H' "" "12"
1547648481.370462 input_utf8_open 3
1547648481.370467 input_utf8_add
1547648481.370474 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.370484 input_csi_dispatch: 'm' "" "39"
1547648481.370490 input_csi_dispatch: 'm' "" ""
1547648481.370496 input_c0_dispatch: '\017'
1547648481.370511 input_csi_dispatch: 'G' "" "150"
1547648481.370518 input_csi_dispatch: 'm' "" "34"
1547648481.370524 input_utf8_open 3
1547648481.370530 input_utf8_add
1547648481.370536 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.370549 input_csi_dispatch: 'H' "" "13"
1547648481.370555 input_utf8_open 3
1547648481.370561 input_utf8_add
1547648481.370567 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.370577 input_csi_dispatch: 'm' "" "39"
1547648481.370584 input_csi_dispatch: 'm' "" ""
1547648481.370590 input_c0_dispatch: '\017'
1547648481.370601 input_csi_dispatch: 'G' "" "150"
1547648481.370608 input_csi_dispatch: 'm' "" "34"
1547648481.370614 input_utf8_open 3
1547648481.370620 input_utf8_add
1547648481.370627 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.370639 input_csi_dispatch: 'H' "" "14"
1547648481.370645 input_utf8_open 3
1547648481.370658 input_utf8_add
1547648481.370665 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.370675 input_csi_dispatch: 'm' "" "39"
1547648481.370682 input_csi_dispatch: 'm' "" ""
1547648481.370688 input_c0_dispatch: '\017'
1547648481.370701 input_csi_dispatch: 'G' "" "145"
1547648481.370715 input_csi_dispatch: 'm' "" "34"
1547648481.370721 input_utf8_open 3
1547648481.370727 input_utf8_add
1547648481.370734 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.370748 input_csi_dispatch: 'H' "" "15"
1547648481.370758 input_utf8_open 3
1547648481.370767 input_utf8_add
1547648481.370778 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.370796 input_csi_dispatch: 'm' "" "39"
1547648481.370807 input_csi_dispatch: 'm' "" ""
1547648481.370818 input_c0_dispatch: '\017'
1547648481.370837 input_csi_dispatch: 'G' "" "144"
1547648481.370865 input_csi_dispatch: 'm' "" "34"
1547648481.370875 input_utf8_open 3
1547648481.370885 input_utf8_add
1547648481.370896 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.370913 input_csi_dispatch: 'H' "" "16"
1547648481.370924 input_utf8_open 3
1547648481.370933 input_utf8_add
1547648481.370945 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.370961 input_csi_dispatch: 'm' "" "39"
1547648481.370972 input_csi_dispatch: 'm' "" ""
1547648481.370994 input_c0_dispatch: '\017'
1547648481.371027 input_csi_dispatch: 'H' "" "16"
1547648481.371055 input_csi_dispatch: 'm' "" "34"
1547648481.371067 input_utf8_open 3
1547648481.371076 input_utf8_add
1547648481.371087 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.371106 input_csi_dispatch: 'H' "" "17"
1547648481.371115 input_utf8_open 3
1547648481.371121 input_utf8_add
1547648481.371128 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.371138 input_csi_dispatch: 'm' "" "39"
1547648481.371145 input_csi_dispatch: 'm' "" ""
1547648481.371151 input_c0_dispatch: '\017'
1547648481.371167 input_csi_dispatch: 'G' "" "145"
1547648481.371180 input_csi_dispatch: 'm' "" "34"
1547648481.371187 input_utf8_open 3
1547648481.371193 input_utf8_add
1547648481.371199 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.371209 input_csi_dispatch: 'H' "" "18"
1547648481.371216 input_utf8_open 3
1547648481.371221 input_utf8_add
1547648481.371228 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.371238 input_csi_dispatch: 'm' "" "39"
1547648481.371244 input_csi_dispatch: 'm' "" ""
1547648481.371250 input_c0_dispatch: '\017'
1547648481.371266 input_csi_dispatch: 'G' "" "145"
1547648481.371279 input_csi_dispatch: 'm' "" "34"
1547648481.371285 input_utf8_open 3
1547648481.371291 input_utf8_add
1547648481.371298 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.371308 input_csi_dispatch: 'H' "" "19"
1547648481.371314 input_utf8_open 3
1547648481.371320 input_utf8_add
1547648481.371327 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.371336 input_csi_dispatch: 'm' "" "39"
1547648481.371343 input_csi_dispatch: 'm' "" ""
1547648481.371349 input_c0_dispatch: '\017'
1547648481.371363 input_csi_dispatch: 'G' "" "145"
1547648481.371377 input_csi_dispatch: 'm' "" "34"
1547648481.371383 input_utf8_open 3
1547648481.371389 input_utf8_add
1547648481.371395 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.371405 input_csi_dispatch: 'H' "" "20"
1547648481.371412 input_utf8_open 3
1547648481.371417 input_utf8_add
1547648481.371424 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.371433 input_csi_dispatch: 'm' "" "39"
1547648481.371440 input_csi_dispatch: 'm' "" ""
1547648481.371446 input_c0_dispatch: '\017'
1547648481.371461 input_csi_dispatch: 'G' "" "145"
1547648481.371474 input_csi_dispatch: 'm' "" "34"
1547648481.371480 input_utf8_open 3
1547648481.371486 input_utf8_add
1547648481.371492 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.371503 input_csi_dispatch: 'H' "" "21"
1547648481.371509 input_utf8_open 3
1547648481.371515 input_utf8_add
1547648481.371521 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.371530 input_csi_dispatch: 'm' "" "39"
1547648481.371537 input_csi_dispatch: 'm' "" ""
1547648481.371553 input_c0_dispatch: '\017'
1547648481.371587 input_csi_dispatch: 'G' "" "144"
1547648481.371602 input_csi_dispatch: 'm' "" "34"
1547648481.371609 input_utf8_open 3
1547648481.371614 input_utf8_add
1547648481.371621 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.371631 input_csi_dispatch: 'H' "" "22"
1547648481.371638 input_utf8_open 3
1547648481.371644 input_utf8_add
1547648481.371650 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.371660 input_csi_dispatch: 'm' "" "39"
1547648481.371667 input_csi_dispatch: 'm' "" ""
1547648481.371673 input_c0_dispatch: '\017'
1547648481.371700 input_csi_dispatch: 'G' "" "144"
1547648481.371714 input_csi_dispatch: 'm' "" "34"
1547648481.371720 input_utf8_open 3
1547648481.371726 input_utf8_add
1547648481.371733 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.371743 input_csi_dispatch: 'H' "" "23"
1547648481.371749 input_utf8_open 3
1547648481.371755 input_utf8_add
1547648481.371762 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.371771 input_csi_dispatch: 'm' "" "39"
1547648481.371778 input_csi_dispatch: 'm' "" ""
1547648481.371784 input_c0_dispatch: '\017'
1547648481.371811 input_csi_dispatch: 'G' "" "143"
1547648481.371830 input_csi_dispatch: 'm' "" "34"
1547648481.371837 input_utf8_open 3
1547648481.371843 input_utf8_add
1547648481.371850 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.371860 input_csi_dispatch: 'H' "" "24"
1547648481.371866 input_utf8_open 3
1547648481.371872 input_utf8_add
1547648481.371879 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.371888 input_csi_dispatch: 'm' "" "39"
1547648481.371895 input_csi_dispatch: 'm' "" ""
1547648481.371901 input_c0_dispatch: '\017'
1547648481.371929 input_csi_dispatch: 'H' "" "24"
1547648481.371944 input_csi_dispatch: 'm' "" "34"
1547648481.371950 input_utf8_open 3
1547648481.371956 input_utf8_add
1547648481.371963 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.371973 input_csi_dispatch: 'H' "" "25"
1547648481.371991 input_utf8_open 3
1547648481.371999 input_utf8_add
1547648481.372005 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.372016 input_csi_dispatch: 'm' "" "39"
1547648481.372023 input_csi_dispatch: 'm' "" ""
1547648481.372029 input_c0_dispatch: '\017'
1547648481.372054 input_csi_dispatch: 'G' "" "144"
1547648481.372068 input_csi_dispatch: 'm' "" "34"
1547648481.372075 input_utf8_open 3
1547648481.372080 input_utf8_add
1547648481.372087 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.372097 input_csi_dispatch: 'H' "" "26"
1547648481.372104 input_utf8_open 3
1547648481.372109 input_utf8_add
1547648481.372120 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.372130 input_csi_dispatch: 'm' "" "39"
1547648481.372137 input_csi_dispatch: 'm' "" ""
1547648481.372143 input_c0_dispatch: '\017'
1547648481.372169 input_csi_dispatch: 'H' "" "26"
1547648481.372184 input_csi_dispatch: 'm' "" "34"
1547648481.372190 input_utf8_open 3
1547648481.372196 input_utf8_add
1547648481.372203 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.372213 input_csi_dispatch: 'H' "" "27"
1547648481.372219 input_utf8_open 3
1547648481.372225 input_utf8_add
1547648481.372231 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.372241 input_csi_dispatch: 'm' "" "32"
1547648481.372401 @0 active pane changed
1547648481.372412 @0 name timer already queued (492719 left)
1547648481.372446 %0 has 865 bytes
1547648481.372464 @0 alerts timer reset 0
1547648481.372471 @0 alerts flags added 0x2
1547648481.372502 input_parse: %0 esc_enter, 865 bytes: [34m\342\224\202\033[28;1H\342\224\202\033[32m y2j                                                                                                                                          2.9 M \033[34m\342\224\202\033[29;1H\342\224\202\033[39m\033[m\017 y2j.go\033[144G188 B \033[34m\342\224\202\033[30;1H\342\224\202\033[150G\342\224\202\033[31;1H\342\224\202\033[150G\342\224\202\033[32;1H\342\224\202\033[150G\342\224\202\033[33;1H\342\224\202\033[150G\342\224\202\033[34;1H\342\224\224\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\200\342\224\230\033[33;2H\033[39m\033[m\017\033[H\033[32m/home/chriswaldon/\033[149G\033[39m\033[0;1m\0171\033[35;134H\033[m\017\033[1K \033[36mFD         1/27\033[39m\033[m\017
1547648481.372521 input_csi_dispatch: 'm' "" "34"
1547648481.372528 input_utf8_open 3
1547648481.372534 input_utf8_add
1547648481.372542 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.372562 input_csi_dispatch: 'H' "" "28"
1547648481.372569 input_utf8_open 3
1547648481.372575 input_utf8_add
1547648481.372581 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.372591 input_csi_dispatch: 'm' "" "32"
1547648481.372731 input_csi_dispatch: 'm' "" "34"
1547648481.372737 input_utf8_open 3
1547648481.372743 input_utf8_add
1547648481.372750 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.372760 input_csi_dispatch: 'H' "" "29"
1547648481.372766 input_utf8_open 3
1547648481.372772 input_utf8_add
1547648481.372778 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.372788 input_csi_dispatch: 'm' "" "39"
1547648481.372794 input_csi_dispatch: 'm' "" ""
1547648481.372801 input_c0_dispatch: '\017'
1547648481.372814 input_csi_dispatch: 'G' "" "144"
1547648481.372829 input_csi_dispatch: 'm' "" "34"
1547648481.372835 input_utf8_open 3
1547648481.372841 input_utf8_add
1547648481.372848 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.372858 input_csi_dispatch: 'H' "" "30"
1547648481.372864 input_utf8_open 3
1547648481.372870 input_utf8_add
1547648481.372876 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.372889 input_csi_dispatch: 'G' "" "150"
1547648481.372899 input_utf8_open 3
1547648481.372907 input_utf8_add
1547648481.372919 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.372938 input_csi_dispatch: 'H' "" "31"
1547648481.372949 input_utf8_open 3
1547648481.372958 input_utf8_add
1547648481.372969 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.372998 input_csi_dispatch: 'G' "" "150"
1547648481.373012 input_utf8_open 3
1547648481.373021 input_utf8_add
1547648481.373032 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.373050 input_csi_dispatch: 'H' "" "32"
1547648481.373061 input_utf8_open 3
1547648481.373070 input_utf8_add
1547648481.373081 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.373097 input_csi_dispatch: 'G' "" "150"
1547648481.373108 input_utf8_open 3
1547648481.373118 input_utf8_add
1547648481.373129 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.373155 input_csi_dispatch: 'H' "" "33"
1547648481.373162 input_utf8_open 3
1547648481.373168 input_utf8_add
1547648481.373175 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.373184 input_csi_dispatch: 'G' "" "150"
1547648481.373191 input_utf8_open 3
1547648481.373197 input_utf8_add
1547648481.373203 input_utf8_close 3 '\342\224\202' (width 1)
1547648481.373214 input_csi_dispatch: 'H' "" "34"
1547648481.373220 input_utf8_open 3
1547648481.373226 input_utf8_add
1547648481.373232 input_utf8_close 3 '\342\224\224' (width 1)
1547648481.373241 input_utf8_open 3
1547648481.373247 input_utf8_add
1547648481.373253 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373261 input_utf8_open 3
1547648481.373266 input_utf8_add
1547648481.373273 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373281 input_utf8_open 3
1547648481.373286 input_utf8_add
1547648481.373293 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373300 input_utf8_open 3
1547648481.373306 input_utf8_add
1547648481.373313 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373320 input_utf8_open 3
1547648481.373326 input_utf8_add
1547648481.373333 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373340 input_utf8_open 3
1547648481.373346 input_utf8_add
1547648481.373353 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373360 input_utf8_open 3
1547648481.373366 input_utf8_add
1547648481.373372 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373380 input_utf8_open 3
1547648481.373386 input_utf8_add
1547648481.373392 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373400 input_utf8_open 3
1547648481.373406 input_utf8_add
1547648481.373412 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373420 input_utf8_open 3
1547648481.373425 input_utf8_add
1547648481.373432 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373439 input_utf8_open 3
1547648481.373445 input_utf8_add
1547648481.373451 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373459 input_utf8_open 3
1547648481.373465 input_utf8_add
1547648481.373471 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373479 input_utf8_open 3
1547648481.373484 input_utf8_add
1547648481.373491 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373499 input_utf8_open 3
1547648481.373504 input_utf8_add
1547648481.373511 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373518 input_utf8_open 3
1547648481.373524 input_utf8_add
1547648481.373531 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373538 input_utf8_open 3
1547648481.373544 input_utf8_add
1547648481.373551 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373558 input_utf8_open 3
1547648481.373564 input_utf8_add
1547648481.373570 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373578 input_utf8_open 3
1547648481.373583 input_utf8_add
1547648481.373590 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373598 input_utf8_open 3
1547648481.373603 input_utf8_add
1547648481.373610 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373617 input_utf8_open 3
1547648481.373623 input_utf8_add
1547648481.373630 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373637 input_utf8_open 3
1547648481.373643 input_utf8_add
1547648481.373650 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373657 input_utf8_open 3
1547648481.373663 input_utf8_add
1547648481.373670 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373677 input_utf8_open 3
1547648481.373682 input_utf8_add
1547648481.373689 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373696 input_utf8_open 3
1547648481.373702 input_utf8_add
1547648481.373709 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373717 input_utf8_open 3
1547648481.373723 input_utf8_add
1547648481.373729 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373736 input_utf8_open 3
1547648481.373742 input_utf8_add
1547648481.373749 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373762 input_utf8_open 3
1547648481.373768 input_utf8_add
1547648481.373775 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373788 input_utf8_open 3
1547648481.373794 input_utf8_add
1547648481.373801 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373808 input_utf8_open 3
1547648481.373814 input_utf8_add
1547648481.373820 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373828 input_utf8_open 3
1547648481.373833 input_utf8_add
1547648481.373840 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373847 input_utf8_open 3
1547648481.373853 input_utf8_add
1547648481.373860 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373867 input_utf8_open 3
1547648481.373873 input_utf8_add
1547648481.373883 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373891 input_utf8_open 3
1547648481.373897 input_utf8_add
1547648481.373903 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373911 input_utf8_open 3
1547648481.373916 input_utf8_add
1547648481.373923 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373931 input_utf8_open 3
1547648481.373936 input_utf8_add
1547648481.373943 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373950 input_utf8_open 3
1547648481.373956 input_utf8_add
1547648481.373963 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.373970 input_utf8_open 3
1547648481.373976 input_utf8_add
1547648481.373996 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374010 input_utf8_open 3
1547648481.374016 input_utf8_add
1547648481.374023 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374030 input_utf8_open 3
1547648481.374036 input_utf8_add
1547648481.374043 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374050 input_utf8_open 3
1547648481.374056 input_utf8_add
1547648481.374062 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374070 input_utf8_open 3
1547648481.374076 input_utf8_add
1547648481.374083 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374090 input_utf8_open 3
1547648481.374096 input_utf8_add
1547648481.374105 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374113 input_utf8_open 3
1547648481.374119 input_utf8_add
1547648481.374126 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374133 input_utf8_open 3
1547648481.374139 input_utf8_add
1547648481.374146 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374153 input_utf8_open 3
1547648481.374159 input_utf8_add
1547648481.374165 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374180 input_utf8_open 3
1547648481.374186 input_utf8_add
1547648481.374193 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374201 input_utf8_open 3
1547648481.374206 input_utf8_add
1547648481.374213 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374220 input_utf8_open 3
1547648481.374226 input_utf8_add
1547648481.374233 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374243 input_utf8_open 3
1547648481.374249 input_utf8_add
1547648481.374256 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374264 input_utf8_open 3
1547648481.374269 input_utf8_add
1547648481.374276 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374301 input_utf8_open 3
1547648481.374307 input_utf8_add
1547648481.374314 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374321 input_utf8_open 3
1547648481.374327 input_utf8_add
1547648481.374334 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374341 input_utf8_open 3
1547648481.374347 input_utf8_add
1547648481.374353 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374360 input_utf8_open 3
1547648481.374366 input_utf8_add
1547648481.374373 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374380 input_utf8_open 3
1547648481.374386 input_utf8_add
1547648481.374392 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374401 input_utf8_open 3
1547648481.374407 input_utf8_add
1547648481.374413 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374420 input_utf8_open 3
1547648481.374426 input_utf8_add
1547648481.374433 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374440 input_utf8_open 3
1547648481.374445 input_utf8_add
1547648481.374452 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374460 input_utf8_open 3
1547648481.374473 input_utf8_add
1547648481.374479 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374487 input_utf8_open 3
1547648481.374493 input_utf8_add
1547648481.374499 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374507 input_utf8_open 3
1547648481.374513 input_utf8_add
1547648481.374520 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374527 input_utf8_open 3
1547648481.374532 input_utf8_add
1547648481.374539 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374547 input_utf8_open 3
1547648481.374553 input_utf8_add
1547648481.374559 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374567 input_utf8_open 3
1547648481.374572 input_utf8_add
1547648481.374579 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374586 input_utf8_open 3
1547648481.374591 input_utf8_add
1547648481.374598 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374606 input_utf8_open 3
1547648481.374612 input_utf8_add
1547648481.374619 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374626 input_utf8_open 3
1547648481.374631 input_utf8_add
1547648481.374638 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374645 input_utf8_open 3
1547648481.374651 input_utf8_add
1547648481.374657 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374665 input_utf8_open 3
1547648481.374670 input_utf8_add
1547648481.374677 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374684 input_utf8_open 3
1547648481.374690 input_utf8_add
1547648481.374696 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374704 input_utf8_open 3
1547648481.374710 input_utf8_add
1547648481.374716 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374723 input_utf8_open 3
1547648481.374729 input_utf8_add
1547648481.374736 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374743 input_utf8_open 3
1547648481.374749 input_utf8_add
1547648481.374755 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374762 input_utf8_open 3
1547648481.374768 input_utf8_add
1547648481.374775 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374782 input_utf8_open 3
1547648481.374788 input_utf8_add
1547648481.374794 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374804 input_utf8_open 3
1547648481.374810 input_utf8_add
1547648481.374816 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374823 input_utf8_open 3
1547648481.374829 input_utf8_add
1547648481.374835 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374842 input_utf8_open 3
1547648481.374848 input_utf8_add
1547648481.374854 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374862 input_utf8_open 3
1547648481.374867 input_utf8_add
1547648481.374874 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374881 input_utf8_open 3
1547648481.374886 input_utf8_add
1547648481.374893 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374900 input_utf8_open 3
1547648481.374906 input_utf8_add
1547648481.374912 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374920 input_utf8_open 3
1547648481.374926 input_utf8_add
1547648481.374932 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374939 input_utf8_open 3
1547648481.374945 input_utf8_add
1547648481.374952 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374959 input_utf8_open 3
1547648481.374965 input_utf8_add
1547648481.374971 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.374987 input_utf8_open 3
1547648481.374995 input_utf8_add
1547648481.375001 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375009 input_utf8_open 3
1547648481.375015 input_utf8_add
1547648481.375022 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375029 input_utf8_open 3
1547648481.375035 input_utf8_add
1547648481.375041 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375048 input_utf8_open 3
1547648481.375054 input_utf8_add
1547648481.375061 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375068 input_utf8_open 3
1547648481.375074 input_utf8_add
1547648481.375080 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375088 input_utf8_open 3
1547648481.375093 input_utf8_add
1547648481.375106 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375114 input_utf8_open 3
1547648481.375120 input_utf8_add
1547648481.375126 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375134 input_utf8_open 3
1547648481.375139 input_utf8_add
1547648481.375146 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375153 input_utf8_open 3
1547648481.375159 input_utf8_add
1547648481.375166 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375173 input_utf8_open 3
1547648481.375178 input_utf8_add
1547648481.375185 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375193 input_utf8_open 3
1547648481.375198 input_utf8_add
1547648481.375205 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375212 input_utf8_open 3
1547648481.375218 input_utf8_add
1547648481.375225 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375232 input_utf8_open 3
1547648481.375237 input_utf8_add
1547648481.375244 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375251 input_utf8_open 3
1547648481.375257 input_utf8_add
1547648481.375264 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375271 input_utf8_open 3
1547648481.375276 input_utf8_add
1547648481.375283 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375290 input_utf8_open 3
1547648481.375296 input_utf8_add
1547648481.375303 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375310 input_utf8_open 3
1547648481.375316 input_utf8_add
1547648481.375322 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375329 input_utf8_open 3
1547648481.375335 input_utf8_add
1547648481.375342 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375353 input_utf8_open 3
1547648481.375359 input_utf8_add
1547648481.375366 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375373 input_utf8_open 3
1547648481.375379 input_utf8_add
1547648481.375386 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375393 input_utf8_open 3
1547648481.375399 input_utf8_add
1547648481.375405 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375412 input_utf8_open 3
1547648481.375418 input_utf8_add
1547648481.375425 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375432 input_utf8_open 3
1547648481.375438 input_utf8_add
1547648481.375444 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375452 input_utf8_open 3
1547648481.375458 input_utf8_add
1547648481.375464 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375471 input_utf8_open 3
1547648481.375477 input_utf8_add
1547648481.375484 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375491 input_utf8_open 3
1547648481.375496 input_utf8_add
1547648481.375503 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375510 input_utf8_open 3
1547648481.375516 input_utf8_add
1547648481.375523 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375530 input_utf8_open 3
1547648481.375536 input_utf8_add
1547648481.375542 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375549 input_utf8_open 3
1547648481.375555 input_utf8_add
1547648481.375562 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375569 input_utf8_open 3
1547648481.375574 input_utf8_add
1547648481.375581 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375588 input_utf8_open 3
1547648481.375594 input_utf8_add
1547648481.375600 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375607 input_utf8_open 3
1547648481.375613 input_utf8_add
1547648481.375620 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375627 input_utf8_open 3
1547648481.375633 input_utf8_add
1547648481.375640 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375647 input_utf8_open 3
1547648481.375653 input_utf8_add
1547648481.375659 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375666 input_utf8_open 3
1547648481.375672 input_utf8_add
1547648481.375679 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375686 input_utf8_open 3
1547648481.375692 input_utf8_add
1547648481.375698 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375706 input_utf8_open 3
1547648481.375712 input_utf8_add
1547648481.375718 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375731 input_utf8_open 3
1547648481.375736 input_utf8_add
1547648481.375743 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375750 input_utf8_open 3
1547648481.375756 input_utf8_add
1547648481.375763 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375770 input_utf8_open 3
1547648481.375776 input_utf8_add
1547648481.375783 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375790 input_utf8_open 3
1547648481.375796 input_utf8_add
1547648481.375802 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375809 input_utf8_open 3
1547648481.375815 input_utf8_add
1547648481.375822 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375829 input_utf8_open 3
1547648481.375835 input_utf8_add
1547648481.375842 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375849 input_utf8_open 3
1547648481.375854 input_utf8_add
1547648481.375861 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375868 input_utf8_open 3
1547648481.375874 input_utf8_add
1547648481.375880 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375899 input_utf8_open 3
1547648481.375906 input_utf8_add
1547648481.375912 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375919 input_utf8_open 3
1547648481.375925 input_utf8_add
1547648481.375932 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375939 input_utf8_open 3
1547648481.375944 input_utf8_add
1547648481.375951 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375959 input_utf8_open 3
1547648481.375964 input_utf8_add
1547648481.375971 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.375978 input_utf8_open 3
1547648481.375993 input_utf8_add
1547648481.375999 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.376007 input_utf8_open 3
1547648481.376012 input_utf8_add
1547648481.376019 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.376026 input_utf8_open 3
1547648481.376032 input_utf8_add
1547648481.376038 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.376046 input_utf8_open 3
1547648481.376052 input_utf8_add
1547648481.376058 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.376065 input_utf8_open 3
1547648481.376071 input_utf8_add
1547648481.376078 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.376085 input_utf8_open 3
1547648481.376090 input_utf8_add
1547648481.376097 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.376104 input_utf8_open 3
1547648481.376110 input_utf8_add
1547648481.376116 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.376123 input_utf8_open 3
1547648481.376129 input_utf8_add
1547648481.376136 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.376143 input_utf8_open 3
1547648481.376148 input_utf8_add
1547648481.376155 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.376170 input_utf8_open 3
1547648481.376176 input_utf8_add
1547648481.376183 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.376190 input_utf8_open 3
1547648481.376195 input_utf8_add
1547648481.376202 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.376209 input_utf8_open 3
1547648481.376215 input_utf8_add
1547648481.376221 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.376229 input_utf8_open 3
1547648481.376234 input_utf8_add
1547648481.376241 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.376248 input_utf8_open 3
1547648481.376253 input_utf8_add
1547648481.376260 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.376267 input_utf8_open 3
1547648481.376273 input_utf8_add
1547648481.376279 input_utf8_close 3 '\342\224\200' (width 1)
1547648481.376287 input_utf8_open 3
1547648481.376293 input_utf8_add
1547648481.376299 input_utf8_close 3 '\342\224\230' (width 1)
1547648481.376308 input_csi_dispatch: 'H' "" "33"
1547648481.376316 input_csi_dispatch: 'm' "" "39"
1547648481.376323 input_csi_dispatch: 'm' "" ""
1547648481.376329 input_c0_dispatch: '\017'
1547648481.376336 input_csi_dispatch: 'H' "" ""
1547648481.376343 input_csi_dispatch: 'm' "" "32"
1547648481.376372 input_csi_dispatch: 'G' "" "149"
1547648481.376379 input_csi_dispatch: 'm' "" "39"
1547648481.376393 input_csi_dispatch: 'm' "" "0"
1547648481.376400 input_c0_dispatch: '\017'
1547648481.376411 input_csi_dispatch: 'H' "" "35"
1547648481.376418 input_csi_dispatch: 'm' "" ""
1547648481.376424 input_c0_dispatch: '\017'
1547648481.376431 input_csi_dispatch: 'K' "" "1"
1547648481.376445 input_csi_dispatch: 'm' "" "36"
1547648481.376468 input_csi_dispatch: 'm' "" "39"
1547648481.376474 input_csi_dispatch: 'm' "" ""
1547648481.376481 input_c0_dispatch: '\017'
1547648481.376495 @0 active pane changed
1547648481.376503 @0 name timer already queued (488626 left)
1547648481.376531 @0 active pane changed
1547648481.376539 @0 name timer already queued (488589 left)
1547648481.674960 [tmate] I Looking up localhost...
1547648481.675539 [tmate] D Connecting to localhost...
1547648481.675571 [tmate] D Trying server 127.0.0.1
1547648481.675919 [tmate] D [1] [socket_callback_connected] socket_callback_connected: Socket connection callback: 1 (0)
1547648481.678574 @0 active pane changed
1547648481.678595 @0 name timer already queued (186534 left)
1547648481.678663 [tmate] D [1] [ssh_client_connection_callback] ssh_client_connection_callback: SSH server banner: SSH-2.0-tmate
1547648481.678676 [tmate] D [1] [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-tmate
1547648481.678760 [tmate] D [1] [ssh_known_hosts_read_entries] ssh_known_hosts_read_entries: Failed to open the known_hosts file '/etc/ssh/ssh_known_hosts': No such file or directory
1547648481.682178 @0 active pane changed
1547648481.682188 @0 name timer already queued (182940 left)
1547648481.703614 @0 active pane changed
1547648481.703638 @0 name timer already queued (161489 left)
1547648481.707347 [tmate] D Establishing connection to 127.0.0.1
1547648481.707361 [tmate] D Cannot authenticate server
1547648481.707371 [tmate] D SSH client killed (127.0.0.1)
1547648481.707421 [tmate] D Reconnecting... (Cannot authenticate server)
1547648481.708236 @0 active pane changed
1547648481.708242 @0 name timer already queued (156885 left)
1547648481.708259 @0 active pane changed
1547648481.708262 @0 name timer already queued (156865 left)
1547648481.866518 @0 name timer expired
1547648481.866559 @0 active pane changed
1547648481.866661 format '#{pane_current_command}' -> 'rover'
1547648481.866670 format '' -> ''
1547648481.866675 format '#{?pane_in_mode,[tmux],#{pane_current_command}}#{?pane_dead,[dead],}' -> 'rover'
1547648481.866687 @0 name not changed (still rover)
1547648482.684889 keys are 1 (q)
1547648482.684946 complete key q 0x71
1547648482.684961 session 0 activity 1547648482.684955 (last 1547648481.364943)
1547648482.684974 session 0 not pasting
1547648482.685010 writing key 0x71 (q) to %0
1547648482.685042 @0 active pane not changed
1547648482.685097 @0 active pane not changed
1547648482.685300 %0 has 34 bytes
1547648482.685331 @0 alerts timer reset 0
1547648482.685342 @0 alerts flags added 0x2
1547648482.685356 input_parse: %0 ground, 34 bytes: \033[35;1H\033[34h\033[?25h\033[?1049l\r\033[?1l\033>
1547648482.685371 input_csi_dispatch: 'H' "" "35"
1547648482.685383 input_csi_dispatch: 'h' "" "34"
1547648482.685392 input_csi_dispatch: 'h' "?" "25"
1547648482.685402 input_csi_dispatch: 'l' "?" "1049"
1547648482.685428 input_c0_dispatch: '\r'
1547648482.685438 input_csi_dispatch: 'l' "?" "1"
1547648482.685448 input_esc_dispatch: '>', 
1547648482.685509 @0 active pane changed
1547648482.685651 format '#{pane_current_command}' -> 'env'
1547648482.685665 format '' -> ''
1547648482.685676 format '#{?pane_in_mode,[tmux],#{pane_current_command}}#{?pane_dead,[dead],}' -> 'env'
1547648482.685697 @0 new name env (was rover)
1547648482.685807 cmd_find_from_window: s=$0
1547648482.685820 cmd_find_from_window: wl=0 1 w=@0 env
1547648482.685827 cmd_find_from_window: wp=none
1547648482.685834 cmd_find_from_window: idx=0
1547648482.685845 session 0 has 2 references
1547648482.685855 session 0 destroyed
1547648482.685864 session 0 has 2 references
1547648482.685871 session 0 has 1 references
1547648482.685909 session 0 freed (0 references)
1547648482.686008 sending message 203 to peer 0x55a1196b2d90 (4 bytes)
1547648482.687598 peer 0x55a1196b2d90 message 205
1547648482.687714 sending message 204 to peer 0x55a1196b2d90 (0 bytes)
1547648482.689675 lost client 0x55a1196b27b0
1547648482.689773 remove peer 0x55a1196b2d90
1547648482.689848 unref client 0x55a1196b27b0 (1 references)
1547648482.689908 free client 0x55a1196b27b0 (0 references)
1547648482.689925 server loop exit

In the above, ls ./keys gave:

ssh_host_ecdsa_key
ssh_host_ecdsa_key.pub
ssh_host_rsa_key
ssh_host_rsa_key.pub
ssh_host_ed25519_key
ssh_host_ed25519_key.pub

If I simply move the ed25519 keys to some other folder and restart the tmate-slave, I can connect just fine. Is this a bug, or a misunderstanding on my part? I tried to see whether set -g tmate-server-ed25519-fingerprint "fpr" was legal, but that produced errors from the client.

Context:

  • My tmate-slave is available on localhost:2222 (it's running from a docker container)

Error while running tmate-slave

Hi, i getting error while running tmate:

./tmate-slave
./tmate-slave: symbol lookup error: ./tmate-slave: undefined symbol: ssh_set_log_callback

My os:
Linux TmateSrv 3.13.0-24-generic #47~precise2-Ubuntu SMP Fri May 2 23:30:46 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

when client join. "Error writing to channel:"

Don't know if it is the same issue as #45. git clone from 8fc519a

Install on ubuntu 18.04

$apt install libmsgpack-dev
$pkg-config --libs --cflags msgpack
-lmsgpackc
$ pkg-config --modversion msgpack
2.1.5

On tmate server side

start debug binary 
#./tmate-slave -h x.x.x.x -v

<6> (tmate) Connection accepted ip=x.x.x.x
<6> (tmate) Bootstrapping ssh client ip=x.x.x.x
<6> (tmate) [ssh_server_connection_callback] ssh_server_connection_callback: SSH client banner: SSH-2.0-OpenSSH_7.9
<6> (tmate) [ssh_analyze_banner] ssh_analyze_banner: Analyzing banner: SSH-2.0-OpenSSH_7.9
<6> (tmate) [ssh_analyze_banner] ssh_analyze_banner: We are talking to an OpenSSH client version: 7.9 (70900)
<6> [lUPa...] (tmate) Spawning pty client for x.x.x.x (AAAAB3NzaC1yc2EAAAADAQABAAABAQDUjF4b26/XOFAPFx2WoTjfoSyI1YyZ85R77XtVFL/UVDxdA8GBKGaxEH7dJCwC3RZjE1EGR45D/BkLsDpGbxq7Xy2IkZ15/R8tKi2W2Pv+aTCZBEYQQE0oOy+Ctm86G71RaYAsYOTV6NMJ4CabXj3k0/FnGiFAP81ZgHk8Vg9elZDBlo7SYMM/6qf7BLrJd+stH+y2qRTuQmYbcpxas3uyG3t3F4EYWLy6gOaqP6WNBxYGteJjAxEW4p40QF8Rbzx87aWqYPHhtXmI2200Jvx7HK7CV+WCCXTZhDH5fA1GkTpf4h731BJl887GgzLkHWB1cqttE1kMsx+i3AIsTyHb)
<6> [lUPa...] (tmate) Dropped priviledges to nobody (65534,65534), jailed in /tmp/tmate/jail
<6> [lUPa...] (tmate) Client joined (cid=0)
<4> [lUPa...] (tmate) Error writing to channel: 
<6> [lUPa...] (tmate) Client left (cid=0)


On tmate client join side

yen@yens-MacBook-Pro:~$ ssh [email protected]
[server exited]
Connection to x.x.x.x closed by remote host.
Connection to x.x.x.x closed.

Get stucked when connecting to server

I set up a tmate-slave 10.2.10.20 and have my tmate configured on Arch Linux:

set -g tmate-server-host "10.2.10.20"
set -g tmate-server-port 9000
set -g tmate-server-rsa-fingerprint "aa:bb:cc:dd:ee:ff:00:11:22:33:44:55:66:77:88:99"

And it stucked at:

[tmate] Connecting to 10.2.10.20...

screenshot18

my solutions for installing tmate server in centos 6.7 x64

I just install tmate server on my machine for personal use and for fun. so if you just install tmate server for fun, you might try these solutions. I am not ensure that it will work for you. Hope it is helpful for finding solutions.

  1. configure error
    "msgpack >= 1.2.0 not found"

my solution: I just set enviroment variable PKG_CONFIG_PATH after installing msgpack. Set PKG_CONFIG_PATH="/usr/lib/pkgconfig:/usr/local/lib/pkgconfig"

  1. error when execute make
In file included from /usr/include/libssh/libssh.h:67:0,
                 from tmate.h:7,
                 from client.c:35:
/usr/include/netdb.h:591:16: error: expected identifier or '(' before '[' token
   int __unused([5]);

my solution: I just comment this line in /usr/include/netdb.h

  1. error when execute make
error: ‘EVBUFFER_EOL_LF’ undeclared (first use in this function)

my solution: I just follow solution here.

wget https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz
tar xzvf libevent-2.0.21-stable.tar.gz
cd libevent-2.0.21-stable
./configure && make && make install && ldconfig
  1. errors when execute make
/lib64/libtinfo.so.5: could not read symbols: Invalid operation
collect2: error: ld returned 1 exit status

my solution: I just add -ltinfo to Makefile
LIBS = -lutil -lssh -lmsgpack -lncurses -L/usr/local/lib -levent -lrt -lresolv -ltinfo

  1. errors when execute make
tmate-ssh-server.o: In function `prepare_ssh':
/mnt/datadisk1/software/tmate-slave/tmate-ssh-server.c:263: undefined reference to `ssh_set_log_callback'
tmate-ssh-server.o: In function `auth_pubkey_cb':
/mnt/datadisk1/software/tmate-slave/tmate-ssh-server.c:119: undefined reference to `ssh_pki_export_pubkey_base64'
tmate-ssh-server.o: In function `client_bootstrap':
/mnt/datadisk1/software/tmate-slave/tmate-ssh-server.c:194: undefined reference to `ssh_set_server_callbacks'
/mnt/datadisk1/software/tmate-slave/tmate-ssh-server.c:199: undefined reference to `ssh_set_auth_methods'
/mnt/datadisk1/software/tmate-slave/tmate-ssh-server.c:206: undefined reference to `ssh_event_new'
/mnt/datadisk1/software/tmate-slave/tmate-ssh-server.c:207: undefined reference to `ssh_event_add_session'
/mnt/datadisk1/software/tmate-slave/tmate-ssh-server.c:210: undefined reference to `ssh_event_dopoll'
collect2: error: ld returned 1 exit status
make: *** [tmate-slave] Error 1

my solution: I just add -L/usr/lib to Makefile
LIBS = -lutil -lssh -lmsgpack -lncurses -L/usr/lib -L/usr/local/lib -levent -lrt -lresolv -ltinfo

CentOS 5.9 compile bug

    then mv -f ".deps/tmate-ssh-client.Tpo" ".deps/tmate-ssh-client.Po"; else rm -f ".deps/tmate-ssh-client.Tpo"; exit 1; fi
if gcc -DPACKAGE_NAME=\"tmux\" -DPACKAGE_TARNAME=\"tmux\" -DPACKAGE_VERSION=\"1.8\" -DPACKAGE_STRING=\"tmux\ 1.8\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"tmux\" -DVERSION=\"1.8\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_CURSES_H=1 -DHAVE_DIRENT_H=1 -DHAVE_FCNTL_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_NCURSES_H=1 -DHAVE_PATHS_H=1 -DHAVE_PTY_H=1 -DHAVE_STDINT_H=1 -DHAVE_SYS_DIR_H=1 -DHAVE_TERM_H=1 -DHAVE_LIBZ=1 -DHAVE_LIBCRYPTO=1 -DHAVE_LIBSSL=1 -DHAVE_B64_NTOP=1 -DHAVE_FORKPTY=1 -DHAVE_DAEMON=1 -DHAVE_SETENV=1 -DHAVE_ASPRINTF=1 -DHAVE_STRCASESTR=1 -DHAVE_STRSEP=1 -DHAVE_DECL_OPTARG=1 -DHAVE_DECL_OPTIND=1 -DHAVE_DECL_OPTRESET=0 -DHAVE_BZERO=1 -DHAVE_DIRFD=1 -DHAVE_SYSCONF=1 -DHAVE_BSD_TYPES=1 -DHAVE___PROGNAME=1 -DHAVE_PROC_PID=1  -I. -I.    -iquote. -I/usr/local/include    -D_GNU_SOURCE -Wno-unused-parameter -Wno-unused-variable -Ilibssh/include/ -Imsgpack/src -rdynamic  -std=gnu99  -O2   -MT tmate-ssh-server.o -MD -MP -MF ".deps/tmate-ssh-server.Tpo" -c -o tmate-ssh-server.o tmate-ssh-server.c; \
    then mv -f ".deps/tmate-ssh-server.Tpo" ".deps/tmate-ssh-server.Po"; else rm -f ".deps/tmate-ssh-server.Tpo"; exit 1; fi
tmate-ssh-server.c: In function ‘namespace_fork’:
tmate-ssh-server.c:246: error: ‘CLONE_NEWPID’ undeclared (first use in this function)
tmate-ssh-server.c:246: error: (Each undeclared identifier is reported only once
tmate-ssh-server.c:246: error: for each function it appears in.)
tmate-ssh-server.c:246: error: ‘CLONE_NEWIPC’ undeclared (first use in this function)
tmate-ssh-server.c:246: error: ‘CLONE_NEWNET’ undeclared (first use in this function)
make: *** [tmate-ssh-server.o] Error 1
[root@default-centos-59 tmate-slave]#

I have installed:
cmake gcc gcc-c++ kernel-devel make curl-devel expat-devel gettext-devel openssl-devel zlib-devel ncurses ncurses-devel as pre reqs and libevent 2 stable

msgpack & libevent not found

In centos 7 ./configure wont proceed as msgpack is not found. Further looking into the output
checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking whether gcc and cc understand -c and -o together... yes checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for pkg-config... /bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for glibc... yes checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking bitstring.h usability... no checking bitstring.h presence... no checking for bitstring.h... no checking curses.h usability... yes checking curses.h presence... yes checking for curses.h... yes checking dirent.h usability... yes checking dirent.h presence... yes checking for dirent.h... yes checking fcntl.h usability... yes checking fcntl.h presence... yes checking for fcntl.h... yes checking for inttypes.h... (cached) yes checking libutil.h usability... no checking libutil.h presence... no checking for libutil.h... no checking ncurses.h usability... yes checking ncurses.h presence... yes checking for ncurses.h... yes checking ndir.h usability... no checking ndir.h presence... no checking for ndir.h... no checking paths.h usability... yes checking paths.h presence... yes checking for paths.h... yes checking pty.h usability... yes checking pty.h presence... yes checking for pty.h... yes checking for stdint.h... (cached) yes checking sys/dir.h usability... yes checking sys/dir.h presence... yes checking for sys/dir.h... yes checking sys/ndir.h usability... no checking sys/ndir.h presence... no checking for sys/ndir.h... no checking sys/tree.h usability... no checking sys/tree.h presence... no checking for sys/tree.h... no checking term.h usability... yes checking term.h presence... yes checking for term.h... yes checking util.h usability... no checking util.h presence... no checking for util.h... no checking for library containing flock... none required checking for dirfd... yes checking for flock... yes checking for setproctitle... no checking for sysconf... yes checking for cfmakeraw... yes checking for library containing clock_gettime... none required checking for LIBEVENT... no checking for library containing event_init... -levent checking for LIBNCURSES... yes checking utempter.h usability... no checking utempter.h presence... no checking for utempter.h... no checking for MSGPACK... no configure: error: "msgpack >= 1.2.0 not found" also shows that libevent is not found even though it is present. I have checked the various folders containing msgpack and all is present. Also installing the msgpack from yum (then version 1.4) does not help.

On Ubuntu it is fine. I have followed already all the other guides and possible resolutions mentioned before so any help is really appreciated.

Packaging Guidance

Thanks for making the server-side components open source! I would like to package this up as a habitat package, but noticed that the last tagged version is pretty far behind master. Would you recommend packaging the 1.8 tag or building from master? If master, would it be possible to tag a new release sometime soon that I could point at?

I totally understand if you have reasons for not wanting to tag a release, thanks again for your work on this project!

error: 'SSH_BIND_OPTIONS_IMPORT_KEY' undeclared

when building on Alpine:

tmate-ssh-server.c: In function 'prepare_ssh':
tmate-ssh-server.c:349:29: error: 'SSH_BIND_OPTIONS_IMPORT_KEY' undeclared (first use in this function)
  ssh_bind_options_set(bind, SSH_BIND_OPTIONS_IMPORT_KEY, rsakey);
                             ^~~~~~~~~~~~~~~~~~~~~~~~~~~
tmate-ssh-server.c:349:29: note: each undeclared identifier is reported only once for each function it appears in

appears to be caused by #47 #49 or #50 because this error does not appear with 8b294f3

unable to ./configure - no MSGPACK

configure: error: "msgpack >= 1.2.0 not found"

All these are installed:
root@tmate:/tmate-slave# apt-cache search libmsgpack
libmsgpack-dev - binary-based efficient object serialization library
libmsgpack3 - binary-based efficient object serialization library
libmsgpackc2 - binary-based efficient object serialization library
root@tmate:
/tmate-slave#

Same machine was able able to compile tmate-slave 2-3 months ago.

tmate-slave on Centos7 ssh_bind_options_set: Unknown ssh option 10

Hi !

I have compiled tmate-slave on centos 7 and i now get this error:

/etc/tmate-slave/keys#ls -la
total 16K
-rw-r--r-- 1 tmate-slave tmate-slave  418 Jan  9 11:08 ssh_host_rsa_key.pub
-rw------- 1 tmate-slave tmate-slave 1.7K Jan  9 11:08 ssh_host_rsa_key
-rw-r--r-- 1 tmate-slave tmate-slave  118 Jan  9 11:08 ssh_host_ed25519_key.pub
-rw------- 1 tmate-slave tmate-slave  432 Jan  9 11:08 ssh_host_ed25519_key

tmate-slave -k /etc/tmate-slave/keys -p 22 -v
<6> (tmate) [ssh_bind_options_set] ssh_bind_options_set: Unknown ssh option 10
<6> (tmate) [ssh_bind_options_set] ssh_bind_options_set: Unknown ssh option 10
<6> (tmate) [ssh_bind_options_set] ssh_bind_options_set: Unknown ssh option 10
<6> (tmate) [ssh_bind_import_keys] ssh_bind_import_keys: ECDSA, DSA, or RSA host key file must be set
<2> (tmate) fatal: Error listening to socket: ECDSA, DSA, or RSA host key file must be set

Please help !

kind regards

kristoferus

Running tmate-slave as non-root user

I wanted to confirm what all steps need to be taken to run tmate server without root privileges; I am able to compile file and run using a random large port but when I try to access this tmate server by creating a tmate session I get - fatal: Need root priviledges

As far as I understand I should be able to run without root as long as I'm not interested in using port 22.

Randomly stops

We're running tmate-slave on RHEL7. About once a week, but not consistently, the daemon stops accepting new requests. systemd reports that the process is still running.

If there's some easy way for us to monitor the service and restart it as needed, that would be fine; but we're not seeing any easy way to accomplish that.

Is there anything specific we can look for on the tmate-slave server itself to confirm that the process is working as expected? Or, is there something we can look for to confirm that a problem as occurred?

ships a copy of the tmux source code

is there any reason why this ships an entire copy of the tmux source code? I haven't checked in details, but it sure looks like at least cmd.c comes from tmux...

This is a problem when packaging this in Debian: we try to avoid such duplicate copies of code to make it easier to deal with security issues...

Compile Error (function: ‘tmate_spawn_slave_daemon’)

Hi, i getting error while doing make:

tmate-slave.c: In function ‘tmate_spawn_slave_daemon’:
tmate-slave.c:399:2: warning: implicit declaration of function ‘signal’ [-Wimplicit-function-declaration]
tmate-slave.c:399:2: warning: nested extern declaration of ‘signal’ [-Wnested-externs]
tmate-slave.c:399:9: error: ‘SIGTERM’ undeclared (first use in this function)
tmate-slave.c:399:9: note: each undeclared identifier is reported only once for each function it appears in
tmate-slave.c: In function ‘tmate_spawn_slave_pty_client’:
tmate-slave.c:412:14: warning: declaration of ‘fstat’ shadows a global declaration [-Wshadow]
make: *** [tmate-slave.o] Error 1

My linux version:
Linux TmateSrv 3.13.0-24-generic #47~precise2-Ubuntu SMP Fri May 2 23:30:46 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

Cannot connect to server (fatal: Error polling ssh socket: Socket error: disconnected)

I started a tmate server like this:
sudo ./tmate-slave -s -v -p 224 -k /etc/ssh/ &

and my .tmate.conf looks like this:

set -g tmate-server-host "myserver.mydomain"
set -g tmate-server-port 224
set -g tmate-server-rsa-fingerprint   "fcEujDgGDPFdkA27hDah9IjLOctnToTyZfgjc3pmRtQ"
set -g tmate-server-ecdsa-fingerprint "VQ5TFd3fKHWlMRy0rQmkky6FFzvYgOcV7pgyQI5iIY"

When I start tmate on the client, I get:

[tmate] Reconnecting... (Cannot authenticate server)                                                                                                                                                                                          
[tmate] myserver.mydomain lookup failure. Retrying in 2 seconds (nodename nor servname provided, or not known)                                                                                                                                     

I get the following messages on the server side in /var/log/messages:

Feb 23 12:15:59 myserver tmate-remote-tmux[32376]: (tmate) Accepting connections on :224
Feb 23 12:17:19 myserver tmate-remote-tmux[32376]: (tmate) Child spawned pid=32505, ip=10.0.21.200
Feb 23 12:17:19 myserver tmate-remote-tmux[32505]: [init] (tmate) Bootstrapping ssh client ip=10.0.21.200
Feb 23 12:17:19 myserver tmate-remote-tmux[32505]: [init] (tmate) Exchanging DH keys
Feb 23 12:17:19 myserver tmate-remote-tmux[32505]: [init] (tmate) fatal: Error polling ssh socket: Socket error: disconnected
Feb 23 12:17:23 myserver tmate-remote-tmux[32376]: (tmate) Child spawned pid=32506, ip=10.0.21.200
Feb 23 12:17:23 myserver tmate-remote-tmux[32506]: [init] (tmate) Bootstrapping ssh client ip=10.0.21.200
Feb 23 12:17:23 myserver tmate-remote-tmux[32506]: [init] (tmate) Exchanging DH keys
Feb 23 12:17:23 myserver tmate-remote-tmux[32506]: [init] (tmate) fatal: Error polling ssh socket: Socket error: disconnected
Feb 23 12:17:27 myserver tmate-remote-tmux[32376]: (tmate) Child spawned pid=32507, ip=10.0.21.200
Feb 23 12:17:27 myserver tmate-remote-tmux[32507]: [init] (tmate) Bootstrapping ssh client ip=10.0.21.200
Feb 23 12:17:27 myserver tmate-remote-tmux[32507]: [init] (tmate) Exchanging DH keys
Feb 23 12:17:27 myserver tmate-remote-tmux[32507]: [init] (tmate) fatal: Error polling ssh socket: Socket error: disconnected

What should I do?
F.

port used

Hi,
I woul'd like to use tmate in my work, but i can't because tmate don't use the same port for communicate IN and OUT,
I look with tcpdump the trafic and i got

OUT : 22
IN : ephemeral port ("random port")

Can i fix that ? (the PC with tmate have rule blocking other port than those open)
Or maybe i'm doing something wrong ? ^^
Thank for your help !

Cannot start server docker "host key file must be set"

I am attempting to use the tmate-ssh-server docker container from https://hub.docker.com/r/tmate/tmate-ssh-server
I have generated the keys as instructed, but no matter how try to pass the keys directory the container fails to start with: fatal: Error listening to socket: ECDSA, ED25519, DSA, or RSA host key file must be set\n

ls -l ./keys
-rw-------. 1 root root  419 Jan 14 02:18 ssh_host_ed25519_key
-rw-r--r--. 1 root root  106 Jan 14 02:18 ssh_host_ed25519_key.pub
-rw-------. 1 root root 1679 Jan 14 02:18 ssh_host_rsa_key
-rw-r--r--. 1 root root  406 Jan 14 02:18 ssh_host_rsa_key.pub

Command variations tried:

docker run -e SSH_KEYS_PATH='./keys' tmate/tmate-ssh-server
docker run tmate/tmate-ssh-server SSH_KEYS_PATH='./keys'

Help with disconnection/reconnection

Relevant portion of my Dockerfile:

FROM debian:buster-slim

RUN set -x \
  && apt-get update \
  && apt-get -y upgrade \
  && apt-get -y install autoconf automake gcc git jq libevent-dev libmsgpack-dev libssh-dev make ncurses-dev pkg-config python3-pip awscli \
  && git clone --branch 2.3.0 https://github.com/tmate-io/tmate-ssh-server.git /tmp/tmate-ssh-server \
  && cd /tmp/tmate-ssh-server \
  && ./autogen.sh \
  && cd /tmp/tmate-ssh-server \
  && ./configure --prefix=/usr \
  && cd /tmp/tmate-ssh-server \
  && make \
  && make install \
  && cd / \
  && rm -rf /tmp/tmate-ssh-server \
  && apt-mark manual libevent-2.1-6 libmsgpackc2 libssh-4 python3 \
  && apt-get -y remove autoconf automake gcc git libevent-dev libmsgpack-dev libssh-dev make ncurses-dev pkg-config python3-pip \
  && apt-get -y autoremove \
  && apt-get -y clean \
  && rm -rf /var/lib/apt/lists/* \
  && mkdir /etc/tmate-ssh-server

ENV LANG=C.UTF-8
EXPOSE 22
COPY tmate-ssh-server-wrapper /usr/bin/tmate-ssh-server-wrapper
ENTRYPOINT ["/usr/bin/tmate-ssh-server-wrapper"]

What's tmate-ssh-server-wrapper, you might ask:

#!/bin/sh

echo "Fetching private keys from AWS secrets manager..."
AWS=/usr/bin/aws
KEYS=$($AWS secretsmanager get-secret-value ...elided...)
cat <<EOF > /etc/tmate-ssh-server/ssh_host_rsa_key
-----BEGIN RSA PRIVATE KEY-----
$(echo $KEYS | jq -r '.rsa_private_key' | fold -w64)
-----END RSA PRIVATE KEY-----
EOF
cat <<EOF > /etc/tmate-ssh-server/ssh_host_ed25519_key
-----BEGIN OPENSSH PRIVATE KEY-----
$(echo $KEYS | jq -r '.ed25519_private_key' | fold -w64)
-----END OPENSSH PRIVATE KEY-----
EOF

echo "Starting tmate-ssh-server..."
exec /usr/bin/tmate-ssh-server -v -v -v -h elided.example.com -k /etc/tmate-ssh-server

This runs inside of ElasticBeanstalk on AWS, and has a load balancer in front of it which forwards traffic from 22 to 2020 for the container to pick it up.

There's a lot of this in the logs:

<6> (tmate) Child spawned pid=104, ip=172.*
<5> [init] (tmate) Bootstrapping ssh client ip=172.*
<6> [init] (tmate) Exchanging DH keys
<8> [init] (tmate) [ssh_socket_pollcallback] ssh_socket_pollcallback: Received POLLOUT in connecting state
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket exception callback: 1 (0)
<6> [init] (tmate) [ssh_socket_exception_callback] ssh_socket_exception_callback: Socket error: disconnected
<8> [init] (tmate) [ssh_handle_key_exchange] ssh_handle_key_exchange: ssh_handle_key_exchange: current state : 9
<2> [init] (tmate) fatal: Error doing the key exchange: Socket error: disconnected

My tmate.conf:

set -g tmate-server-host "example.com"
set -g tmate-server-port 22
set -g tmate-server-rsa-fingerprint "SHA256:FOO"
set -g tmate-server-ed25519-fingerprint "SHA256:BAR"

I can successfully create a session and connect, and I can send the ssh string to a friend, but after a little while (a few minutes maybe), the creator of the session drops, and reconnects, and the user that was connected now receives an expired session token message when trying to reconnect.

I have debug logging turned up. Any suggestions on what to look at next? We had a tmate server running for several years without needing to touch it, and all of sudden this started happening.

CPU utilization

We're running tmate-slave on a RHEL7 server. Load on this system is extremely high, and CPU is pegged in nice.

top - 09:45:40 up 30 days, 22:35,  1 user,  load average: 15.50, 15.51, 15.49
Tasks: 176 total,  17 running, 159 sleeping,   0 stopped,   0 zombie
%Cpu(s):  1.2 us,  0.3 sy, 98.5 ni,  0.0 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st
KiB Mem :  1884384 total,   227100 free,   382580 used,  1274704 buff/cache
KiB Swap:  2097148 total,  2068184 free,    28964 used.  1254276 avail Mem

12163 nobody    21   1  162392   1916    340 R  14.3  0.1   1071:42 tmate-slave
 8998 nobody    21   1  161820   1352    352 R  14.3  0.1   1081:14 tmate-slave
 9125 nobody    21   1  161936   1428    352 R  14.0  0.1   1082:36 tmate-slave
12163 nobody    21   1  162392   1916    340 R  14.0  0.1   1071:53 tmate-slave
14908 nobody    21   1  162532   1768      0 R  14.0  0.1   1072:09 tmate-slave
15130 nobody    21   1  162532   1776      0 R  14.0  0.1   1067:50 tmate-slave
15475 nobody    21   1  162700   2012      0 R  13.6  0.1   1067:42 tmate-slave
32267 nobody    21   1  161936   1392    344 R  13.6  0.1   7681:25 tmate-slave
32258 nobody    21   1  161824   1360    344 R  12.6  0.1   7682:29 tmate-slave
32293 nobody    21   1  161936   1460    352 R  12.6  0.1   7673:53 tmate-slave
 9204 nobody    21   1  161936   1448    352 R  12.3  0.1   1078:23 tmate-slave
 9283 nobody    21   1  161936   1448    352 R  12.3  0.1   1083:18 tmate-slave
10259 nobody    21   1  162064   1624    352 R  12.3  0.1   1083:34 tmate-slave
10664 nobody    21   1  162172   1744    352 R  12.3  0.1   1075:29 tmate-slave
12819 nobody    21   1  162408   1924    340 R  12.3  0.1   1073:48 tmate-slave
15313 nobody    21   1  162700   2012      0 R  12.0  0.1   1072:00 tmate-slave

Is this normal behavior? Do we need to allocate more CPU to tmate-slave hosts?

'no current session' when connecting via ssh

I successfully installed tmate-slave on one server, and it works with my laptop using tmate.

Then I installed tmate-slave on a different server, and started it the same way.
I can start a tmate session using the tmate cmd, but when i try to connect via the ssh cmd, i only get "no current session"

on the server with tmate-slave installed:

-!- ~ » /root/tmate/tmate-slave/tmate-slave -h 192.168.135.11 -k /root/tmate/tmate-slave/keys -p 1222 -v
<5> (tmate) Accepting connections on 1222
<6> (tmate) Child spawned pid=7395, ip=192.168.135.143
<5> [init] (tmate) Bootstrapping ssh client ip=192.168.135.143
<6> [init] (tmate) Exchanging DH keys
<5> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Spawning slave server for tmate at 192.168.135.143 (AAAAB3NzaC1yc2EAAAADAQABAAACAQC8PN+jl30tI/EBqMqmVfmc0sfAqb+AWbBrOxic+ZZAbAOch+8SadhUd/67L6BCMANAdvJDRdwq86xbdnAhF9p5fQ8JYUVluvs6VAy4lDEx7N+ZSeKcQ7P1sp9OncdulBgaeK2vtEsjELm2e0yLkbLe8jBCFo4s9/cp0hEtc58+qvFkIlp9iycZOQWt3q0Uj6fM7V4nvT0y8QI6ta4Hwl5IMdSAi8GlwuwZwtrUtZ419sUR/L0ftRGr+SgHxwxL2AoiRpbXVaeIban6nvMUS7RAKGYMnXzG7i33nF9vM0LnbAWU2DNxTuzzJbbOyGXkzKn3kKgq5YNlMyxLxb1BsI6HRya5YDkvBF8IADhjrjDiAMYecRLsjpRa4XuCodHq6DVf5vlWBOpkh2FHHDHQ7VgWlwVXsvJyhNdVb679+aiu/u1/R2+UhjMo2BqXVMrNE7AtixyPj49DZrNtiIxriG4HGnEuRreCQVi6XmDDJid5ZBmqCJFQwYmeKZdRn1Rv2dd0423NXjQcg+6rvc67MhA/qgr/igwGsVebGa2mTb+cL0gIWekeSKEkVzRqXBlxNEzpZnbGt+A1cXRMag6BF1WDV5+I8WIp28q6c8eUBisR3xNkgtia8xdmXHSweEw3CYgT/Wy19vNbLpOtIPCLw1L313CtBmo42LdqG1bByIcUSQ==)
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Dropped priviledges to nobody (65534,65534), jailed in /tmp/tmate/jail
<5> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Daemon header: client version: 2.2.1, protocol version: 6
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key C-b send-prefix
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key C-o rotate-window
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key C-z suspend-client
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key Space next-layout
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key ! break-pane
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key " split-window
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key # list-buffers
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key $ command-prompt -I#S "rename-session '%%'"
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key % split-window -h
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key & confirm-before "-pkill-window #W? (y/n)" kill-window
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key ' command-prompt -pindex "select-window -t ':%%'"
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key ( switch-client -p
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key ) switch-client -n
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key , command-prompt -I#W "rename-window '%%'"
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key - delete-buffer
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key . command-prompt "move-window -t '%%'"
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key 0 select-window -t:=0
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key 1 select-window -t:=1
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key 2 select-window -t:=2
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key 3 select-window -t:=3
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key 4 select-window -t:=4
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key 5 select-window -t:=5
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key 6 select-window -t:=6
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key 7 select-window -t:=7
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key 8 select-window -t:=8
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key 9 select-window -t:=9
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key : command-prompt
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key ; last-pane
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key = choose-buffer
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key ? list-keys
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key D choose-client
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key L switch-client -l
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key M select-pane -M
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key [ copy-mode
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key ] paste-buffer
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key c new-window
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key d detach-client
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key f command-prompt "find-window '%%'"
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key i display-message
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key l last-window
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key m select-pane -m
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key n next-window
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key o select-pane -t:.+
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key p previous-window
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key q display-panes
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key r refresh-client
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key s choose-tree
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key t clock-mode
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key w choose-window
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key x confirm-before "-pkill-pane #P? (y/n)" kill-pane
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key z resize-pane -Z
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key { swap-pane -U
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key } swap-pane -D
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key ~ show-messages
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key PPage copy-mode -u
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key -r Up select-pane -U
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key -r Down select-pane -D
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key -r Left select-pane -L
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key -r Right select-pane -R
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key M-1 select-layout even-horizontal
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key M-2 select-layout even-vertical
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key M-3 select-layout main-horizontal
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key M-4 select-layout main-vertical
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key M-5 select-layout tiled
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key M-n next-window -a
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key M-o rotate-window -D
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key M-p previous-window -a
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key -r M-Up resize-pane -U 5
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key -r M-Down resize-pane -D 5
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key -r M-Left resize-pane -L 5
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key -r M-Right resize-pane -R 5
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key -r C-Up resize-pane -U
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key -r C-Down resize-pane -D
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key -r C-Left resize-pane -L
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key -r C-Right resize-pane -R
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key -n MouseDown1Pane select-pane -t=; send-keys -M
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key -n MouseDrag1Border resize-pane -M
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key -n MouseDown1Status select-window -t=
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key -n WheelDownStatus next-window
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Local cmd: bind-key -n WheelUpStatus previous-window
<6> (tmate) Child spawned pid=7396, ip=192.168.135.143
<5> [init] (tmate) Bootstrapping ssh client ip=192.168.135.143
<6> [init] (tmate) Exchanging DH keys
<5> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Spawning slave client for 192.168.135.143 (AAAAB3NzaC1yc2EAAAADAQABAAACAQC8PN+jl30tI/EBqMqmVfmc0sfAqb+AWbBrOxic+ZZAbAOch+8SadhUd/67L6BCMANAdvJDRdwq86xbdnAhF9p5fQ8JYUVluvs6VAy4lDEx7N+ZSeKcQ7P1sp9OncdulBgaeK2vtEsjELm2e0yLkbLe8jBCFo4s9/cp0hEtc58+qvFkIlp9iycZOQWt3q0Uj6fM7V4nvT0y8QI6ta4Hwl5IMdSAi8GlwuwZwtrUtZ419sUR/L0ftRGr+SgHxwxL2AoiRpbXVaeIban6nvMUS7RAKGYMnXzG7i33nF9vM0LnbAWU2DNxTuzzJbbOyGXkzKn3kKgq5YNlMyxLxb1BsI6HRya5YDkvBF8IADhjrjDiAMYecRLsjpRa4XuCodHq6DVf5vlWBOpkh2FHHDHQ7VgWlwVXsvJyhNdVb679+aiu/u1/R2+UhjMo2BqXVMrNE7AtixyPj49DZrNtiIxriG4HGnEuRreCQVi6XmDDJid5ZBmqCJFQwYmeKZdRn1Rv2dd0423NXjQcg+6rvc67MhA/qgr/igwGsVebGa2mTb+cL0gIWekeSKEkVzRqXBlxNEzpZnbGt+A1cXRMag6BF1WDV5+I8WIp28q6c8eUBisR3xNkgtia8xdmXHSweEw3CYgT/Wy19vNbLpOtIPCLw1L313CtBmo42LdqG1bByIcUSQ==)
<6> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Dropped priviledges to nobody (65534,65534), jailed in /tmp/tmate/jail
<5> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Client joined (cid=0)
<5> [TNxZSXBZYnZjNcDj9U4LA7aCa] (tmate) Client left (cid=0)

I could start a tmate session successfully on my laptop, but connecting to to it with the displayed ssh cmd doesn't work:

--- ~ » ssh -p1222 [email protected]
no current session
Connection to 192.168.135.11 closed by remote host.
Connection to 192.168.135.11 closed.

libssh overrides configured keys

OS: CentOS 8.1
libssh: 0.9.0-4.el8
tmate-ssh-server: e1a5e08

libssh has its own configuration in /etc/libssh . I cannot say in which version this was introduced.
The configuration directives in /etc/libssh/libssh_server.config are

# Parse system-wide crypto configuration file
Include /etc/crypto-policies/back-ends/libssh.config
# Parse OpenSSH configuration file for consistency
Include /etc/ssh/sshd_config

This causes all keys that are loaded previously to be exchanged with the system keys.

In my case I run ./tmate-ssh-server -k /etc/tmate/ -p 22022 to use a different set of SSH keys than the system.

To diagnose this issue I did run strace -ff ./tmate-ssh-server -k /etc/tmate/ -p 22022 2>&1 | tee /tmp/tmate-ssh-server.strace.log. As you can see in the following except of /tmp/tmate-ssh-server.strace.log, once a child gets forked from the parent process, libssh reads the system SSH keys.

# grep open /tmp/tmate-ssh-server.strace.log | grep etc
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
openat(AT_FDCWD, "/etc/localtime", O_RDONLY|O_CLOEXEC) = 4
openat(AT_FDCWD, "/etc/nsswitch.conf", O_RDONLY|O_CLOEXEC) = 4
openat(AT_FDCWD, "/etc/host.conf", O_RDONLY|O_CLOEXEC) = 4
openat(AT_FDCWD, "/etc/resolv.conf", O_RDONLY|O_CLOEXEC) = 4
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 4
openat(AT_FDCWD, "/etc/hosts", O_RDONLY|O_CLOEXEC) = 4
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 4
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 4
openat(AT_FDCWD, "/etc/tmate//ssh_host_rsa_key", O_RDONLY) = 5
openat(AT_FDCWD, "/etc/tmate//ssh_host_ed25519_key", O_RDONLY) = 5
[pid 13324] openat(AT_FDCWD, "/etc/libssh/libssh_server.config", O_RDONLY) = 7
[pid 13324] openat(AT_FDCWD, "/etc/crypto-policies/back-ends/libssh.config", O_RDONLY) = 8
[pid 13324] openat(AT_FDCWD, "/etc/ssh/sshd_config", O_RDONLY) = 8
[pid 13324] openat(AT_FDCWD, "/etc/ssh/ssh_host_rsa_key", O_RDONLY) = 9
[pid 13324] openat(AT_FDCWD, "/etc/ssh/ssh_host_ed25519_key", O_RDONLY) = 9
[pid 13324] openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 0

This effectively means that you cannot run tmate-ssh-server with SSH keys independent of the system keys. A workaround would be to edit /etc/libssh/libssh_server.config but I don't know how practical this would be.

[server exited] when trying to connect to a shared session

I setup tmate slave on ubuntu 16.04

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 16.04.5 LTS
Release:        16.04
Codename:       xenial

using current tmate-slave github master: 3c22f38db611730dde79669bc6aabe312d88bb63

This is how I did:

apt update
apt install -y git-core build-essential pkg-config libtool libevent-dev libncurses-dev zlib1g-dev automake libssh-dev cmake ruby

# Install msgpack
curl -OL "https://github.com/msgpack/msgpack-c/releases/download/cpp-1.3.0/msgpack-1.3.0.tar.gz"
tar xzf msgpack-1.3.0.tar.gz && cd msgpack-1.3.0/
./configure --prefix=/usr && make && make install

# Install libssh
git clone https://github.com/nviennot/libssh.git
 mkdir -p build && cd build && cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DWITH_EXAMPLES=OFF -DWITH_SFTP=OFF .. && make && make install

# Install tmate
git clone https://github.com/tmate-io/tmate-slave.git && cd tmate-slave
./autogen.sh
export PKG_CONFIG_PATH=/usr/lib/pkgconfig/
./configure && make
./create_keys.sh # This will generate SSH keys, remember the keys fingerprints.
sudo ./tmate-slave

Now start tmate-slave with this:

./tmate-slave  -k keys/ -p 2222 -v

And configure the client with this:

set -g tmate-server-host "[REDACTED]"
set -g tmate-server-port 2222
set -g tmate-server-rsa-fingerprint   "[REDACTED]"
set -g tmate-server-ecdsa-fingerprint "[REDACTED]"
set -g tmate-identity ""              # Can be specified to use a different SSH key.

My host successfully hosts a session:

$ tmate
[tmate] ssh session: ssh -p2222 eKCmah0jLewP7kLr3TEyAuioP@[REDACTED]

But attempt to connect fail miserably:

$ ssh -p2222 nvXxlbgC2HNB7BXqh3I3lSNp3@[REDACTED]
[server exited]
Connection to [REDACTED] closed by remote host.
Connection to [REDACTED] closed.

This is the tmux-slave log since the client attempt to connect

<6> (tmate) Child spawned pid=7056, ip=[REDACTED]
<5> [init] (tmate) Bootstrapping ssh client ip=116.105.137.151
<6> [init] (tmate) Exchanging DH keys
<5> [1AqPDTLa4bgqvmWdiIK1Yk6Ul] (tmate) Spawning slave client for [REDACTED]([REDACTED])
<6> [1AqPDTLa4bgqvmWdiIK1Yk6Ul] (tmate) Dropped priviledges to nobody (65534,65534), jailed in /tmp/tmate/jail
<5> [1AqPDTLa4bgqvmWdiIK1Yk6Ul] (tmate) Client joined (cid=0)
<4> [1AqPDTLa4bgqvmWdiIK1Yk6Ul] (tmate) Error writing to channel:
<5> [1AqPDTLa4bgqvmWdiIK1Yk6Ul] (tmate) Client left (cid=0)
<6> (tmate) Child spawned pid=7060, ip=[REDACTED]
<5> [init] (tmate) Bootstrapping ssh client ip=[REDACTED]
<6> [init] (tmate) Exchanging DH keys

Dig into source code it seems this is where the error being throwned:

 written = ssh_channel_write(session->ssh_client.channel, buf, len);
 if (written < 0) {
         tmate_warn("Error writing to channel: %s",
                     ssh_get_error(session->ssh_client.session));
         request_server_termination();
         break;
 }

I have rebuild libssh with "Debug" build

mkdir -p build && cd build && cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DDCMAKE_BUILD_TYPE=Debug -DWITH_EXAMPLES=OFF -DWITH_SFTP=OFF .. && make && make install

And then rebuild tmate-slave, but there is no more log.

What could be the reason for ssh_channel_write to fail?

Any way to donate?

I'm a big fan of this project and what it offers. I really appreciate not having to host the server myself. Is there anywhere I can donate to help offset the hosting cost and help ensure tmate is available in the future?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.