09-11-15:中断原理

 

摘要:本文主要介绍C语言中中断服务程序的编写、安装和使用。由于硬中断服务程序的编写涉及到硬件端口读写操作,使得用户直接和硬件打交道,在程序设计过程中要用到的数据(如硬件端口地址等)比较多,这就使程序员和计算机的硬件设备间缺少一种“缓冲”的作用,况且,用汇编语言来直接对硬件编程要方便得多。本文仅对软中断程序的编写作个介绍。
关键词:软中断、中断向量、中断向量表、TSR内存驻留、DOS重入、中断请求、段地址、偏移量、寄存器、BIOS、DOS、setvect ( )、getvect ( )、keep ( )、disable ( )、enable ( )、geninterrupt ( )、int86 ( )、interrupt
    对于一般的C语言爱好者而言,就如何在C中使用中断例程这一问题应该已经非常熟悉,例如,我们可以通过int86 ( )函数调用13H号中断直接对磁盘物理扇区进行操作,也可以通过INT86 ( )函数调用33H号中断在屏幕上显示鼠标光标等。其实,13H号也好,33H号也好,它们只不过就是一些函数,这些函数的参数通过CPU的寄存器传递。中断号也只不过是间接地指向函数体的起始内存单元,说它是间接的,也就是说,函数的起始段地址和偏移量是由中断号通过一种方法算得的(具体如何操作,下面会作解释)。如此一来,程序员不必要用太多的时间去写操作硬件的程序了,只要在自己的程序中设置好参数,再调用BIOS或DOS提供的中断服务程序就可以了,大大减小了程序开发难度,缩短了程序开发周期。那么中断既然是函数,就可以由用户任意的调用、由用户任意地编写。
    计算机内存的前1024个字节(偏移量00000H到003FFH)保存着256个中断向量,每个中断向量占4个字节,前两个字节保存着中断服务程序的入口地址偏移量,后两个字节保存着中断程序的入口段地址,使用时,只要将它们分别调入寄存器IP及CS中,就可以转入中断服务程序实现中断调用。每当中断发生时,CPU将中断号乘以4,在中断向量表中得到该中断向量地址,进而获得IP及CS值,从而转到中断服务程序的入口地址,调用中断。这就是中断服务程序通过中断号调用的基本过程。在计算机启动的时候,BIOS将基本的中断填入中断向量表,当DOS得到系统控制权后,它又要将一些中断向量填入表中,还要修改一部分BIOS的中断向量。有一部分中断向量是系统为用户保留的,如60H到67H号中断,用户可以将自己的中断服务程序写入这些中断向量中。不仅如此,用户还可以自己更改和完善系统已有的中断向量。
    在C语言中,提供了一种新的函数类型interrupt,专门用来定义中断服务程序,比如我们可以写如下的中断服务程序:
/*例1:中断服务程序*/
void interrupt int60()
{
 puts("This is an example");
}
该中断的功能就是显示一个字符串,为什么不用printf ( )函数呢?这就牵涉到DOS的重入问题,后面将作一些介绍。
    一个简单的中断服务程序写好了,如何把它的函数入口地址填写到中断向量表中,以便在产生中断的时候能转入中断服务程序去执行呢?这里要用到setvect ( )和getvect ( )函数。setvect ( )有两个参数:中断号和函数的入口地址,其功能是将指定的函数安装到指定的中断向量中,getvect ( )函数有一个参数:中断号,返回值是该中断的入口地址。在安装中断以前,最好用disable ( )函数关闭中断,以防止在安装过程中又产生新的中断而导致程序运行混乱,待安装完成后,再用enable ( )函数开放中断,使程序正常运行。现在我们可以把上面的例子再丰富一下:
/*例2:中断服务程序的编写、安装和使用*/

#include <dos.h>

#include <stdio.h>

#ifdef __cplusplus

 #define __ARGU ...

#else

 #define __ARGU

#endif

void interrupt int60 (__ARGU)  /*中断服务函数*/

{

 puts("This is an example");

}

void install (void interrupt (*fadd)(__ARGU),int num) /*安装中断*/
{
 disable(); /*关闭中断*/
 setvect(num, fadd); /*设置中断*/
 enable(); /*开放中断*/
}
void main()
{
install (int60,0x60);/*将int60函数安装到0x60中断*/
geninterrupt (0x60); /*人为产生0x60号中断*/
}
有一定经验的读者很容易得到该程序的执行结果:在屏幕上显示“This is an example!”。
    编写、安装中断服务程序的方法就介绍这些。下面再浅谈一下内存驻留程序(TSR)的编写和使用。在C语言中,可以用keep ( )函数将程序驻留内存。这个函数有两个参数:status和size。size为驻留内存长度,可以用size=_SS+_SP/16-_psp得到,当然这也是一种估算的方法,并不是精确值。函数执行完以后,出口状态信息保存在status中。比如,对于上面的例子,将“geninterrupt (0x60);”改写成“keep(0,_SS+_SP/16-_psp);”后再执行程序,这一段程序就被驻留,此后在其它的任何软件或程序设计中,只要用到了60H号中断,就会在屏幕上显示“This is an example!”的字样。要恢复系统对60H号中断的定义,只能重新启动计算机。
    像上面的例子其实还很不完善,它没有考虑DOS系统环境的状态、没有考虑程序是否已经驻留内存、没有考虑退出内存驻留等问题。对于第二个问题还是很容易解决的:执行程序一开始就读取某一函数中断入口地址(如63H号中断)判断是否为空(NULL),如果为空就先将该地址置为非空再驻留内存,若为非空则表示已经驻留并退出程序。这一步判断非常重要,否则将会因为重复驻留占用过多内存空间而最后造成系统崩溃。至于其它两个问题,在此不多作说明,有兴趣的读者可以参考一些有关书籍。
    不仅如此,我们还可以通过在DOS下使用热键(Hotkey)来调用内存驻留程序。比如将《希望汉字系统》自带的《希望词典》驻留内存后,在任意时刻按下Ctrl+F11键,就能激活程序,出现词典界面。微机的键盘中有一个微处理芯片,用来扫描和检测每个按键的按下和释放状态。大多数按键都有一个扫描码,告知CPU当前的状态,但一些特殊的键如PrintScreen、Ctrl+Break等不会产生扫描码,而直接产生中断。正因为如此,我们可以将Ctrl+Break产生的中断号指向我们自己写好的程序入口地址,那么当按下Ctrl+Break后,系统就会调用我们自己的程序去执行,这实际上也就是修改了Ctrl+Break的中断向量。至于其它按键激活程序则可以利用9H号键盘中断捕获的扫描码来实现,在此不多作说明。例如,执行下面的程序后,退回DOS系统,在任意的时候按下Ctrl+Break后,屏幕的底色就会变成红色。
