Terowongan SSH membeku dan mengatakan "dilarang secara administratif" ketika domain tidak dapat diselesaikan

3

Jadi saya membuka terowongan SSH ke server jauh untuk menggunakannya sebagai proxy:

ssh -D 10000 -N remote

Saya menggunakan FireFox dengan FoxyProxy dan bekerja dengan cukup baik. Kecuali kadang-kadang terowongan membeku. Contoh yang baik adalah halaman penulis lagu Australia ini . Situs ini membuat permintaan ke domain johnbutler-trio.com yang mungkin tidak dikonfigurasi dengan benar. Hasilnya adalah terowongan membeku selama satu menit dan tidak ada koneksi lebih lanjut yang mungkin sampai waktu jeda dipicu. Setelah itu semuanya kembali normal hingga saya mengunjungi situs ini lagi. Dengan diaktifkannya sakelar debug, outputnya adalah sebagai berikut:

debug1: channel 5: new [dynamic-tcpip]
debug1: Connection to port 10000 forwarding to socks port 0 requested.
...
debug1: Connection to port 10000 forwarding to socks port 0 requested.
debug1: channel 45: new [dynamic-tcpip]

channel 38: open failed: administratively prohibited: open failed
debug1: channel 38: free: direct-tcpip: listening port 10000 for johnbutler-trio.com port 80, connect from 127.0.0.1 port 45057 to 127.0.0.1 port 10000, nchannels 46
channel 39: open failed: administratively prohibited: open failed
channel 40: open failed: administratively prohibited: open failed
channel 41: open failed: administratively prohibited: open failed
channel 42: open failed: administratively prohibited: open failed
channel 43: open failed: administratively prohibited: open failed
debug1: channel 39: free: direct-tcpip: listening port 10000 for johnbutler-trio.com port 80, connect from 127.0.0.1 port 45058 to 127.0.0.1 port 10000, nchannels 45
debug1: channel 40: free: direct-tcpip: listening port 10000 for johnbutler-trio.com port 80, connect from 127.0.0.1 port 45059 to 127.0.0.1 port 10000, nchannels 44
debug1: channel 41: free: direct-tcpip: listening port 10000 for johnbutler-trio.com port 80, connect from 127.0.0.1 port 45060 to 127.0.0.1 port 10000, nchannels 43
debug1: channel 42: free: direct-tcpip: listening port 10000 for johnbutler-trio.com port 80, connect from 127.0.0.1 port 45061 to 127.0.0.1 port 10000, nchannels 42
debug1: channel 43: free: direct-tcpip: listening port 10000 for johnbutler-trio.com port 80, connect from 127.0.0.1 port 45062 to 127.0.0.1 port 10000, nchannels 41

Apa yang sedang terjadi? Bagaimana saya bisa mencegah terowongan membeku ketika ada kesalahan yang domain seseorang? Btw membuka domain acak yang tidak terdaftar tidak akan menghasilkan pembekuan terowongan.

iamtimeshift
sumber
Kemungkinan duplikat dari unix.stackexchange.com/questions/14160/…
Overbryd