I'm running into issues with AuthorizedKeysCommand when the sum of the size of the public keys become bigger than ~ 12 KB. I created a bash script that runs #!/bin/bash curl -s --compressed http://someurl.example.com/pubkeys/$1 and am getting "error: returned status 23". CURLE_WRITE_ERROR (23): An error occurred when writing received data to a local file, or an error was returned to libcurl from a write callback. Samething with wget, I get an error 3: "File I/O error". -- Yves.
On Mon, 14 Apr 2014, Yves Dorfsman wrote:> > I'm running into issues with AuthorizedKeysCommand when the sum of the size of > the public keys become bigger than ~ 12 KB.It's easy to determine whether sshd is at fault here. Just replace curl with 'cat' of a >12KB file.> I created a bash script that runs > > #!/bin/bash > curl -s --compressed http://someurl.example.com/pubkeys/$1this is terrifying. -d