/*例3:中断服务程序编写、安装和使用,内存驻留*/
#include <dos.h>
#include <conio.h>
#ifdef __cplusplus
 #define __ARGU ...
#else
 #define __ARGU
#endif
void interrupt newint(__ARGU); /*函数声明*/
void install (void interrupt (*fadd)(__ARGU), int num);
int main()
{
 install (newint,0x1b); /*Ctrl+Break中断号:1BH*/
 keep(0,_SS+(_SP/16)-_psp); /*驻留程序*/
 return 0;
}
void interrupt newint(__ARGU)
{
 textbackground(4); /*设置屏幕底色为红色*/
 clrscr(); /*清除屏幕*/
}
void install (void interrupt (*fadd)(__ARGU), int num)
{
 disable();
 setvect(num,fadd); /*设置中断*/
 enable();
}
    由于13H号中断是BIOS提供的磁盘中断服务程序,对于DOS下的应用程序,它们的存盘、读盘功能都是通过调用这一中断来实现的。有许多DOS下的病毒就喜欢修改13H号中断来破坏系统,例如,修改13H号中断服务程序,将其改成:
/*例4:病毒体程序伪代码*/
void interrupt new13(__ARGU)
{
 if (病毒发作条件成熟)
 { 修改入口参数指向病毒程序入口地址;
  执行病毒代码;
 }
 调用原来的13H中断;
}
只要当任一软件(如EDIT.COM等)对磁盘有操作并且病毒发作条件成熟时,病毒就被激活。当然,这样做会导致可用内存空间减少,容易被用户发现。一些“聪明”的病毒又会去修改其它的中断向量,使得系统报告的内存大小和实际相符合。还有的病毒,当发现用户通过一些程序(如DEBUG.COM等)去跟踪它时,它会悄悄地溜掉,其基本原理仍然与修改中断有关。硬盘的0面0柱1扇区(Side 0 Cylinder 0 Sector 1)保存着重要的引导信息,一旦破坏,计算机将无法识别硬盘。我们可以写一个程序来防止任何软件(包括病毒)对这一扇区执行“写”操作,一定程度上实现了“写保护”的作用,它的基本原理就是修改13H号中断向量并常驻内存,监视着软件(包括病毒)对磁盘操作的每一个细节。读者请注意:本程序没有考虑内存驻留的退出,如果想恢复13H号中断,请重新启动计算机。
/*例5:主引导扇区保护,请用Turbo C 2.0编译,MBSP.C*/
#include <dos.h>

#include <stdio.h>

#include <stdlib.h>

#define STSIZE 8192

#define PSP_ENV_PSP 0x2c
#define PARA(x) ((FP_OFF(x)+15)>>4)

typedef struct {
 unsigned bp,di,si,ds,es,dx,cx,bx,ax,ip,cs,flags;
} INTERRUPT_PARAMETER;
void install (void interrupt (*faddress)(), int num);
void interrupt new13(INTERRUPT_PARAMETER p);
int main()
{
union REGS regs;
struct SREGS sregs;
unsigned mem;
unsigned far *pointer;
char far *stack;
printf("/n<<Master Boot Sector Protector>> version 1.0/n/n");
   if ((stack=malloc(STSIZE))==NULL)
  {
  printf ("Not enough Memory!/n");
  exit(1);
  }
 if (getvect(0x62)!=NULL)
  {
  printf("Already Installed!/n");
  exit(1);
  }
 install(getvect(0x13),0x62);
 install (new13,0x13);
 pointer=MK_FP(_psp,PSP_ENV_PSP);
 freemem(*pointer);
 segread(&sregs);
 mem=sregs.ds+PARA(stack)-_psp;
 setblock(_psp,mem);
 keep (0,mem);
 return 0;
}

void install (void interrupt (*faddress)(), int num)
{
 disable();
 setvect(num,faddress);
 enable();
}

void interrupt new13(INTERRUPT_PARAMETER p)
{
p.ax=_AX;
p.cx=_CX;
p.dx=_DX;
if(_AH==0x03&&_CH==0&&_CL==0x01&&_DH==0&&_DL==0x80) return;
enable();
geninterrupt (0x62);
disable();
_AX=p.ax;
_CX=p.cx;
_DX=p.dx;
return;
}
    说明:在使用本程序以前,请:①用杀毒软件对计算机引导扇区、内存和所有文件进行一次全面的扫描,确信计算机中没有任何病毒;②有计算机汇编语言基础的读者可以自己写一个新的引导程序,先将本程序驻留内存,再调用原来的引导程序,以便在病毒还没有取得系统控制权以前开启防护功能。
    最后简要说明一下DOS系统重入问题。DOS是单用户单任务操作系统。如果程序在执行的过程中被打断,就有可能因为破坏了原来的程序运行环境而造成运行不正常,这是灾难性的。当中断产生后,CPU立即中止当前的程序去执行中断服务程序,如果在中断服务程序中又有对DOS中断的调用(如DOS的21H号中断)时,这样必定会重写环境全局变量(例如PSP程序段前缀就会被改成正在执行的中断程序的PSP),这样原来的环境被破坏,原来的程序也就无法正确执行。当中断调用完成并返回后,用户得到的结果是出乎意料的。所以在编写中断服务程序时应该避免DOS系统功能调用,在C语言的中断服务程序中不应该出现malloc ( )、printf ( )、sprintf ( )等函数。

2025-05-30 13:31:53.971 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:31:53.973 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:31:53.975 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:31:53.986 [NOTICE] Opening Socks listener on 127.0.0.1:9150 2025-05-30 13:31:53.986 [NOTICE] Opened Socks listener connection (ready) on 127.0.0.1:9150 2025-05-30 13:31:55.180 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:31:55.181 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:31:55.181 [NOTICE] Bootstrapped 1% (conn_pt): Connecting to pluggable transport 2025-05-30 13:31:55.192 [NOTICE] Bootstrapped 2% (conn_done_pt): Connected to pluggable transport 2025-05-30 13:31:55.448 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:31:55.450 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:31:55.845 [NOTICE] Bootstrapped 10% (conn_done): Connected to a relay 2025-05-30 13:31:55.846 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:31:55.846 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:31:55.846 [ERR] libevent call with win32 failed: Invalid argument [WSAEINVAL ] [10022] 2025-05-30 13:32:18.354 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:32:18.356 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:32:18.358 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:32:27.362 [NOTICE] Opening Socks listener on 127.0.0.1:9150 2025-05-30 13:32:27.362 [NOTICE] Opened Socks listener connection (ready) on 127.0.0.1:9150 2025-05-30 13:32:28.624 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:32:28.625 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:32:28.625 [NOTICE] Bootstrapped 1% (conn_pt): Connecting to pluggable transport 2025-05-30 13:32:28.626 [NOTICE] Bootstrapped 2% (conn_done_pt): Connected to pluggable transport 2025-05-30 13:32:29.041 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:29.045 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:29.220 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:29.220 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:29.363 [NOTICE] Bootstrapped 10% (conn_done): Connected to a relay 2025-05-30 13:32:29.605 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:29.605 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:29.617 [NOTICE] Bootstrapped 14% (handshake): Handshaking with a relay 2025-05-30 13:32:29.876 [NOTICE] Bootstrapped 15% (handshake_done): Handshake with a relay done 2025-05-30 13:32:29.877 [NOTICE] Bootstrapped 20% (onehop_create): Establishing an encrypted directory connection 2025-05-30 13:32:30.121 [NOTICE] Bootstrapped 25% (requesting_status): Asking for networkstatus consensus 2025-05-30 13:32:30.148 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:30.149 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:30.445 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:32:30.445 [NOTICE] new bridge descriptor 'Bridge' (fresh): $23958FC105E58061AFD2DECC61D363F28AB36490~Bridge [ar26PaMvMtnp3TVPVc6VmFRSl/+bMf/59xuRvLdSCQk] at 212.132.102.214 and [2001:db8:259c:faa6:24a9:cce0:c60f:4642] 2025-05-30 13:32:30.618 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:30.619 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:31.059 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:31.060 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:32.101 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:32.101 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:32.707 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:32.707 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:33.164 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:33.164 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:34.181 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:34.182 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:35.212 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:35.213 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:37.207 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:37.208 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:37.739 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:37.740 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:41.253 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:41.254 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:44.903 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:44.981 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:50.660 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:32:50.662 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:32:50.664 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:32:50.672 [NOTICE] Opening Socks listener on 127.0.0.1:9150 2025-05-30 13:32:50.672 [NOTICE] Opened Socks listener connection (ready) on 127.0.0.1:9150 2025-05-30 13:32:51.905 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:32:51.906 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:32:51.906 [NOTICE] Bootstrapped 1% (conn_pt): Connecting to pluggable transport 2025-05-30 13:32:51.912 [NOTICE] Bootstrapped 2% (conn_done_pt): Connected to pluggable transport 2025-05-30 13:32:51.989 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:51.991 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:52.513 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:52.514 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:52.778 [NOTICE] Bootstrapped 10% (conn_done): Connected to a relay 2025-05-30 13:32:52.881 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:52.882 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:53.048 [NOTICE] Bootstrapped 14% (handshake): Handshaking with a relay 2025-05-30 13:32:53.308 [NOTICE] Bootstrapped 15% (handshake_done): Handshake with a relay done 2025-05-30 13:32:53.308 [NOTICE] Bootstrapped 20% (onehop_create): Establishing an encrypted directory connection 2025-05-30 13:32:53.362 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:53.362 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:53.572 [NOTICE] Bootstrapped 25% (requesting_status): Asking for networkstatus consensus 2025-05-30 13:32:53.835 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:32:54.293 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:54.294 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:54.803 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:54.804 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:55.360 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:55.361 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:57.333 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:57.333 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:57.895 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:57.896 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:33:00.290 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:33:00.294 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:33:02.388 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:33:02.388 [NOTICE] new bridge descriptor 'bauruine' (fresh): $16D0EF186DA080CE7A4968072920E08CA7729AED~bauruine [I/qM7fRZmL/uq60qzGEoQLNxmhleywJ5H/FY3yCHTDI] at 95.214.53.96 and [2001:db8:cb62:8f57:5a43:d9d0:a488:27e2] 2025-05-30 13:33:03.341 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:33:03.342 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:33:04.827 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:33:04.827 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:33:08.407 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:33:08.408 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:33:12.967 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 93.174.85.219:8081 ID=<none> RSA_ID=FC012059FC8E77C56CE0D049199BBD136109CDE3 ("general SOCKS server failure") 2025-05-30 13:33:12.970 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 34.219.243.226:60002 ID=<none> RSA_ID=89603E5FEB695C433FB8FE47C39594DE555C3429 ("general SOCKS server failure") 2025-05-30 13:33:12.970 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 115.69.44.202:10022 ID=<none> RSA_ID=0AAC6B82A6CCDAF3381A0F3CD4B39BCF1D79985F ("general SOCKS server failure") 2025-05-30 13:33:12.971 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 189.10.119.163:9090 ID=<none> RSA_ID=EE7595ED9D6370212C78F1CC18263361F0A2C815 ("general SOCKS server failure") 2025-05-30 13:33:12.971 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 149.248.76.98:8888 ID=<none> RSA_ID=CCD49779E3F9466BD4DDE3D7B256A2A173954F41 ("general SOCKS server failure") 2025-05-30 13:33:12.971 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 185.45.226.2:33533 ID=<none> RSA_ID=30E95F3BC992773E2F1E81CF420B149F651E4806 ("general SOCKS server failure") 2025-05-30 13:33:12.972 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 45.129.185.197:80 ID=<none> RSA_ID=9FED9B691AA5C25A42690EC5AB0CB6BF9ABB95F0 ("general SOCKS server failure") 2025-05-30 13:33:12.977 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing signaling.privacy-vbox.de:443: dial tcp 141.147.13.151:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2025-05-30 13:33:12.979 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:8e11:37cf:5167:5fce:4650:c2f8]:443 ID=<none> RSA_ID=5AE50E81167318FE0A152D4F050C839DB42AB9B8 ("general SOCKS server failure") 2025-05-30 13:33:14.595 [NOTICE] Bootstrapped 75% (enough_dirinfo): Loaded enough directory info to build circuits 2025-05-30 13:33:14.595 [NOTICE] Bootstrapped 90% (ap_handshake_done): Handshake finished with a relay to build circuits 2025-05-30 13:33:14.595 [NOTICE] Bootstrapped 95% (circuit_create): Establishing a Tor circuit 2025-05-30 13:33:15.153 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:33:15.155 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:33:15.495 [NOTICE] Bootstrapped 100% (done): Done 2025-05-30 13:33:16.258 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:33:16.258 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:33:25.182 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:33:25.183 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:33:27.540 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:33:27.540 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:33:31.203 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:33:31.205 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:33:35.633 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 189.10.119.163:9090 ID=<none> RSA_ID=EE7595ED9D6370212C78F1CC18263361F0A2C815 ("general SOCKS server failure") 2025-05-30 13:33:39.199 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 34.219.243.226:60002 ID=<none> RSA_ID=89603E5FEB695C433FB8FE47C39594DE555C3429 ("general SOCKS server failure") 2025-05-30 13:33:39.965 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 115.69.44.202:10022 ID=<none> RSA_ID=0AAC6B82A6CCDAF3381A0F3CD4B39BCF1D79985F ("general SOCKS server failure") 2025-05-30 13:33:41.032 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 93.174.85.219:8081 ID=<none> RSA_ID=FC012059FC8E77C56CE0D049199BBD136109CDE3 ("general SOCKS server failure") 2025-05-30 13:33:42.207 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:33:42.208 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:33:44.126 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing signaling.privacy-vbox.de:443: dial tcp 141.147.13.151:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2025-05-30 13:33:44.127 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:8e11:37cf:5167:5fce:4650:c2f8]:443 ID=<none> RSA_ID=5AE50E81167318FE0A152D4F050C839DB42AB9B8 ("general SOCKS server failure") 2025-05-30 13:33:45.180 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 185.45.226.2:33533 ID=<none> RSA_ID=30E95F3BC992773E2F1E81CF420B149F651E4806 ("general SOCKS server failure") 2025-05-30 13:33:47.064 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 45.129.185.197:80 ID=<none> RSA_ID=9FED9B691AA5C25A42690EC5AB0CB6BF9ABB95F0 ("general SOCKS server failure") 2025-05-30 13:33:50.272 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 149.248.76.98:8888 ID=<none> RSA_ID=CCD49779E3F9466BD4DDE3D7B256A2A173954F41 ("general SOCKS server failure") 2025-05-30 13:33:54.208 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:33:54.209 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:03.144 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 93.174.85.219:8081 ID=<none> RSA_ID=FC012059FC8E77C56CE0D049199BBD136109CDE3 ("general SOCKS server failure") 2025-05-30 13:34:04.875 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:04.875 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:10.471 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:34:10.473 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:34:10.475 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:34:10.482 [NOTICE] Opening Socks listener on 127.0.0.1:9150 2025-05-30 13:34:10.483 [NOTICE] Opened Socks listener connection (ready) on 127.0.0.1:9150 2025-05-30 13:34:11.741 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:34:11.741 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:34:11.741 [NOTICE] Bootstrapped 1% (conn_pt): Connecting to pluggable transport 2025-05-30 13:34:11.742 [NOTICE] Bootstrapped 2% (conn_done_pt): Connected to pluggable transport 2025-05-30 13:34:11.817 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:11.819 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:12.338 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:12.339 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:12.588 [NOTICE] Bootstrapped 10% (conn_done): Connected to a relay 2025-05-30 13:34:12.650 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:12.651 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:12.864 [NOTICE] Bootstrapped 14% (handshake): Handshaking with a relay 2025-05-30 13:34:13.134 [NOTICE] Bootstrapped 15% (handshake_done): Handshake with a relay done 2025-05-30 13:34:13.135 [NOTICE] Bootstrapped 20% (onehop_create): Establishing an encrypted directory connection 2025-05-30 13:34:13.138 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:13.139 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:13.406 [NOTICE] Bootstrapped 25% (requesting_status): Asking for networkstatus consensus 2025-05-30 13:34:13.674 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:34:13.689 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:13.690 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:14.221 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:14.221 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:15.676 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:15.678 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:16.161 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:16.163 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:19.217 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:19.219 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:19.537 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:34:19.749 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:19.749 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:25.762 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:25.763 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:27.319 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:27.320 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:32.828 [NOTICE] Bootstrapped 75% (enough_dirinfo): Loaded enough directory info to build circuits 2025-05-30 13:34:32.828 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing signaling.privacy-vbox.de:443: dial tcp 141.147.13.151:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2025-05-30 13:34:33.423 [NOTICE] Bootstrapped 90% (ap_handshake_done): Handshake finished with a relay to build circuits 2025-05-30 13:34:33.423 [NOTICE] Bootstrapped 95% (circuit_create): Establishing a Tor circuit 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 185.45.226.2:33533 ID=<none> RSA_ID=30E95F3BC992773E2F1E81CF420B149F651E4806 ("general SOCKS server failure") 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 115.69.44.202:10022 ID=<none> RSA_ID=0AAC6B82A6CCDAF3381A0F3CD4B39BCF1D79985F ("general SOCKS server failure") 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:8e11:37cf:5167:5fce:4650:c2f8]:443 ID=<none> RSA_ID=5AE50E81167318FE0A152D4F050C839DB42AB9B8 ("general SOCKS server failure") 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 45.129.185.197:80 ID=<none> RSA_ID=9FED9B691AA5C25A42690EC5AB0CB6BF9ABB95F0 ("general SOCKS server failure") 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 189.10.119.163:9090 ID=<none> RSA_ID=EE7595ED9D6370212C78F1CC18263361F0A2C815 ("general SOCKS server failure") 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 93.174.85.219:8081 ID=<none> RSA_ID=FC012059FC8E77C56CE0D049199BBD136109CDE3 ("general SOCKS server failure") 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 149.248.76.98:8888 ID=<none> RSA_ID=CCD49779E3F9466BD4DDE3D7B256A2A173954F41 ("general SOCKS server failure") 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 34.219.243.226:60002 ID=<none> RSA_ID=89603E5FEB695C433FB8FE47C39594DE555C3429 ("general SOCKS server failure") 2025-05-30 13:34:33.490 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:33.492 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:34.299 [NOTICE] Bootstrapped 100% (done): Done 2025-05-30 13:34:47.473 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:47.474 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:48.202 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:48.203 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:54.993 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 34.219.243.226:60002 ID=<none> RSA_ID=89603E5FEB695C433FB8FE47C39594DE555C3429 ("general SOCKS server failure") 2025-05-30 13:34:55.958 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing signaling.privacy-vbox.de:443: dial tcp 141.147.13.151:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2025-05-30 13:34:56.039 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:8e11:37cf:5167:5fce:4650:c2f8]:443 ID=<none> RSA_ID=5AE50E81167318FE0A152D4F050C839DB42AB9B8 ("general SOCKS server failure") 2025-05-30 13:34:56.039 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 185.45.226.2:33533 ID=<none> RSA_ID=30E95F3BC992773E2F1E81CF420B149F651E4806 ("general SOCKS server failure") 2025-05-30 13:34:58.132 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 189.10.119.163:9090 ID=<none> RSA_ID=EE7595ED9D6370212C78F1CC18263361F0A2C815 ("general SOCKS server failure") 2025-05-30 13:34:58.132 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 115.69.44.202:10022 ID=<none> RSA_ID=0AAC6B82A6CCDAF3381A0F3CD4B39BCF1D79985F ("general SOCKS server failure") 2025-05-30 13:34:59.053 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 93.174.85.219:8081 ID=<none> RSA_ID=FC012059FC8E77C56CE0D049199BBD136109CDE3 ("general SOCKS server failure") 2025-05-30 13:34:59.114 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:59.114 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:59.962 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 149.248.76.98:8888 ID=<none> RSA_ID=CCD49779E3F9466BD4DDE3D7B256A2A173954F41 ("general SOCKS server failure") 2025-05-30 13:35:01.950 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 45.129.185.197:80 ID=<none> RSA_ID=9FED9B691AA5C25A42690EC5AB0CB6BF9ABB95F0 ("general SOCKS server failure") 2025-05-30 13:35:04.597 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:04.597 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:05.158 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:05.159 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:12.248 [WARN] tor_bug_occurred_: Bug: conflux_util.h:31: CIRCUIT_IS_CONFLUX: Non-fatal assertion circ->purpose != CIRCUIT_PURPOSE_CONFLUX_LINKED failed. (on Tor 0.4.8.16 64ccafd8115ecdec) 2025-05-30 13:35:12.248 [WARN] Bug: Tor 0.4.8.16 (git-64ccafd8115ecdec): Non-fatal assertion circ->purpose != CIRCUIT_PURPOSE_CONFLUX_LINKED failed in CIRCUIT_IS_CONFLUX at conflux_util.h:31. (Stack trace not available) (on Tor 0.4.8.16 64ccafd8115ecdec) 2025-05-30 13:35:12.248 [WARN] tor_bug_occurred_: Bug: conflux_util.h:31: CIRCUIT_IS_CONFLUX: Non-fatal assertion circ->purpose != CIRCUIT_PURPOSE_CONFLUX_LINKED failed. (on Tor 0.4.8.16 64ccafd8115ecdec) 2025-05-30 13:35:12.248 [WARN] Bug: Tor 0.4.8.16 (git-64ccafd8115ecdec): Non-fatal assertion circ->purpose != CIRCUIT_PURPOSE_CONFLUX_LINKED failed in CIRCUIT_IS_CONFLUX at conflux_util.h:31. (Stack trace not available) (on Tor 0.4.8.16 64ccafd8115ecdec) 2025-05-30 13:35:13.157 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:13.157 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:17.089 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:8e11:37cf:5167:5fce:4650:c2f8]:443 ID=<none> RSA_ID=5AE50E81167318FE0A152D4F050C839DB42AB9B8 ("general SOCKS server failure") 2025-05-30 13:35:17.089 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing signaling.privacy-vbox.de:443: dial tcp 141.147.13.151:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2025-05-30 13:35:23.087 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:35:23.090 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:35:23.093 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:35:23.100 [NOTICE] Opening Socks listener on 127.0.0.1:9150 2025-05-30 13:35:23.100 [NOTICE] Opened Socks listener connection (ready) on 127.0.0.1:9150 2025-05-30 13:35:23.848 [NOTICE] Application request when we haven't used client functionality lately. Optimistically trying known bridges again. 2025-05-30 13:35:24.267 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:35:24.267 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:35:24.267 [NOTICE] Bootstrapped 1% (conn_pt): Connecting to pluggable transport 2025-05-30 13:35:24.269 [NOTICE] Bootstrapped 2% (conn_done_pt): Connected to pluggable transport 2025-05-30 13:35:24.340 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:24.343 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:24.900 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:24.900 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:24.906 [NOTICE] Bootstrapped 10% (conn_done): Connected to a relay 2025-05-30 13:35:25.187 [NOTICE] Bootstrapped 14% (handshake): Handshaking with a relay 2025-05-30 13:35:25.251 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:25.252 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:25.449 [NOTICE] Bootstrapped 15% (handshake_done): Handshake with a relay done 2025-05-30 13:35:25.449 [NOTICE] Bootstrapped 20% (onehop_create): Establishing an encrypted directory connection 2025-05-30 13:35:25.714 [NOTICE] Bootstrapped 25% (requesting_status): Asking for networkstatus consensus 2025-05-30 13:35:25.752 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:25.752 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:25.924 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:35:26.250 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:26.251 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:26.797 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:26.799 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:27.278 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:32.632 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:35:32.634 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:35:32.636 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:35:32.643 [NOTICE] Opening Socks listener on 127.0.0.1:9150 2025-05-30 13:35:32.644 [NOTICE] Opened Socks listener connection (ready) on 127.0.0.1:9150 2025-05-30 13:35:33.889 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:35:33.889 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:35:33.889 [NOTICE] Bootstrapped 1% (conn_pt): Connecting to pluggable transport 2025-05-30 13:35:33.894 [NOTICE] Bootstrapped 2% (conn_done_pt): Connected to pluggable transport 2025-05-30 13:35:33.964 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:33.967 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:34.488 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:34.493 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:34.497 [NOTICE] Bootstrapped 10% (conn_done): Connected to a relay 2025-05-30 13:35:34.735 [NOTICE] Bootstrapped 14% (handshake): Handshaking with a relay 2025-05-30 13:35:34.797 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:34.799 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:34.925 [NOTICE] Bootstrapped 15% (handshake_done): Handshake with a relay done 2025-05-30 13:35:34.926 [NOTICE] Bootstrapped 20% (onehop_create): Establishing an encrypted directory connection 2025-05-30 13:35:35.117 [NOTICE] Bootstrapped 25% (requesting_status): Asking for networkstatus consensus 2025-05-30 13:35:35.279 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:35.280 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:35.311 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:35:36.797 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:36.798 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:37.295 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:37.297 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:39.795 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:39.795 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:42.308 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:42.309 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:46.133 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:35:46.354 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:46.355 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:47.012 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:47.012 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:49.427 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:49.429 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure")
05-31
六月 10, 2025 9:27:11 上午 org.apache.karaf.main.Main$KarafLockCallback lockAcquired 信息: Lock acquired. Setting startlevel to 100 六月 10, 2025 9:27:11 上午 org.apache.felix.fileinstall.internal.Util$DefaultLogger log 信息: Updating configuration {org.ops4j.pax.web} from D:\kettle9.3_77552\kettle9.3\system\karaf\etc\org.ops4j.pax.web.cfg 六月 10, 2025 9:27:11 上午 org.apache.felix.fileinstall.internal.Util$DefaultLogger log 信息: Updating configuration {org.ops4j.pax.web} from D:\kettle9.3_77552\kettle9.3\system\karaf\etc-spoon\org.ops4j.pax.web.cfg 六月 10, 2025 9:27:13 上午 org.apache.aries.spifly.BaseActivator log 信息: Registered provider org.eclipse.jetty.http.Http1FieldPreEncoder of service org.eclipse.jetty.http.HttpFieldPreEncoder in bundle org.eclipse.jetty.http 六月 10, 2025 9:27:13 上午 org.apache.aries.spifly.BaseActivator log 信息: Registered provider org.eclipse.jetty.security.jaspi.JaspiAuthenticatorFactory of service org.eclipse.jetty.security.Authenticator$Factory in bundle org.eclipse.jetty.security.jaspi 六月 10, 2025 9:27:13 上午 org.apache.aries.spifly.BaseActivator log 信息: Registered provider org.eclipse.jetty.websocket.common.extensions.identity.IdentityExtension of service org.eclipse.jetty.websocket.api.extensions.Extension in bundle org.eclipse.jetty.websocket.common 六月 10, 2025 9:27:13 上午 org.apache.aries.spifly.BaseActivator log 信息: Registered provider org.eclipse.jetty.websocket.common.extensions.fragment.FragmentExtension of service org.eclipse.jetty.websocket.api.extensions.Extension in bundle org.eclipse.jetty.websocket.common 六月 10, 2025 9:27:13 上午 org.apache.aries.spifly.BaseActivator log 信息: Registered provider org.eclipse.jetty.websocket.common.extensions.compress.PerMessageDeflateExtension of service org.eclipse.jetty.websocket.api.extensions.Extension in bundle org.eclipse.jetty.websocket.common 六月 10, 2025 9:27:13 上午 org.apache.aries.spifly.BaseActivator log 信息: Registered provider org.eclipse.jetty.websocket.common.extensions.compress.DeflateFrameExtension of service org.eclipse.jetty.websocket.api.extensions.Extension in bundle org.eclipse.jetty.websocket.common 六月 10, 2025 9:27:13 上午 org.apache.aries.spifly.BaseActivator log 信息: Registered provider org.eclipse.jetty.websocket.common.extensions.compress.XWebkitDeflateFrameExtension of service org.eclipse.jetty.websocket.api.extensions.Extension in bundle org.eclipse.jetty.websocket.common 六月 10, 2025 9:27:13 上午 org.apache.aries.spifly.BaseActivator log 信息: Registered provider org.eclipse.jetty.websocket.jsr356.JettyClientContainerProvider of service javax.websocket.ContainerProvider in bundle org.eclipse.jetty.websocket.javax.websocket 六月 10, 2025 9:27:13 上午 org.apache.aries.spifly.BaseActivator log 信息: Registered provider org.eclipse.jetty.websocket.jsr356.server.deploy.WebSocketServerContainerInitializer of service javax.servlet.ServletContainerInitializer in bundle org.eclipse.jetty.websocket.javax.websocket.server 六月 10, 2025 9:27:13 上午 org.apache.aries.spifly.BaseActivator log 信息: Registered provider org.eclipse.jetty.websocket.jsr356.server.ContainerDefaultConfigurator of service javax.websocket.server.ServerEndpointConfig$Configurator in bundle org.eclipse.jetty.websocket.javax.websocket.server 六月 10, 2025 9:27:13 上午 org.apache.aries.spifly.BaseActivator log 信息: Registered provider org.eclipse.jetty.websocket.server.NativeWebSocketServletContainerInitializer of service javax.servlet.ServletContainerInitializer in bundle org.eclipse.jetty.websocket.server 2025-06-10 09:27:13.941:INFO::FelixStartLevel: Logging initialized @10744ms to org.eclipse.jetty.util.log.StdErrLog 六月 10, 2025 9:27:14 上午 org.apache.cxf.bus.osgi.CXFExtensionBundleListener addExtensions 信息: Adding the extensions from bundle org.apache.cxf.cxf-rt-management (154) [org.apache.cxf.management.InstrumentationManager] 六月 10, 2025 9:27:14 上午 org.apache.cxf.bus.osgi.CXFExtensionBundleListener addExtensions 信息: Adding the extensions from bundle org.apache.cxf.cxf-rt-rs-service-description (159) [org.apache.cxf.jaxrs.model.wadl.WadlGenerator] 六月 10, 2025 9:27:14 上午 org.apache.cxf.bus.osgi.CXFExtensionBundleListener addExtensions 信息: Adding the extensions from bundle org.apache.cxf.cxf-rt-transports-http (161) [org.apache.cxf.transport.http.HTTPTransportFactory, org.apache.cxf.transport.http.HTTPWSDLExtensionLoader, org.apache.cxf.transport.http.policy.HTTPClientAssertionBuilder, org.apache.cxf.transport.http.policy.HTTPServerAssertionBuilder, org.apache.cxf.transport.http.policy.NoOpPolicyInterceptorProvider] 六月 10, 2025 9:27:14 上午 org.pentaho.caching.impl.PentahoCacheManagerFactory$RegistrationHandler$1 onSuccess 信息: New Caching Service registered 六月 10, 2025 9:27:14 上午 org.apache.cxf.transport.http.osgi.ServletExporter updated 信息: Registering new instance of "/cxf" servlet 2025-06-10 09:27:15.097:INFO:oejws.WebSocketServerFactory:CM Configuration Updater (ManagedService Update: pid=[org.apache.cxf.osgi]): No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 六月 10, 2025 9:27:15 上午 org.apache.cxf.endpoint.ServerImpl initDestination 信息: Setting the server's publish address to be /i18n 2025-06-10 09:27:15.235:INFO:oejs.session:CM Configuration Updater (ManagedService Update: pid=[org.apache.cxf.osgi]): DefaultSessionIdManager workerName=node0 2025-06-10 09:27:15.235:INFO:oejs.session:CM Configuration Updater (ManagedService Update: pid=[org.apache.cxf.osgi]): No SessionScavenger set, using defaults 2025-06-10 09:27:15.237:INFO:oejs.session:CM Configuration Updater (ManagedService Update: pid=[org.apache.cxf.osgi]): node0 Scavenging every 660000ms 2025-06-10 09:27:15.275:INFO:oejsh.ContextHandler:CM Configuration Updater (ManagedService Update: pid=[org.apache.cxf.osgi]): Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=org.apache.cxf.cxf-rt-transports-http [161], contextID=default]} 2025-06-10 09:27:15.286:INFO:oejs.Server:CM Configuration Updater (ManagedService Update: pid=[org.apache.cxf.osgi]): jetty-9.4.18.v20190429; built: 2021-06-30T11:07:22.254Z; git: 526006ecfa3af7f1a27ef3a288e2bef7ea9dd7e8; jvm 1.8.0_201-b09 2025-06-10 09:27:15.373:INFO:oejs.AbstractConnector:CM Configuration Updater (ManagedService Update: pid=[org.apache.cxf.osgi]): Started default@38cb3a36{HTTP/1.1, (http/1.1)}{0.0.0.0:9051} 2025-06-10 09:27:15.374:INFO:oejs.Server:CM Configuration Updater (ManagedService Update: pid=[org.apache.cxf.osgi]): Started @12178ms 2025-06-10 09:27:15.419:INFO:oejws.WebSocketServerFactory:FelixStartLevel: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:15.424:INFO:oejsh.ContextHandler:FelixStartLevel: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=pentaho-i18n-webservice-bundle [173], contextID=default]} 2025-06-10 09:27:16.466:INFO:oejws.WebSocketServerFactory:FelixStartLevel: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:16.478:INFO:oejsh.ContextHandler:FelixStartLevel: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=pentaho-pdi-platform [243], contextID=default]} 2025-06-10 09:27:17.578:INFO:oejws.WebSocketServerFactory:FelixDispatchQueue: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:17.582:INFO:oejsh.ContextHandler:FelixDispatchQueue: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=core-ui [260], contextID=default]} 2025-06-10 09:27:17.641:INFO:oejws.WebSocketServerFactory:FelixStartLevel: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:17.645:INFO:oejsh.ContextHandler:FelixStartLevel: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=org.pentaho.requirejs-manager-impl [261], contextID=default]} 2025-06-10 09:27:17.657:INFO:oejws.WebSocketServerFactory:FelixStartLevel: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:17.659:INFO:oejsh.ContextHandler:FelixStartLevel: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=pentaho-webjars-angular [262], contextID=default]} 2025-06-10 09:27:17.671:INFO:oejws.WebSocketServerFactory:FelixStartLevel: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:17.675:INFO:oejsh.ContextHandler:FelixStartLevel: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=pentaho-webjars-angular-animate [263], contextID=default]} 2025-06-10 09:27:17.692:INFO:oejws.WebSocketServerFactory:FelixStartLevel: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:17.700:INFO:oejsh.ContextHandler:FelixStartLevel: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=pentaho-webjars-angular-i18n [264], contextID=default]} 2025-06-10 09:27:17.712:INFO:oejws.WebSocketServerFactory:FelixStartLevel: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:17.715:INFO:oejsh.ContextHandler:FelixStartLevel: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=pentaho-webjars-angular-sanitize [265], contextID=default]} 2025-06-10 09:27:17.727:INFO:oejws.WebSocketServerFactory:FelixStartLevel: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:17.730:INFO:oejsh.ContextHandler:FelixStartLevel: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=pentaho-webjars-angular-translate [266], contextID=default]} 2025-06-10 09:27:17.744:INFO:oejws.WebSocketServerFactory:FelixStartLevel: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:17.748:INFO:oejsh.ContextHandler:FelixStartLevel: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=pentaho-webjars-dojo [267], contextID=default]} 2025-06-10 09:27:17.760:INFO:oejws.WebSocketServerFactory:FelixStartLevel: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:17.762:INFO:oejsh.ContextHandler:FelixStartLevel: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=pentaho-webjars-require-css [268], contextID=default]} 2025-06-10 09:27:17.773:INFO:oejws.WebSocketServerFactory:FelixStartLevel: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:17.775:INFO:oejsh.ContextHandler:FelixStartLevel: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=pentaho-webjars-requirejs-text [269], contextID=default]} 2025-06-10 09:27:17.785:INFO:oejws.WebSocketServerFactory:FelixStartLevel: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:17.787:INFO:oejsh.ContextHandler:FelixStartLevel: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=pentaho-webjars-uirouter__angularjs [270], contextID=default]} 2025-06-10 09:27:17.845:INFO:oejws.WebSocketServerFactory:FelixStartLevel: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:17.849:INFO:oejsh.ContextHandler:FelixStartLevel: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=pentaho-webjars-uirouter__core [271], contextID=default]} 六月 10, 2025 9:27:17 上午 org.apache.cxf.endpoint.ServerImpl initDestination 信息: Setting the server's publish address to be /repositories 六月 10, 2025 9:27:17 上午 org.apache.cxf.endpoint.ServerImpl initDestination 信息: Setting the server's publish address to be /browser 六月 10, 2025 9:27:18 上午 org.apache.cxf.endpoint.ServerImpl initDestination 信息: Setting the server's publish address to be /browser-new 六月 10, 2025 9:27:18 上午 org.apache.cxf.endpoint.ServerImpl initDestination 信息: Setting the server's publish address to be /get-fields 六月 10, 2025 9:27:18 上午 org.apache.cxf.endpoint.ServerImpl initDestination 信息: Setting the server's publish address to be /connection 2025-06-10 09:27:18.269:INFO:oejws.WebSocketServerFactory:FelixDispatchQueue: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:18.281:INFO:oejsh.ContextHandler:FelixDispatchQueue: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=repositories-plugin-core [272], contextID=default]} 2025-06-10 09:27:18.460:INFO:oejws.WebSocketServerFactory:FelixDispatchQueue: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:18.466:INFO:oejsh.ContextHandler:FelixDispatchQueue: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=file-open-save-core [274], contextID=default]} 六月 10, 2025 9:27:18 上午 org.apache.cxf.endpoint.ServerImpl initDestination 信息: Setting the server's publish address to be /marketplace 2025-06-10 09:27:18.756:INFO:oejws.WebSocketServerFactory:FelixDispatchQueue: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:18.759:INFO:oejws.WebSocketServerFactory:FelixStartLevel: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:18.762:INFO:oejsh.ContextHandler:FelixDispatchQueue: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=file-open-save-new-core [276], contextID=default]} 2025-06-10 09:27:18.762:INFO:oejsh.ContextHandler:FelixStartLevel: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=pentaho-webjars-angular-route [280], contextID=default]} 2025-06-10 09:27:18.934:INFO:oejws.WebSocketServerFactory:FelixDispatchQueue: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:18.937:INFO:oejws.WebSocketServerFactory:FelixStartLevel: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:18.939:INFO:oejsh.ContextHandler:FelixDispatchQueue: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=get-fields-core [277], contextID=default]} 2025-06-10 09:27:18.939:INFO:oejsh.ContextHandler:FelixStartLevel: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=pentaho-webjars-angular-ui-bootstrap-bower [281], contextID=default]} 2025-06-10 09:27:19.321:INFO:oejws.WebSocketServerFactory:FelixDispatchQueue: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:19.324:INFO:oejws.WebSocketServerFactory:FelixStartLevel: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:19.325:INFO:oejsh.ContextHandler:FelixDispatchQueue: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=connections-ui [278], contextID=default]} 2025-06-10 09:27:19.328:INFO:oejsh.ContextHandler:FelixStartLevel: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=pentaho-webjars-jquery [282], contextID=default]} 2025-06-10 09:27:19.613:INFO:oejws.WebSocketServerFactory:FelixDispatchQueue: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:19.617:INFO:oejws.WebSocketServerFactory:FelixStartLevel: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:19.619:INFO:oejsh.ContextHandler:FelixStartLevel: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=pentaho-webjars-underscore [283], contextID=default]} 2025-06-10 09:27:19.620:INFO:oejsh.ContextHandler:FelixDispatchQueue: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=pentaho-marketplace-di [279], contextID=default]} 2025-06-10 09:27:19.652:INFO:oejws.WebSocketServerFactory:FelixDispatchQueue: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:19.656:INFO:oejsh.ContextHandler:FelixDispatchQueue: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=pentaho-big-data-impl-connections-s3 [286], contextID=default]} 六月 10, 2025 9:27:19 上午 org.apache.cxf.endpoint.ServerImpl initDestination 信息: Setting the server's publish address to be /hadoop-cluster 2025-06-10 09:27:19.705:INFO:oejws.WebSocketServerFactory:FelixDispatchQueue: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:19.708:INFO:oejsh.ContextHandler:FelixDispatchQueue: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=pentaho-big-data-kettle-plugins-browse [287], contextID=default]} 2025-06-10 09:27:22.492:INFO:oejws.WebSocketServerFactory:FelixDispatchQueue: No DecoratedObjectFactory provided, using new org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1] 2025-06-10 09:27:22.500:INFO:oejsh.ContextHandler:FelixDispatchQueue: Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=hadoop-cluster-ui [288], contextID=default]} Graphics2D from BufferedImage lacks BUFFERED_IMAGE hint 2025/06/10 09:27:27 - Carte - Installing timer to purge stale objects after 1440 minutes. 2025/06/10 09:27:46 - Spoon - Running transformation using the Kettle execution engine 2025/06/10 09:27:46 - Spoon - 转换已经打开. 2025/06/10 09:27:46 - Spoon - 正在打开转换 [DM_TO_MYSQL-T_MDJSGJZTK_C0402201]... 2025/06/10 09:27:46 - Spoon - 开始执行转换. 2025/06/10 09:27:47 - DM_TO_MYSQL-T_MDJSGJZTK_C0402201 - 为了转换解除补丁开始 [DM_TO_MYSQL-T_MDJSGJZTK_C0402201] 2025/06/10 09:27:48 - MySQL数据库表输出 9.0 - Connected to database [mysql] (commit=1000)
最新发布
06-11
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值