.cloudflared.log 698 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234
  1. 2026-06-12T02:26:50Z INF Thank you for trying Cloudflare Tunnel. Doing so, without a Cloudflare account, is a quick way to experiment and try it out. However, be aware that these account-less Tunnels have no uptime guarantee, are subject to the Cloudflare Online Services Terms of Use (https://www.cloudflare.com/website-terms/), and Cloudflare reserves the right to investigate your use of Tunnels for violations of such terms. If you intend to use Tunnels in production you should use a pre-created named tunnel by following: https://developers.cloudflare.com/cloudflare-one/connections/connect-apps
  2. 2026-06-12T02:26:50Z INF Requesting new quick Tunnel on trycloudflare.com...
  3. 2026-06-12T02:26:53Z INF +--------------------------------------------------------------------------------------------+
  4. 2026-06-12T02:26:53Z INF | Your quick Tunnel has been created! Visit it at (it may take some time to be reachable): |
  5. 2026-06-12T02:26:53Z INF | https://probability-land-pairs-matters.trycloudflare.com |
  6. 2026-06-12T02:26:53Z INF +--------------------------------------------------------------------------------------------+
  7. 2026-06-12T02:26:53Z INF Cannot determine default configuration path. No file [config.yml config.yaml] in [~/.cloudflared ~/.cloudflare-warp ~/cloudflare-warp /etc/cloudflared /usr/local/etc/cloudflared]
  8. 2026-06-12T02:26:53Z INF Version 2026.6.0 (Checksum a13041d6ffff9d56f7df1629c24d9c0bacf4f73409d6cab0f5a1f60631ba9667)
  9. 2026-06-12T02:26:53Z INF GOOS: darwin, GOVersion: go1.26.4, GoArch: amd64
  10. 2026-06-12T02:26:53Z INF Settings: map[ha-connections:1 p:http2 protocol:http2 url:http://localhost:8771]
  11. 2026-06-12T02:26:53Z INF cloudflared will not automatically update if installed by a package manager.
  12. 2026-06-12T02:26:53Z INF Generated Connector ID: 4fd8489c-d909-4aa6-a293-1966420fbcb6
  13. 2026-06-12T02:26:53Z INF Initial protocol http2
  14. 2026-06-12T02:26:53Z INF ICMP proxy will use 192.168.81.52 as source for IPv4
  15. 2026-06-12T02:26:53Z INF ICMP proxy will use ::1 in zone lo0 as source for IPv6
  16. 2026-06-12T02:26:53Z INF Created ICMP proxy listening on 192.168.81.52:0
  17. 2026-06-12T02:26:53Z INF Created ICMP proxy listening on [::1]:0
  18. 2026-06-12T02:26:53Z INF ICMP proxy will use 192.168.81.52 as source for IPv4
  19. 2026-06-12T02:26:53Z INF ICMP proxy will use ::1 in zone lo0 as source for IPv6
  20. 2026-06-12T02:26:53Z INF Starting metrics server on 127.0.0.1:20243/metrics
  21. 2026-06-12T02:26:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  22. 2026-06-12T02:26:55Z INF Registered tunnel connection connIndex=0 connection=3d05b611-3ac8-4f01-ba0c-62d52ccbcdeb event=0 ip=198.41.200.53 location=lax01 protocol=http2
  23. 2026-06-12T02:27:00Z INF +-------------------------------------------------------------------------------------+
  24. 2026-06-12T02:27:00Z INF | CONNECTIVITY PRE-CHECKS |
  25. 2026-06-12T02:27:00Z INF +-------------------------------------------------------------------------------------+
  26. 2026-06-12T02:27:00Z INF | COMPONENT TARGET STATUS DETAILS |
  27. 2026-06-12T02:27:00Z INF | DNS Resolution region1.v2.argotunnel.com PASS DNS Resolved successfully |
  28. 2026-06-12T02:27:00Z INF | DNS Resolution region2.v2.argotunnel.com PASS DNS Resolved successfully |
  29. 2026-06-12T02:27:00Z INF | UDP Connectivity region1.v2.argotunnel.com PASS QUIC connection successful |
  30. 2026-06-12T02:27:00Z INF | UDP Connectivity region2.v2.argotunnel.com PASS QUIC connection successful |
  31. 2026-06-12T02:27:00Z INF | TCP Connectivity region1.v2.argotunnel.com PASS HTTP/2 connection successful |
  32. 2026-06-12T02:27:00Z INF | TCP Connectivity region2.v2.argotunnel.com PASS HTTP/2 connection successful |
  33. 2026-06-12T02:27:00Z INF | Cloudflare API api.cloudflare.com:443 PASS API is reachable |
  34. 2026-06-12T02:27:00Z INF | |
  35. 2026-06-12T02:27:00Z INF | SUMMARY: Environment is healthy. cloudflared will use 'quic' as primary protocol. |
  36. 2026-06-12T02:27:00Z INF +-------------------------------------------------------------------------------------+
  37. 2026-06-12T02:27:00Z INF precheck component="DNS Resolution" details="DNS Resolved successfully" run_id=fd1ff4a4-2565-43cb-921a-d578429d2392 status=pass target=region1.v2.argotunnel.com
  38. 2026-06-12T02:27:00Z INF precheck component="DNS Resolution" details="DNS Resolved successfully" run_id=fd1ff4a4-2565-43cb-921a-d578429d2392 status=pass target=region2.v2.argotunnel.com
  39. 2026-06-12T02:27:00Z INF precheck component="UDP Connectivity" details="QUIC connection successful" run_id=fd1ff4a4-2565-43cb-921a-d578429d2392 status=pass target=region1.v2.argotunnel.com
  40. 2026-06-12T02:27:00Z INF precheck component="UDP Connectivity" details="QUIC connection successful" run_id=fd1ff4a4-2565-43cb-921a-d578429d2392 status=pass target=region2.v2.argotunnel.com
  41. 2026-06-12T02:27:00Z INF precheck component="TCP Connectivity" details="HTTP/2 connection successful" run_id=fd1ff4a4-2565-43cb-921a-d578429d2392 status=pass target=region1.v2.argotunnel.com
  42. 2026-06-12T02:27:00Z INF precheck component="TCP Connectivity" details="HTTP/2 connection successful" run_id=fd1ff4a4-2565-43cb-921a-d578429d2392 status=pass target=region2.v2.argotunnel.com
  43. 2026-06-12T02:27:00Z INF precheck component="Cloudflare API" details="API is reachable" run_id=fd1ff4a4-2565-43cb-921a-d578429d2392 status=pass target=api.cloudflare.com:443
  44. 2026-06-12T02:27:00Z INF precheck complete hard_fail=false run_id=fd1ff4a4-2565-43cb-921a-d578429d2392 suggested_protocol=quic
  45. 2026-06-12T12:41:25Z ERR error="Unable to reach the origin service. The service may be down or it may not be responding to traffic from cloudflared: dial tcp [::1]:8771: connect: connection refused" connIndex=0 event=1 ingressRule=0 originService=http://localhost:8771
  46. 2026-06-12T12:41:25Z ERR failed to serve incoming request error="Failed to proxy HTTP: Unable to reach the origin service. The service may be down or it may not be responding to traffic from cloudflared: dial tcp [::1]:8771: connect: connection refused"
  47. 2026-06-12T12:41:25Z ERR error="Unable to reach the origin service. The service may be down or it may not be responding to traffic from cloudflared: dial tcp [::1]:8771: connect: connection refused" connIndex=0 event=1 ingressRule=0 originService=http://localhost:8771
  48. 2026-06-12T12:41:25Z ERR failed to serve incoming request error="Failed to proxy HTTP: Unable to reach the origin service. The service may be down or it may not be responding to traffic from cloudflared: dial tcp [::1]:8771: connect: connection refused"
  49. 2026-06-12T12:41:44Z ERR error="Unable to reach the origin service. The service may be down or it may not be responding to traffic from cloudflared: dial tcp [::1]:8771: connect: connection refused" connIndex=0 event=1 ingressRule=0 originService=http://localhost:8771
  50. 2026-06-12T12:41:44Z ERR failed to serve incoming request error="Failed to proxy HTTP: Unable to reach the origin service. The service may be down or it may not be responding to traffic from cloudflared: dial tcp [::1]:8771: connect: connection refused"
  51. 2026-06-12T14:58:10Z INF Lost connection with the edge connIndex=0
  52. 2026-06-12T14:58:10Z ERR failed to serve incoming request error="Error shutting down control stream: context canceled"
  53. 2026-06-12T14:58:10Z ERR Serve tunnel error error="connection with edge closed" connIndex=0 event=0 ip=198.41.200.53
  54. 2026-06-12T14:58:10Z INF Retrying connection in up to 1s connIndex=0 event=0 ip=198.41.200.53
  55. 2026-06-12T14:58:11Z ERR Connection terminated error="connection with edge closed" connIndex=0
  56. 2026-06-12T14:58:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  57. 2026-06-12T14:58:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  58. 2026-06-12T14:58:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  59. 2026-06-12T14:58:28Z INF Retrying connection in up to 4s connIndex=0 event=0 ip=198.41.200.53
  60. 2026-06-12T14:58:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  61. 2026-06-12T14:58:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  62. 2026-06-12T14:58:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  63. 2026-06-12T14:58:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  64. 2026-06-12T14:58:32Z INF Retrying connection in up to 8s connIndex=0 event=0 ip=198.41.200.53
  65. 2026-06-12T14:58:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  66. 2026-06-12T14:59:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  67. 2026-06-12T14:59:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  68. 2026-06-12T14:59:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  69. 2026-06-12T14:59:20Z INF Retrying connection in up to 16s connIndex=0 event=0 ip=198.41.200.53
  70. 2026-06-12T14:59:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  71. 2026-06-12T15:01:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  72. 2026-06-12T15:01:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  73. 2026-06-12T15:01:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  74. 2026-06-12T15:01:28Z INF Retrying connection in up to 32s connIndex=0 event=0 ip=198.41.200.53
  75. 2026-06-12T15:01:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  76. 2026-06-12T15:04:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  77. 2026-06-12T15:04:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  78. 2026-06-12T15:04:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  79. 2026-06-12T15:04:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  80. 2026-06-12T15:04:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  81. 2026-06-12T15:08:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  82. 2026-06-12T15:08:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  83. 2026-06-12T15:08:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  84. 2026-06-12T15:08:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  85. 2026-06-12T15:08:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  86. 2026-06-12T15:11:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  87. 2026-06-12T15:11:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  88. 2026-06-12T15:11:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  89. 2026-06-12T15:11:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  90. 2026-06-12T15:12:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  91. 2026-06-12T15:16:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  92. 2026-06-12T15:16:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  93. 2026-06-12T15:16:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  94. 2026-06-12T15:16:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  95. 2026-06-12T15:17:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  96. 2026-06-12T15:21:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  97. 2026-06-12T15:21:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  98. 2026-06-12T15:21:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  99. 2026-06-12T15:21:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  100. 2026-06-12T15:21:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  101. 2026-06-12T15:26:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  102. 2026-06-12T15:26:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  103. 2026-06-12T15:26:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  104. 2026-06-12T15:26:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  105. 2026-06-12T15:26:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  106. 2026-06-12T15:28:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  107. 2026-06-12T15:28:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  108. 2026-06-12T15:28:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  109. 2026-06-12T15:28:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  110. 2026-06-12T15:29:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  111. 2026-06-12T15:34:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  112. 2026-06-12T15:34:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  113. 2026-06-12T15:34:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  114. 2026-06-12T15:34:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  115. 2026-06-12T15:35:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  116. 2026-06-12T15:37:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  117. 2026-06-12T15:37:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  118. 2026-06-12T15:37:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  119. 2026-06-12T15:37:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  120. 2026-06-12T15:37:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  121. 2026-06-12T15:40:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  122. 2026-06-12T15:40:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  123. 2026-06-12T15:40:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  124. 2026-06-12T15:40:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  125. 2026-06-12T15:40:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  126. 2026-06-12T15:45:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  127. 2026-06-12T15:45:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  128. 2026-06-12T15:45:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  129. 2026-06-12T15:45:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  130. 2026-06-12T15:45:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  131. 2026-06-12T15:47:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  132. 2026-06-12T15:47:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  133. 2026-06-12T15:47:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  134. 2026-06-12T15:47:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  135. 2026-06-12T15:47:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  136. 2026-06-12T15:48:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  137. 2026-06-12T15:48:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  138. 2026-06-12T15:48:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  139. 2026-06-12T15:48:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  140. 2026-06-12T15:48:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  141. 2026-06-12T15:51:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  142. 2026-06-12T15:51:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  143. 2026-06-12T15:51:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  144. 2026-06-12T15:51:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  145. 2026-06-12T15:52:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  146. 2026-06-12T15:56:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  147. 2026-06-12T15:56:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  148. 2026-06-12T15:56:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  149. 2026-06-12T15:56:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  150. 2026-06-12T15:56:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  151. 2026-06-12T15:57:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  152. 2026-06-12T15:57:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  153. 2026-06-12T15:57:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  154. 2026-06-12T15:57:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  155. 2026-06-12T15:58:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  156. 2026-06-12T15:59:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  157. 2026-06-12T15:59:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  158. 2026-06-12T15:59:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  159. 2026-06-12T15:59:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  160. 2026-06-12T15:59:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  161. 2026-06-12T16:04:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  162. 2026-06-12T16:04:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  163. 2026-06-12T16:04:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  164. 2026-06-12T16:04:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  165. 2026-06-12T16:04:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  166. 2026-06-12T16:06:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  167. 2026-06-12T16:06:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  168. 2026-06-12T16:06:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  169. 2026-06-12T16:06:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  170. 2026-06-12T16:06:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  171. 2026-06-12T16:08:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  172. 2026-06-12T16:08:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  173. 2026-06-12T16:08:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  174. 2026-06-12T16:08:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  175. 2026-06-12T16:08:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  176. 2026-06-12T16:09:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  177. 2026-06-12T16:09:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  178. 2026-06-12T16:09:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  179. 2026-06-12T16:09:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  180. 2026-06-12T16:09:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  181. 2026-06-12T16:11:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  182. 2026-06-12T16:11:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  183. 2026-06-12T16:11:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  184. 2026-06-12T16:11:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  185. 2026-06-12T16:12:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  186. 2026-06-12T16:17:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  187. 2026-06-12T16:17:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  188. 2026-06-12T16:17:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  189. 2026-06-12T16:17:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  190. 2026-06-12T16:17:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  191. 2026-06-12T16:21:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  192. 2026-06-12T16:21:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  193. 2026-06-12T16:21:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  194. 2026-06-12T16:21:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  195. 2026-06-12T16:21:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  196. 2026-06-12T16:25:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  197. 2026-06-12T16:25:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  198. 2026-06-12T16:25:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  199. 2026-06-12T16:25:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  200. 2026-06-12T16:25:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  201. 2026-06-12T16:28:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  202. 2026-06-12T16:28:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  203. 2026-06-12T16:28:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  204. 2026-06-12T16:28:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  205. 2026-06-12T16:28:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  206. 2026-06-12T16:33:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  207. 2026-06-12T16:33:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  208. 2026-06-12T16:33:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  209. 2026-06-12T16:33:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  210. 2026-06-12T16:33:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  211. 2026-06-12T16:35:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  212. 2026-06-12T16:35:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  213. 2026-06-12T16:35:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  214. 2026-06-12T16:35:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  215. 2026-06-12T16:35:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  216. 2026-06-12T16:38:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  217. 2026-06-12T16:38:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  218. 2026-06-12T16:38:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  219. 2026-06-12T16:38:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  220. 2026-06-12T16:38:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  221. 2026-06-12T16:40:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  222. 2026-06-12T16:40:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  223. 2026-06-12T16:40:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  224. 2026-06-12T16:40:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  225. 2026-06-12T16:40:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  226. 2026-06-12T16:42:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  227. 2026-06-12T16:42:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  228. 2026-06-12T16:42:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  229. 2026-06-12T16:42:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  230. 2026-06-12T16:42:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  231. 2026-06-12T16:45:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  232. 2026-06-12T16:45:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  233. 2026-06-12T16:45:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  234. 2026-06-12T16:45:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  235. 2026-06-12T16:45:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  236. 2026-06-12T16:46:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  237. 2026-06-12T16:47:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  238. 2026-06-12T16:47:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  239. 2026-06-12T16:47:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  240. 2026-06-12T16:47:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  241. 2026-06-12T16:49:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  242. 2026-06-12T16:49:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  243. 2026-06-12T16:49:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  244. 2026-06-12T16:49:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  245. 2026-06-12T16:50:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  246. 2026-06-12T16:51:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  247. 2026-06-12T16:51:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  248. 2026-06-12T16:51:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  249. 2026-06-12T16:51:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  250. 2026-06-12T16:52:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  251. 2026-06-12T16:57:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  252. 2026-06-12T16:57:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  253. 2026-06-12T16:57:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  254. 2026-06-12T16:57:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  255. 2026-06-12T16:57:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  256. 2026-06-12T16:58:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  257. 2026-06-12T16:58:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  258. 2026-06-12T16:58:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  259. 2026-06-12T16:58:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  260. 2026-06-12T16:58:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  261. 2026-06-12T17:00:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  262. 2026-06-12T17:00:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  263. 2026-06-12T17:00:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  264. 2026-06-12T17:00:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  265. 2026-06-12T17:00:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  266. 2026-06-12T17:04:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  267. 2026-06-12T17:04:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  268. 2026-06-12T17:04:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  269. 2026-06-12T17:04:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  270. 2026-06-12T17:04:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  271. 2026-06-12T17:08:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  272. 2026-06-12T17:08:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  273. 2026-06-12T17:08:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  274. 2026-06-12T17:08:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  275. 2026-06-12T17:09:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  276. 2026-06-12T17:12:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  277. 2026-06-12T17:12:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  278. 2026-06-12T17:12:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  279. 2026-06-12T17:12:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  280. 2026-06-12T17:12:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  281. 2026-06-12T17:17:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  282. 2026-06-12T17:17:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  283. 2026-06-12T17:17:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  284. 2026-06-12T17:17:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  285. 2026-06-12T17:18:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  286. 2026-06-12T17:19:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  287. 2026-06-12T17:19:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  288. 2026-06-12T17:19:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  289. 2026-06-12T17:19:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  290. 2026-06-12T17:19:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  291. 2026-06-12T17:24:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  292. 2026-06-12T17:24:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  293. 2026-06-12T17:24:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  294. 2026-06-12T17:24:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  295. 2026-06-12T17:24:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  296. 2026-06-12T17:26:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  297. 2026-06-12T17:26:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  298. 2026-06-12T17:26:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  299. 2026-06-12T17:26:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  300. 2026-06-12T17:26:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  301. 2026-06-12T17:30:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  302. 2026-06-12T17:30:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  303. 2026-06-12T17:30:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  304. 2026-06-12T17:30:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  305. 2026-06-12T17:31:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  306. 2026-06-12T17:35:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  307. 2026-06-12T17:35:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  308. 2026-06-12T17:35:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  309. 2026-06-12T17:35:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  310. 2026-06-12T17:36:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  311. 2026-06-12T17:40:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  312. 2026-06-12T17:40:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  313. 2026-06-12T17:40:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  314. 2026-06-12T17:40:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  315. 2026-06-12T17:40:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  316. 2026-06-12T17:43:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  317. 2026-06-12T17:43:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  318. 2026-06-12T17:43:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  319. 2026-06-12T17:43:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  320. 2026-06-12T17:43:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  321. 2026-06-12T17:47:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  322. 2026-06-12T17:47:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  323. 2026-06-12T17:47:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  324. 2026-06-12T17:47:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  325. 2026-06-12T17:47:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  326. 2026-06-12T17:51:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  327. 2026-06-12T17:51:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  328. 2026-06-12T17:51:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  329. 2026-06-12T17:51:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  330. 2026-06-12T17:51:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  331. 2026-06-12T17:53:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  332. 2026-06-12T17:53:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  333. 2026-06-12T17:53:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  334. 2026-06-12T17:53:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  335. 2026-06-12T17:53:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  336. 2026-06-12T17:56:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  337. 2026-06-12T17:56:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  338. 2026-06-12T17:56:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  339. 2026-06-12T17:56:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  340. 2026-06-12T17:56:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  341. 2026-06-12T17:57:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  342. 2026-06-12T17:57:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  343. 2026-06-12T17:57:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  344. 2026-06-12T17:57:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  345. 2026-06-12T17:57:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  346. 2026-06-12T17:59:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  347. 2026-06-12T17:59:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  348. 2026-06-12T17:59:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  349. 2026-06-12T17:59:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  350. 2026-06-12T18:00:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  351. 2026-06-12T18:04:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  352. 2026-06-12T18:04:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  353. 2026-06-12T18:04:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  354. 2026-06-12T18:04:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  355. 2026-06-12T18:04:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  356. 2026-06-12T18:09:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  357. 2026-06-12T18:09:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  358. 2026-06-12T18:09:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  359. 2026-06-12T18:09:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  360. 2026-06-12T18:09:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  361. 2026-06-12T18:13:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  362. 2026-06-12T18:13:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  363. 2026-06-12T18:13:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  364. 2026-06-12T18:13:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  365. 2026-06-12T18:13:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  366. 2026-06-12T18:16:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  367. 2026-06-12T18:16:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  368. 2026-06-12T18:16:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  369. 2026-06-12T18:16:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  370. 2026-06-12T18:17:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  371. 2026-06-12T18:21:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  372. 2026-06-12T18:21:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  373. 2026-06-12T18:21:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  374. 2026-06-12T18:21:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  375. 2026-06-12T18:21:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  376. 2026-06-12T18:22:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  377. 2026-06-12T18:22:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  378. 2026-06-12T18:22:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  379. 2026-06-12T18:22:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  380. 2026-06-12T18:22:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  381. 2026-06-12T18:26:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  382. 2026-06-12T18:26:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  383. 2026-06-12T18:26:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  384. 2026-06-12T18:26:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  385. 2026-06-12T18:26:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  386. 2026-06-12T18:28:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  387. 2026-06-12T18:28:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  388. 2026-06-12T18:28:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  389. 2026-06-12T18:28:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  390. 2026-06-12T18:29:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  391. 2026-06-12T18:30:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  392. 2026-06-12T18:30:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  393. 2026-06-12T18:30:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  394. 2026-06-12T18:30:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  395. 2026-06-12T18:30:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  396. 2026-06-12T18:30:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  397. 2026-06-12T18:30:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  398. 2026-06-12T18:30:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  399. 2026-06-12T18:30:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  400. 2026-06-12T18:30:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  401. 2026-06-12T18:32:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  402. 2026-06-12T18:32:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  403. 2026-06-12T18:32:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  404. 2026-06-12T18:32:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  405. 2026-06-12T18:32:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  406. 2026-06-12T18:34:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  407. 2026-06-12T18:34:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  408. 2026-06-12T18:34:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  409. 2026-06-12T18:34:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  410. 2026-06-12T18:34:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  411. 2026-06-12T18:35:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  412. 2026-06-12T18:35:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  413. 2026-06-12T18:35:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  414. 2026-06-12T18:35:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  415. 2026-06-12T18:36:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  416. 2026-06-12T18:38:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  417. 2026-06-12T18:38:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  418. 2026-06-12T18:38:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  419. 2026-06-12T18:38:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  420. 2026-06-12T18:38:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  421. 2026-06-12T18:42:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  422. 2026-06-12T18:42:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  423. 2026-06-12T18:42:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  424. 2026-06-12T18:42:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  425. 2026-06-12T18:42:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  426. 2026-06-12T18:45:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  427. 2026-06-12T18:45:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  428. 2026-06-12T18:45:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  429. 2026-06-12T18:45:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  430. 2026-06-12T18:45:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  431. 2026-06-12T18:48:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  432. 2026-06-12T18:48:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  433. 2026-06-12T18:48:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  434. 2026-06-12T18:48:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  435. 2026-06-12T18:48:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  436. 2026-06-12T18:51:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  437. 2026-06-12T18:51:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  438. 2026-06-12T18:51:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  439. 2026-06-12T18:51:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  440. 2026-06-12T18:51:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  441. 2026-06-12T18:56:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  442. 2026-06-12T18:56:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  443. 2026-06-12T18:56:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  444. 2026-06-12T18:56:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  445. 2026-06-12T18:57:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  446. 2026-06-12T18:58:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  447. 2026-06-12T18:58:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  448. 2026-06-12T18:58:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  449. 2026-06-12T18:58:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  450. 2026-06-12T18:59:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  451. 2026-06-12T19:00:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  452. 2026-06-12T19:00:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  453. 2026-06-12T19:00:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  454. 2026-06-12T19:00:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  455. 2026-06-12T19:00:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  456. 2026-06-12T19:01:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  457. 2026-06-12T19:01:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  458. 2026-06-12T19:01:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  459. 2026-06-12T19:01:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  460. 2026-06-12T19:01:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  461. 2026-06-12T19:03:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  462. 2026-06-12T19:03:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  463. 2026-06-12T19:03:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  464. 2026-06-12T19:03:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  465. 2026-06-12T19:04:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  466. 2026-06-12T19:04:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  467. 2026-06-12T19:04:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  468. 2026-06-12T19:04:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  469. 2026-06-12T19:04:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  470. 2026-06-12T19:04:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  471. 2026-06-12T19:09:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  472. 2026-06-12T19:09:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  473. 2026-06-12T19:09:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  474. 2026-06-12T19:09:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  475. 2026-06-12T19:09:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  476. 2026-06-12T19:15:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  477. 2026-06-12T19:15:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  478. 2026-06-12T19:15:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  479. 2026-06-12T19:15:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  480. 2026-06-12T19:15:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  481. 2026-06-12T19:16:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  482. 2026-06-12T19:16:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  483. 2026-06-12T19:16:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  484. 2026-06-12T19:16:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  485. 2026-06-12T19:17:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  486. 2026-06-12T19:17:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  487. 2026-06-12T19:17:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  488. 2026-06-12T19:17:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  489. 2026-06-12T19:17:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  490. 2026-06-12T19:17:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  491. 2026-06-12T19:22:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  492. 2026-06-12T19:22:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  493. 2026-06-12T19:22:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  494. 2026-06-12T19:22:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  495. 2026-06-12T19:22:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  496. 2026-06-12T19:26:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  497. 2026-06-12T19:26:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  498. 2026-06-12T19:26:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  499. 2026-06-12T19:26:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  500. 2026-06-12T19:26:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  501. 2026-06-12T19:31:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  502. 2026-06-12T19:31:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  503. 2026-06-12T19:31:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  504. 2026-06-12T19:31:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  505. 2026-06-12T19:31:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  506. 2026-06-12T19:34:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  507. 2026-06-12T19:34:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  508. 2026-06-12T19:34:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  509. 2026-06-12T19:34:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  510. 2026-06-12T19:34:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  511. 2026-06-12T19:39:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  512. 2026-06-12T19:39:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  513. 2026-06-12T19:39:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  514. 2026-06-12T19:39:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  515. 2026-06-12T19:40:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  516. 2026-06-12T19:40:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  517. 2026-06-12T19:40:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  518. 2026-06-12T19:41:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  519. 2026-06-12T19:41:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  520. 2026-06-12T19:41:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  521. 2026-06-12T19:41:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  522. 2026-06-12T19:42:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  523. 2026-06-12T19:42:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  524. 2026-06-12T19:42:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  525. 2026-06-12T19:42:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  526. 2026-06-12T19:47:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  527. 2026-06-12T19:47:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  528. 2026-06-12T19:47:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  529. 2026-06-12T19:47:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  530. 2026-06-12T19:47:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  531. 2026-06-12T19:51:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  532. 2026-06-12T19:51:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  533. 2026-06-12T19:51:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  534. 2026-06-12T19:51:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  535. 2026-06-12T19:51:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  536. 2026-06-12T19:56:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  537. 2026-06-12T19:56:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  538. 2026-06-12T19:56:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  539. 2026-06-12T19:56:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  540. 2026-06-12T19:56:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  541. 2026-06-12T19:59:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  542. 2026-06-12T19:59:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  543. 2026-06-12T19:59:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  544. 2026-06-12T19:59:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  545. 2026-06-12T19:59:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  546. 2026-06-12T20:00:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  547. 2026-06-12T20:00:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  548. 2026-06-12T20:00:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  549. 2026-06-12T20:00:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  550. 2026-06-12T20:01:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  551. 2026-06-12T20:02:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  552. 2026-06-12T20:02:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  553. 2026-06-12T20:02:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  554. 2026-06-12T20:02:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  555. 2026-06-12T20:02:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  556. 2026-06-12T20:03:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  557. 2026-06-12T20:03:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  558. 2026-06-12T20:03:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  559. 2026-06-12T20:03:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  560. 2026-06-12T20:03:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  561. 2026-06-12T20:05:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  562. 2026-06-12T20:05:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  563. 2026-06-12T20:05:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  564. 2026-06-12T20:05:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  565. 2026-06-12T20:06:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  566. 2026-06-12T20:06:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  567. 2026-06-12T20:06:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  568. 2026-06-12T20:06:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  569. 2026-06-12T20:06:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  570. 2026-06-12T20:06:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  571. 2026-06-12T20:09:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  572. 2026-06-12T20:09:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  573. 2026-06-12T20:09:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  574. 2026-06-12T20:09:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  575. 2026-06-12T20:09:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  576. 2026-06-12T20:13:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  577. 2026-06-12T20:13:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  578. 2026-06-12T20:13:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  579. 2026-06-12T20:13:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  580. 2026-06-12T20:13:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  581. 2026-06-12T20:15:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  582. 2026-06-12T20:15:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  583. 2026-06-12T20:15:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  584. 2026-06-12T20:15:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  585. 2026-06-12T20:15:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  586. 2026-06-12T20:17:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  587. 2026-06-12T20:17:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  588. 2026-06-12T20:17:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  589. 2026-06-12T20:17:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  590. 2026-06-12T20:18:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  591. 2026-06-12T20:23:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  592. 2026-06-12T20:23:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  593. 2026-06-12T20:23:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  594. 2026-06-12T20:23:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  595. 2026-06-12T20:23:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  596. 2026-06-12T20:25:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  597. 2026-06-12T20:25:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  598. 2026-06-12T20:25:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  599. 2026-06-12T20:25:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  600. 2026-06-12T20:25:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  601. 2026-06-12T20:29:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  602. 2026-06-12T20:29:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  603. 2026-06-12T20:29:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  604. 2026-06-12T20:29:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  605. 2026-06-12T20:29:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  606. 2026-06-12T20:35:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  607. 2026-06-12T20:35:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  608. 2026-06-12T20:35:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  609. 2026-06-12T20:35:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  610. 2026-06-12T20:35:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  611. 2026-06-12T20:37:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  612. 2026-06-12T20:37:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  613. 2026-06-12T20:37:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  614. 2026-06-12T20:37:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  615. 2026-06-12T20:37:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  616. 2026-06-12T20:41:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  617. 2026-06-12T20:41:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  618. 2026-06-12T20:41:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  619. 2026-06-12T20:41:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  620. 2026-06-12T20:42:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  621. 2026-06-12T20:43:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  622. 2026-06-12T20:43:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  623. 2026-06-12T20:43:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  624. 2026-06-12T20:43:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  625. 2026-06-12T20:43:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  626. 2026-06-12T20:44:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  627. 2026-06-12T20:44:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  628. 2026-06-12T20:44:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  629. 2026-06-12T20:44:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  630. 2026-06-12T20:44:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  631. 2026-06-12T20:46:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  632. 2026-06-12T20:46:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  633. 2026-06-12T20:46:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  634. 2026-06-12T20:46:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  635. 2026-06-12T20:46:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  636. 2026-06-12T20:51:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  637. 2026-06-12T20:51:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  638. 2026-06-12T20:51:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  639. 2026-06-12T20:51:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  640. 2026-06-12T20:51:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  641. 2026-06-12T20:53:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  642. 2026-06-12T20:53:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  643. 2026-06-12T20:53:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  644. 2026-06-12T20:53:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  645. 2026-06-12T20:54:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  646. 2026-06-12T20:57:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  647. 2026-06-12T20:57:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  648. 2026-06-12T20:57:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  649. 2026-06-12T20:57:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  650. 2026-06-12T20:57:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  651. 2026-06-12T21:03:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  652. 2026-06-12T21:03:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  653. 2026-06-12T21:03:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  654. 2026-06-12T21:03:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  655. 2026-06-12T21:03:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  656. 2026-06-12T21:06:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  657. 2026-06-12T21:07:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  658. 2026-06-12T21:07:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  659. 2026-06-12T21:07:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  660. 2026-06-12T21:07:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  661. 2026-06-12T21:09:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  662. 2026-06-12T21:09:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  663. 2026-06-12T21:09:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  664. 2026-06-12T21:09:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  665. 2026-06-12T21:10:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  666. 2026-06-12T21:13:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  667. 2026-06-12T21:13:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  668. 2026-06-12T21:13:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  669. 2026-06-12T21:13:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  670. 2026-06-12T21:13:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  671. 2026-06-12T21:16:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  672. 2026-06-12T21:16:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  673. 2026-06-12T21:16:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  674. 2026-06-12T21:16:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  675. 2026-06-12T21:17:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  676. 2026-06-12T21:20:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  677. 2026-06-12T21:20:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  678. 2026-06-12T21:20:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  679. 2026-06-12T21:20:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  680. 2026-06-12T21:20:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  681. 2026-06-12T21:25:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  682. 2026-06-12T21:25:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  683. 2026-06-12T21:25:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  684. 2026-06-12T21:25:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  685. 2026-06-12T21:25:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  686. 2026-06-12T21:25:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  687. 2026-06-12T21:25:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  688. 2026-06-12T21:25:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  689. 2026-06-12T21:25:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  690. 2026-06-12T21:26:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  691. 2026-06-12T21:28:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  692. 2026-06-12T21:28:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  693. 2026-06-12T21:28:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  694. 2026-06-12T21:28:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  695. 2026-06-12T21:28:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  696. 2026-06-12T21:30:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  697. 2026-06-12T21:30:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  698. 2026-06-12T21:30:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  699. 2026-06-12T21:30:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  700. 2026-06-12T21:30:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  701. 2026-06-12T21:31:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  702. 2026-06-12T21:31:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  703. 2026-06-12T21:31:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  704. 2026-06-12T21:31:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  705. 2026-06-12T21:32:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  706. 2026-06-12T21:35:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  707. 2026-06-12T21:35:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  708. 2026-06-12T21:35:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  709. 2026-06-12T21:35:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  710. 2026-06-12T21:35:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  711. 2026-06-12T21:39:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  712. 2026-06-12T21:39:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  713. 2026-06-12T21:39:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  714. 2026-06-12T21:39:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  715. 2026-06-12T21:39:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  716. 2026-06-12T21:42:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  717. 2026-06-12T21:42:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  718. 2026-06-12T21:42:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  719. 2026-06-12T21:42:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  720. 2026-06-12T21:43:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  721. 2026-06-12T21:47:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  722. 2026-06-12T21:47:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  723. 2026-06-12T21:47:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  724. 2026-06-12T21:47:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  725. 2026-06-12T21:48:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  726. 2026-06-12T21:51:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  727. 2026-06-12T21:51:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  728. 2026-06-12T21:51:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  729. 2026-06-12T21:51:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  730. 2026-06-12T21:51:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  731. 2026-06-12T21:52:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  732. 2026-06-12T21:52:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  733. 2026-06-12T21:52:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  734. 2026-06-12T21:52:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  735. 2026-06-12T21:52:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  736. 2026-06-12T21:56:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  737. 2026-06-12T21:56:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  738. 2026-06-12T21:56:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  739. 2026-06-12T21:56:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  740. 2026-06-12T21:56:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  741. 2026-06-12T21:59:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  742. 2026-06-12T21:59:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  743. 2026-06-12T21:59:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  744. 2026-06-12T21:59:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  745. 2026-06-12T21:59:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  746. 2026-06-12T22:03:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  747. 2026-06-12T22:03:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  748. 2026-06-12T22:03:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  749. 2026-06-12T22:03:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  750. 2026-06-12T22:04:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  751. 2026-06-12T22:09:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  752. 2026-06-12T22:09:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  753. 2026-06-12T22:09:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  754. 2026-06-12T22:09:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  755. 2026-06-12T22:09:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  756. 2026-06-12T22:14:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  757. 2026-06-12T22:14:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  758. 2026-06-12T22:14:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  759. 2026-06-12T22:14:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  760. 2026-06-12T22:14:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  761. 2026-06-12T22:17:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  762. 2026-06-12T22:17:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  763. 2026-06-12T22:17:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  764. 2026-06-12T22:17:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  765. 2026-06-12T22:18:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  766. 2026-06-12T22:22:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  767. 2026-06-12T22:22:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  768. 2026-06-12T22:22:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  769. 2026-06-12T22:22:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  770. 2026-06-12T22:22:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  771. 2026-06-12T22:25:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  772. 2026-06-12T22:25:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  773. 2026-06-12T22:25:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  774. 2026-06-12T22:25:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  775. 2026-06-12T22:25:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  776. 2026-06-12T22:26:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  777. 2026-06-12T22:26:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  778. 2026-06-12T22:26:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  779. 2026-06-12T22:26:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  780. 2026-06-12T22:26:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  781. 2026-06-12T22:28:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  782. 2026-06-12T22:28:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  783. 2026-06-12T22:28:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  784. 2026-06-12T22:28:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  785. 2026-06-12T22:28:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  786. 2026-06-12T22:33:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  787. 2026-06-12T22:33:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  788. 2026-06-12T22:33:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  789. 2026-06-12T22:33:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  790. 2026-06-12T22:34:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  791. 2026-06-12T22:37:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  792. 2026-06-12T22:37:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  793. 2026-06-12T22:37:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  794. 2026-06-12T22:37:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  795. 2026-06-12T22:38:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  796. 2026-06-12T22:40:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  797. 2026-06-12T22:40:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  798. 2026-06-12T22:40:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  799. 2026-06-12T22:40:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  800. 2026-06-12T22:41:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  801. 2026-06-12T22:42:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  802. 2026-06-12T22:42:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  803. 2026-06-12T22:42:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  804. 2026-06-12T22:42:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  805. 2026-06-12T22:43:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  806. 2026-06-12T22:43:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  807. 2026-06-12T22:43:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  808. 2026-06-12T22:43:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  809. 2026-06-12T22:43:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  810. 2026-06-12T22:44:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  811. 2026-06-12T22:49:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  812. 2026-06-12T22:49:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  813. 2026-06-12T22:49:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  814. 2026-06-12T22:49:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  815. 2026-06-12T22:49:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  816. 2026-06-12T22:49:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  817. 2026-06-12T22:49:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  818. 2026-06-12T22:49:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  819. 2026-06-12T22:49:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  820. 2026-06-12T22:49:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  821. 2026-06-12T22:53:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  822. 2026-06-12T22:53:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  823. 2026-06-12T22:53:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  824. 2026-06-12T22:53:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  825. 2026-06-12T22:53:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  826. 2026-06-12T22:57:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  827. 2026-06-12T22:57:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  828. 2026-06-12T22:57:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  829. 2026-06-12T22:57:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  830. 2026-06-12T22:57:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  831. 2026-06-12T23:02:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  832. 2026-06-12T23:02:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  833. 2026-06-12T23:02:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  834. 2026-06-12T23:02:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  835. 2026-06-12T23:02:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  836. 2026-06-12T23:06:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  837. 2026-06-12T23:06:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  838. 2026-06-12T23:06:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  839. 2026-06-12T23:06:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  840. 2026-06-12T23:06:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  841. 2026-06-12T23:10:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  842. 2026-06-12T23:10:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  843. 2026-06-12T23:10:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  844. 2026-06-12T23:10:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  845. 2026-06-12T23:11:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  846. 2026-06-12T23:12:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  847. 2026-06-12T23:12:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  848. 2026-06-12T23:12:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  849. 2026-06-12T23:12:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  850. 2026-06-12T23:12:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  851. 2026-06-12T23:15:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  852. 2026-06-12T23:15:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  853. 2026-06-12T23:15:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  854. 2026-06-12T23:15:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  855. 2026-06-12T23:15:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  856. 2026-06-12T23:19:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  857. 2026-06-12T23:19:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  858. 2026-06-12T23:19:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  859. 2026-06-12T23:19:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  860. 2026-06-12T23:19:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  861. 2026-06-12T23:21:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  862. 2026-06-12T23:21:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  863. 2026-06-12T23:21:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  864. 2026-06-12T23:21:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  865. 2026-06-12T23:21:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  866. 2026-06-12T23:22:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  867. 2026-06-12T23:22:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  868. 2026-06-12T23:22:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  869. 2026-06-12T23:22:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  870. 2026-06-12T23:22:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  871. 2026-06-12T23:25:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  872. 2026-06-12T23:25:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  873. 2026-06-12T23:25:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  874. 2026-06-12T23:25:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  875. 2026-06-12T23:25:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  876. 2026-06-12T23:30:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  877. 2026-06-12T23:30:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  878. 2026-06-12T23:30:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  879. 2026-06-12T23:30:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  880. 2026-06-12T23:31:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  881. 2026-06-12T23:31:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  882. 2026-06-12T23:31:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  883. 2026-06-12T23:31:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  884. 2026-06-12T23:31:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  885. 2026-06-12T23:32:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  886. 2026-06-12T23:37:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  887. 2026-06-12T23:37:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  888. 2026-06-12T23:37:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  889. 2026-06-12T23:37:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  890. 2026-06-12T23:37:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  891. 2026-06-12T23:40:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  892. 2026-06-12T23:40:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  893. 2026-06-12T23:40:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  894. 2026-06-12T23:40:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  895. 2026-06-12T23:40:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  896. 2026-06-12T23:45:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  897. 2026-06-12T23:45:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  898. 2026-06-12T23:45:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  899. 2026-06-12T23:45:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  900. 2026-06-12T23:45:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  901. 2026-06-12T23:48:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  902. 2026-06-12T23:49:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  903. 2026-06-12T23:49:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  904. 2026-06-12T23:49:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  905. 2026-06-12T23:49:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  906. 2026-06-12T23:54:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  907. 2026-06-12T23:54:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  908. 2026-06-12T23:54:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  909. 2026-06-12T23:54:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  910. 2026-06-12T23:54:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  911. 2026-06-12T23:55:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  912. 2026-06-12T23:55:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  913. 2026-06-12T23:55:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  914. 2026-06-12T23:55:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  915. 2026-06-12T23:55:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  916. 2026-06-12T23:59:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  917. 2026-06-12T23:59:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  918. 2026-06-12T23:59:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  919. 2026-06-12T23:59:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  920. 2026-06-13T00:00:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  921. 2026-06-13T00:02:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  922. 2026-06-13T00:02:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  923. 2026-06-13T00:02:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  924. 2026-06-13T00:02:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  925. 2026-06-13T00:02:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  926. 2026-06-13T00:04:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  927. 2026-06-13T00:04:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  928. 2026-06-13T00:04:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  929. 2026-06-13T00:04:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  930. 2026-06-13T00:05:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  931. 2026-06-13T00:08:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  932. 2026-06-13T00:08:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  933. 2026-06-13T00:08:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  934. 2026-06-13T00:08:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  935. 2026-06-13T00:08:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  936. 2026-06-13T00:11:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  937. 2026-06-13T00:11:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  938. 2026-06-13T00:11:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  939. 2026-06-13T00:11:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  940. 2026-06-13T00:11:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  941. 2026-06-13T00:15:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  942. 2026-06-13T00:15:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  943. 2026-06-13T00:15:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  944. 2026-06-13T00:15:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  945. 2026-06-13T00:15:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  946. 2026-06-13T00:19:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  947. 2026-06-13T00:19:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  948. 2026-06-13T00:19:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  949. 2026-06-13T00:19:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  950. 2026-06-13T00:19:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  951. 2026-06-13T00:21:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  952. 2026-06-13T00:21:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  953. 2026-06-13T00:21:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  954. 2026-06-13T00:21:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  955. 2026-06-13T00:22:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  956. 2026-06-13T00:24:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  957. 2026-06-13T00:24:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  958. 2026-06-13T00:24:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  959. 2026-06-13T00:24:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  960. 2026-06-13T00:24:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  961. 2026-06-13T00:29:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  962. 2026-06-13T00:29:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  963. 2026-06-13T00:29:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  964. 2026-06-13T00:29:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  965. 2026-06-13T00:29:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  966. 2026-06-13T00:32:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  967. 2026-06-13T00:32:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  968. 2026-06-13T00:32:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  969. 2026-06-13T00:32:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  970. 2026-06-13T00:32:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  971. 2026-06-13T00:35:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  972. 2026-06-13T00:35:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  973. 2026-06-13T00:35:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  974. 2026-06-13T00:35:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  975. 2026-06-13T00:36:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  976. 2026-06-13T00:37:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  977. 2026-06-13T00:37:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  978. 2026-06-13T00:37:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  979. 2026-06-13T00:37:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  980. 2026-06-13T00:37:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  981. 2026-06-13T00:42:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  982. 2026-06-13T00:42:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  983. 2026-06-13T00:42:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  984. 2026-06-13T00:42:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  985. 2026-06-13T00:42:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  986. 2026-06-13T00:45:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  987. 2026-06-13T00:45:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  988. 2026-06-13T00:45:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  989. 2026-06-13T00:45:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  990. 2026-06-13T00:45:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  991. 2026-06-13T00:49:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  992. 2026-06-13T00:49:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  993. 2026-06-13T00:49:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  994. 2026-06-13T00:49:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  995. 2026-06-13T00:49:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  996. 2026-06-13T00:52:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  997. 2026-06-13T00:52:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  998. 2026-06-13T00:52:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  999. 2026-06-13T00:52:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1000. 2026-06-13T00:52:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1001. 2026-06-13T00:55:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1002. 2026-06-13T00:55:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1003. 2026-06-13T00:55:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1004. 2026-06-13T00:55:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1005. 2026-06-13T00:56:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1006. 2026-06-13T00:58:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1007. 2026-06-13T00:58:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1008. 2026-06-13T00:58:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1009. 2026-06-13T00:58:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1010. 2026-06-13T00:59:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1011. 2026-06-13T01:01:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1012. 2026-06-13T01:01:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1013. 2026-06-13T01:01:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1014. 2026-06-13T01:01:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1015. 2026-06-13T01:01:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1016. 2026-06-13T01:06:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1017. 2026-06-13T01:06:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1018. 2026-06-13T01:06:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1019. 2026-06-13T01:06:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1020. 2026-06-13T01:06:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1021. 2026-06-13T01:09:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1022. 2026-06-13T01:09:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1023. 2026-06-13T01:09:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1024. 2026-06-13T01:09:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1025. 2026-06-13T01:10:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1026. 2026-06-13T01:14:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1027. 2026-06-13T01:14:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1028. 2026-06-13T01:14:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1029. 2026-06-13T01:14:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1030. 2026-06-13T01:14:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1031. 2026-06-13T01:19:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1032. 2026-06-13T01:19:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1033. 2026-06-13T01:19:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1034. 2026-06-13T01:19:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1035. 2026-06-13T01:19:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1036. 2026-06-13T01:22:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1037. 2026-06-13T01:22:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1038. 2026-06-13T01:22:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1039. 2026-06-13T01:22:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1040. 2026-06-13T01:22:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1041. 2026-06-13T01:24:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1042. 2026-06-13T01:24:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1043. 2026-06-13T01:24:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1044. 2026-06-13T01:24:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1045. 2026-06-13T01:25:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1046. 2026-06-13T01:29:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1047. 2026-06-13T01:29:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1048. 2026-06-13T01:29:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1049. 2026-06-13T01:29:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1050. 2026-06-13T01:29:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1051. 2026-06-13T01:33:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1052. 2026-06-13T01:33:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1053. 2026-06-13T01:33:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1054. 2026-06-13T01:33:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1055. 2026-06-13T01:33:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1056. 2026-06-13T01:34:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1057. 2026-06-13T01:34:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1058. 2026-06-13T01:34:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1059. 2026-06-13T01:34:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1060. 2026-06-13T01:35:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1061. 2026-06-13T01:39:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1062. 2026-06-13T01:39:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1063. 2026-06-13T01:39:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1064. 2026-06-13T01:39:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1065. 2026-06-13T01:39:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1066. 2026-06-13T01:43:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1067. 2026-06-13T01:43:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1068. 2026-06-13T01:43:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1069. 2026-06-13T01:43:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1070. 2026-06-13T01:44:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1071. 2026-06-13T01:47:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1072. 2026-06-13T01:47:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1073. 2026-06-13T01:47:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1074. 2026-06-13T01:47:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1075. 2026-06-13T01:47:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1076. 2026-06-13T01:47:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1077. 2026-06-13T01:47:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1078. 2026-06-13T01:47:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1079. 2026-06-13T01:47:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1080. 2026-06-13T01:48:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1081. 2026-06-13T01:48:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1082. 2026-06-13T01:48:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1083. 2026-06-13T01:48:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1084. 2026-06-13T01:48:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1085. 2026-06-13T01:49:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1086. 2026-06-13T01:52:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1087. 2026-06-13T01:52:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1088. 2026-06-13T01:52:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1089. 2026-06-13T01:52:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1090. 2026-06-13T01:52:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1091. 2026-06-13T01:56:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1092. 2026-06-13T01:56:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1093. 2026-06-13T01:56:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1094. 2026-06-13T01:56:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1095. 2026-06-13T01:56:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1096. 2026-06-13T01:57:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1097. 2026-06-13T01:57:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1098. 2026-06-13T01:57:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1099. 2026-06-13T01:57:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1100. 2026-06-13T01:57:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1101. 2026-06-13T02:02:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1102. 2026-06-13T02:02:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1103. 2026-06-13T02:02:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1104. 2026-06-13T02:02:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1105. 2026-06-13T02:03:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1106. 2026-06-13T02:03:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1107. 2026-06-13T02:04:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1108. 2026-06-13T02:04:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1109. 2026-06-13T02:04:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1110. 2026-06-13T02:04:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1111. 2026-06-13T02:08:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1112. 2026-06-13T02:08:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1113. 2026-06-13T02:08:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1114. 2026-06-13T02:08:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1115. 2026-06-13T02:09:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1116. 2026-06-13T02:12:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1117. 2026-06-13T02:12:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1118. 2026-06-13T02:12:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1119. 2026-06-13T02:12:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1120. 2026-06-13T02:12:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1121. 2026-06-13T02:14:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1122. 2026-06-13T02:14:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1123. 2026-06-13T02:14:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1124. 2026-06-13T02:14:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1125. 2026-06-13T02:14:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1126. 2026-06-13T02:17:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1127. 2026-06-13T02:17:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1128. 2026-06-13T02:17:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1129. 2026-06-13T02:17:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1130. 2026-06-13T02:18:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1131. 2026-06-13T02:18:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1132. 2026-06-13T02:18:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1133. 2026-06-13T02:18:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1134. 2026-06-13T02:18:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1135. 2026-06-13T02:18:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1136. 2026-06-13T02:18:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1137. 2026-06-13T02:18:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1138. 2026-06-13T02:18:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1139. 2026-06-13T02:18:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1140. 2026-06-13T02:19:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1141. 2026-06-13T02:23:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1142. 2026-06-13T02:23:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1143. 2026-06-13T02:23:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1144. 2026-06-13T02:23:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1145. 2026-06-13T02:24:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1146. 2026-06-13T02:29:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1147. 2026-06-13T02:29:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1148. 2026-06-13T02:29:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1149. 2026-06-13T02:29:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1150. 2026-06-13T02:29:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1151. 2026-06-13T02:32:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1152. 2026-06-13T02:32:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1153. 2026-06-13T02:32:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1154. 2026-06-13T02:32:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1155. 2026-06-13T02:32:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1156. 2026-06-13T02:33:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1157. 2026-06-13T02:33:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1158. 2026-06-13T02:33:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1159. 2026-06-13T02:33:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1160. 2026-06-13T02:34:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1161. 2026-06-13T02:37:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1162. 2026-06-13T02:37:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1163. 2026-06-13T02:37:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1164. 2026-06-13T02:37:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1165. 2026-06-13T02:38:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1166. 2026-06-13T02:39:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1167. 2026-06-13T02:39:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1168. 2026-06-13T02:39:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1169. 2026-06-13T02:39:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1170. 2026-06-13T02:39:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1171. 2026-06-13T02:41:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1172. 2026-06-13T02:41:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1173. 2026-06-13T02:41:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1174. 2026-06-13T02:41:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1175. 2026-06-13T02:42:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1176. 2026-06-13T02:47:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1177. 2026-06-13T02:47:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1178. 2026-06-13T02:47:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1179. 2026-06-13T02:47:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1180. 2026-06-13T02:47:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1181. 2026-06-13T02:48:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1182. 2026-06-13T02:48:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1183. 2026-06-13T02:48:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1184. 2026-06-13T02:48:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1185. 2026-06-13T02:48:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1186. 2026-06-13T02:53:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1187. 2026-06-13T02:53:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1188. 2026-06-13T02:53:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1189. 2026-06-13T02:53:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1190. 2026-06-13T02:53:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1191. 2026-06-13T02:53:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1192. 2026-06-13T02:53:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1193. 2026-06-13T02:53:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1194. 2026-06-13T02:53:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1195. 2026-06-13T02:54:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1196. 2026-06-13T02:55:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1197. 2026-06-13T02:55:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1198. 2026-06-13T02:55:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1199. 2026-06-13T02:55:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1200. 2026-06-13T02:55:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1201. 2026-06-13T02:58:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1202. 2026-06-13T02:58:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1203. 2026-06-13T02:58:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1204. 2026-06-13T02:58:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1205. 2026-06-13T02:58:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1206. 2026-06-13T02:58:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1207. 2026-06-13T02:58:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1208. 2026-06-13T02:58:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1209. 2026-06-13T02:58:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1210. 2026-06-13T02:58:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1211. 2026-06-13T03:03:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1212. 2026-06-13T03:03:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1213. 2026-06-13T03:03:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1214. 2026-06-13T03:03:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1215. 2026-06-13T03:04:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1216. 2026-06-13T03:04:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1217. 2026-06-13T03:04:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1218. 2026-06-13T03:04:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1219. 2026-06-13T03:04:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1220. 2026-06-13T03:04:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1221. 2026-06-13T03:05:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1222. 2026-06-13T03:05:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1223. 2026-06-13T03:05:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1224. 2026-06-13T03:05:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1225. 2026-06-13T03:06:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1226. 2026-06-13T03:09:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1227. 2026-06-13T03:09:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1228. 2026-06-13T03:09:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1229. 2026-06-13T03:09:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1230. 2026-06-13T03:09:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1231. 2026-06-13T03:13:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1232. 2026-06-13T03:13:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1233. 2026-06-13T03:13:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1234. 2026-06-13T03:13:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1235. 2026-06-13T03:14:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1236. 2026-06-13T03:15:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1237. 2026-06-13T03:15:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1238. 2026-06-13T03:15:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1239. 2026-06-13T03:15:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1240. 2026-06-13T03:15:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1241. 2026-06-13T03:19:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1242. 2026-06-13T03:19:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1243. 2026-06-13T03:19:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1244. 2026-06-13T03:19:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1245. 2026-06-13T03:19:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1246. 2026-06-13T03:21:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1247. 2026-06-13T03:21:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1248. 2026-06-13T03:21:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1249. 2026-06-13T03:21:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1250. 2026-06-13T03:21:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1251. 2026-06-13T03:23:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1252. 2026-06-13T03:23:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1253. 2026-06-13T03:23:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1254. 2026-06-13T03:23:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1255. 2026-06-13T03:23:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1256. 2026-06-13T03:25:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1257. 2026-06-13T03:25:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1258. 2026-06-13T03:25:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1259. 2026-06-13T03:25:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1260. 2026-06-13T03:26:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1261. 2026-06-13T03:26:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1262. 2026-06-13T03:26:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1263. 2026-06-13T03:26:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1264. 2026-06-13T03:26:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1265. 2026-06-13T03:26:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1266. 2026-06-13T03:31:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1267. 2026-06-13T03:31:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1268. 2026-06-13T03:31:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1269. 2026-06-13T03:31:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1270. 2026-06-13T03:31:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1271. 2026-06-13T03:36:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1272. 2026-06-13T03:36:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1273. 2026-06-13T03:36:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1274. 2026-06-13T03:36:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1275. 2026-06-13T03:36:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1276. 2026-06-13T03:40:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1277. 2026-06-13T03:40:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1278. 2026-06-13T03:40:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1279. 2026-06-13T03:40:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1280. 2026-06-13T03:40:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1281. 2026-06-13T03:43:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1282. 2026-06-13T03:43:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1283. 2026-06-13T03:43:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1284. 2026-06-13T03:43:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1285. 2026-06-13T03:44:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1286. 2026-06-13T03:48:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1287. 2026-06-13T03:48:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1288. 2026-06-13T03:48:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1289. 2026-06-13T03:48:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1290. 2026-06-13T03:49:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1291. 2026-06-13T03:54:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1292. 2026-06-13T03:54:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1293. 2026-06-13T03:54:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1294. 2026-06-13T03:54:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1295. 2026-06-13T03:54:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1296. 2026-06-13T03:55:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1297. 2026-06-13T03:56:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1298. 2026-06-13T03:56:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1299. 2026-06-13T03:56:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1300. 2026-06-13T03:56:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1301. 2026-06-13T03:57:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1302. 2026-06-13T03:57:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1303. 2026-06-13T03:57:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1304. 2026-06-13T03:57:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1305. 2026-06-13T03:58:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1306. 2026-06-13T04:02:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1307. 2026-06-13T04:02:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1308. 2026-06-13T04:02:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1309. 2026-06-13T04:02:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1310. 2026-06-13T04:03:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1311. 2026-06-13T04:04:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1312. 2026-06-13T04:04:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1313. 2026-06-13T04:04:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1314. 2026-06-13T04:04:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1315. 2026-06-13T04:04:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1316. 2026-06-13T04:05:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1317. 2026-06-13T04:05:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1318. 2026-06-13T04:05:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1319. 2026-06-13T04:05:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1320. 2026-06-13T04:05:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1321. 2026-06-13T04:07:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1322. 2026-06-13T04:07:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1323. 2026-06-13T04:07:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1324. 2026-06-13T04:07:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1325. 2026-06-13T04:08:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1326. 2026-06-13T04:13:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1327. 2026-06-13T04:13:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1328. 2026-06-13T04:13:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1329. 2026-06-13T04:13:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1330. 2026-06-13T04:13:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1331. 2026-06-13T04:13:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1332. 2026-06-13T04:14:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1333. 2026-06-13T04:14:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1334. 2026-06-13T04:14:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1335. 2026-06-13T04:14:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1336. 2026-06-13T04:18:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1337. 2026-06-13T04:18:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1338. 2026-06-13T04:18:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1339. 2026-06-13T04:18:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1340. 2026-06-13T04:18:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1341. 2026-06-13T04:23:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1342. 2026-06-13T04:23:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1343. 2026-06-13T04:23:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1344. 2026-06-13T04:23:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1345. 2026-06-13T04:23:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1346. 2026-06-13T04:23:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1347. 2026-06-13T04:23:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1348. 2026-06-13T04:23:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1349. 2026-06-13T04:23:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1350. 2026-06-13T04:24:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1351. 2026-06-13T04:28:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1352. 2026-06-13T04:28:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1353. 2026-06-13T04:28:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1354. 2026-06-13T04:28:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1355. 2026-06-13T04:28:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1356. 2026-06-13T04:33:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1357. 2026-06-13T04:33:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1358. 2026-06-13T04:33:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1359. 2026-06-13T04:33:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1360. 2026-06-13T04:33:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1361. 2026-06-13T04:36:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1362. 2026-06-13T04:36:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1363. 2026-06-13T04:36:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1364. 2026-06-13T04:36:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1365. 2026-06-13T04:36:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1366. 2026-06-13T04:36:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1367. 2026-06-13T04:36:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1368. 2026-06-13T04:36:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1369. 2026-06-13T04:36:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1370. 2026-06-13T04:37:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1371. 2026-06-13T04:41:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1372. 2026-06-13T04:41:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1373. 2026-06-13T04:41:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1374. 2026-06-13T04:41:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1375. 2026-06-13T04:42:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1376. 2026-06-13T04:44:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1377. 2026-06-13T04:44:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1378. 2026-06-13T04:44:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1379. 2026-06-13T04:44:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1380. 2026-06-13T04:45:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1381. 2026-06-13T04:48:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1382. 2026-06-13T04:48:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1383. 2026-06-13T04:48:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1384. 2026-06-13T04:48:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1385. 2026-06-13T04:48:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1386. 2026-06-13T04:48:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1387. 2026-06-13T04:48:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1388. 2026-06-13T04:48:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1389. 2026-06-13T04:48:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1390. 2026-06-13T04:49:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1391. 2026-06-13T04:54:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1392. 2026-06-13T04:54:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1393. 2026-06-13T04:54:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1394. 2026-06-13T04:54:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1395. 2026-06-13T04:55:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1396. 2026-06-13T04:57:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1397. 2026-06-13T04:57:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1398. 2026-06-13T04:57:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1399. 2026-06-13T04:57:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1400. 2026-06-13T04:57:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1401. 2026-06-13T05:02:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1402. 2026-06-13T05:02:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1403. 2026-06-13T05:02:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1404. 2026-06-13T05:02:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1405. 2026-06-13T05:02:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1406. 2026-06-13T05:04:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1407. 2026-06-13T05:04:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1408. 2026-06-13T05:04:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1409. 2026-06-13T05:04:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1410. 2026-06-13T05:05:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1411. 2026-06-13T05:08:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1412. 2026-06-13T05:08:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1413. 2026-06-13T05:08:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1414. 2026-06-13T05:08:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1415. 2026-06-13T05:08:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1416. 2026-06-13T05:11:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1417. 2026-06-13T05:11:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1418. 2026-06-13T05:11:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1419. 2026-06-13T05:11:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1420. 2026-06-13T05:11:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1421. 2026-06-13T05:11:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1422. 2026-06-13T05:11:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1423. 2026-06-13T05:11:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1424. 2026-06-13T05:11:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1425. 2026-06-13T05:11:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1426. 2026-06-13T05:12:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1427. 2026-06-13T05:12:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1428. 2026-06-13T05:12:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1429. 2026-06-13T05:12:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1430. 2026-06-13T05:12:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1431. 2026-06-13T05:17:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1432. 2026-06-13T05:17:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1433. 2026-06-13T05:17:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1434. 2026-06-13T05:17:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1435. 2026-06-13T05:17:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1436. 2026-06-13T05:21:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1437. 2026-06-13T05:21:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1438. 2026-06-13T05:21:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1439. 2026-06-13T05:21:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1440. 2026-06-13T05:22:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1441. 2026-06-13T05:23:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1442. 2026-06-13T05:23:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1443. 2026-06-13T05:23:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1444. 2026-06-13T05:23:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1445. 2026-06-13T05:23:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1446. 2026-06-13T05:28:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1447. 2026-06-13T05:28:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1448. 2026-06-13T05:28:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1449. 2026-06-13T05:28:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1450. 2026-06-13T05:28:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1451. 2026-06-13T05:29:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1452. 2026-06-13T05:29:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1453. 2026-06-13T05:29:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1454. 2026-06-13T05:29:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1455. 2026-06-13T05:29:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1456. 2026-06-13T05:31:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1457. 2026-06-13T05:31:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1458. 2026-06-13T05:31:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1459. 2026-06-13T05:31:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1460. 2026-06-13T05:31:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1461. 2026-06-13T05:35:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1462. 2026-06-13T05:35:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1463. 2026-06-13T05:35:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1464. 2026-06-13T05:35:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1465. 2026-06-13T05:35:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1466. 2026-06-13T05:38:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1467. 2026-06-13T05:38:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1468. 2026-06-13T05:38:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1469. 2026-06-13T05:38:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1470. 2026-06-13T05:38:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1471. 2026-06-13T05:43:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1472. 2026-06-13T05:43:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1473. 2026-06-13T05:43:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1474. 2026-06-13T05:43:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1475. 2026-06-13T05:44:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1476. 2026-06-13T05:44:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1477. 2026-06-13T05:44:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1478. 2026-06-13T05:44:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1479. 2026-06-13T05:44:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1480. 2026-06-13T05:44:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1481. 2026-06-13T05:45:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1482. 2026-06-13T05:45:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1483. 2026-06-13T05:45:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1484. 2026-06-13T05:45:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1485. 2026-06-13T05:45:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1486. 2026-06-13T05:47:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1487. 2026-06-13T05:47:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1488. 2026-06-13T05:47:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1489. 2026-06-13T05:47:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1490. 2026-06-13T05:47:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1491. 2026-06-13T05:51:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1492. 2026-06-13T05:51:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1493. 2026-06-13T05:51:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1494. 2026-06-13T05:51:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1495. 2026-06-13T05:52:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1496. 2026-06-13T05:52:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1497. 2026-06-13T05:52:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1498. 2026-06-13T05:53:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1499. 2026-06-13T05:53:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1500. 2026-06-13T05:53:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1501. 2026-06-13T05:54:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1502. 2026-06-13T05:54:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1503. 2026-06-13T05:54:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1504. 2026-06-13T05:54:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1505. 2026-06-13T05:54:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1506. 2026-06-13T05:56:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1507. 2026-06-13T05:56:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1508. 2026-06-13T05:56:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1509. 2026-06-13T05:56:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1510. 2026-06-13T05:56:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1511. 2026-06-13T06:01:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1512. 2026-06-13T06:01:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1513. 2026-06-13T06:01:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1514. 2026-06-13T06:01:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1515. 2026-06-13T06:01:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1516. 2026-06-13T06:04:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1517. 2026-06-13T06:04:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1518. 2026-06-13T06:04:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1519. 2026-06-13T06:04:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1520. 2026-06-13T06:04:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1521. 2026-06-13T06:05:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1522. 2026-06-13T06:05:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1523. 2026-06-13T06:05:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1524. 2026-06-13T06:05:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1525. 2026-06-13T06:05:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1526. 2026-06-13T06:09:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1527. 2026-06-13T06:09:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1528. 2026-06-13T06:09:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1529. 2026-06-13T06:09:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1530. 2026-06-13T06:09:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1531. 2026-06-13T06:11:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1532. 2026-06-13T06:11:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1533. 2026-06-13T06:11:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1534. 2026-06-13T06:11:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1535. 2026-06-13T06:12:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1536. 2026-06-13T06:16:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1537. 2026-06-13T06:16:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1538. 2026-06-13T06:16:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1539. 2026-06-13T06:16:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1540. 2026-06-13T06:16:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1541. 2026-06-13T06:21:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1542. 2026-06-13T06:22:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1543. 2026-06-13T06:22:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1544. 2026-06-13T06:22:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1545. 2026-06-13T06:22:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1546. 2026-06-13T06:26:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1547. 2026-06-13T06:26:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1548. 2026-06-13T06:26:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1549. 2026-06-13T06:26:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1550. 2026-06-13T06:26:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1551. 2026-06-13T06:31:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1552. 2026-06-13T06:31:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1553. 2026-06-13T06:31:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1554. 2026-06-13T06:31:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1555. 2026-06-13T06:31:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1556. 2026-06-13T06:34:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1557. 2026-06-13T06:34:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1558. 2026-06-13T06:34:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1559. 2026-06-13T06:34:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1560. 2026-06-13T06:35:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1561. 2026-06-13T06:49:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1562. 2026-06-13T06:49:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1563. 2026-06-13T06:49:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1564. 2026-06-13T06:49:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1565. 2026-06-13T06:49:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1566. 2026-06-13T06:52:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1567. 2026-06-13T06:52:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1568. 2026-06-13T06:52:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1569. 2026-06-13T06:52:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1570. 2026-06-13T06:53:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1571. 2026-06-13T06:56:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1572. 2026-06-13T06:56:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1573. 2026-06-13T06:56:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1574. 2026-06-13T06:56:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1575. 2026-06-13T06:56:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1576. 2026-06-13T07:00:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1577. 2026-06-13T07:00:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1578. 2026-06-13T07:00:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1579. 2026-06-13T07:00:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1580. 2026-06-13T07:00:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1581. 2026-06-13T07:01:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1582. 2026-06-13T07:01:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1583. 2026-06-13T07:01:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1584. 2026-06-13T07:01:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1585. 2026-06-13T07:01:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1586. 2026-06-13T07:01:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1587. 2026-06-13T07:01:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1588. 2026-06-13T07:01:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1589. 2026-06-13T07:01:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1590. 2026-06-13T07:02:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1591. 2026-06-13T07:06:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1592. 2026-06-13T07:06:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1593. 2026-06-13T07:06:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1594. 2026-06-13T07:06:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1595. 2026-06-13T07:06:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1596. 2026-06-13T07:10:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1597. 2026-06-13T07:10:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1598. 2026-06-13T07:10:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1599. 2026-06-13T07:10:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1600. 2026-06-13T07:10:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1601. 2026-06-13T07:12:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1602. 2026-06-13T07:12:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1603. 2026-06-13T07:12:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1604. 2026-06-13T07:12:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1605. 2026-06-13T07:13:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1606. 2026-06-13T07:15:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1607. 2026-06-13T07:15:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1608. 2026-06-13T07:15:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1609. 2026-06-13T07:15:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1610. 2026-06-13T07:16:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1611. 2026-06-13T07:16:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1612. 2026-06-13T07:16:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1613. 2026-06-13T07:16:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1614. 2026-06-13T07:16:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1615. 2026-06-13T07:16:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1616. 2026-06-13T07:21:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1617. 2026-06-13T07:21:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1618. 2026-06-13T07:21:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1619. 2026-06-13T07:21:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1620. 2026-06-13T07:21:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1621. 2026-06-13T07:25:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1622. 2026-06-13T07:25:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1623. 2026-06-13T07:25:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1624. 2026-06-13T07:25:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1625. 2026-06-13T07:26:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1626. 2026-06-13T07:28:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1627. 2026-06-13T07:28:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1628. 2026-06-13T07:28:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1629. 2026-06-13T07:28:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1630. 2026-06-13T07:29:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1631. 2026-06-13T07:31:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1632. 2026-06-13T07:31:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1633. 2026-06-13T07:31:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1634. 2026-06-13T07:31:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1635. 2026-06-13T07:32:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1636. 2026-06-13T07:35:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1637. 2026-06-13T07:35:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1638. 2026-06-13T07:35:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1639. 2026-06-13T07:35:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1640. 2026-06-13T07:35:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1641. 2026-06-13T07:36:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1642. 2026-06-13T07:36:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1643. 2026-06-13T07:36:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1644. 2026-06-13T07:36:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1645. 2026-06-13T07:36:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1646. 2026-06-13T07:40:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1647. 2026-06-13T07:40:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1648. 2026-06-13T07:40:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1649. 2026-06-13T07:40:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1650. 2026-06-13T07:40:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1651. 2026-06-13T07:43:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1652. 2026-06-13T07:43:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1653. 2026-06-13T07:43:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1654. 2026-06-13T07:43:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1655. 2026-06-13T07:43:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1656. 2026-06-13T07:45:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1657. 2026-06-13T07:45:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1658. 2026-06-13T07:45:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1659. 2026-06-13T07:45:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1660. 2026-06-13T07:45:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1661. 2026-06-13T07:49:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1662. 2026-06-13T07:49:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1663. 2026-06-13T07:49:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1664. 2026-06-13T07:49:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1665. 2026-06-13T07:49:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1666. 2026-06-13T07:53:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1667. 2026-06-13T07:53:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1668. 2026-06-13T07:53:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1669. 2026-06-13T07:53:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1670. 2026-06-13T07:53:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1671. 2026-06-13T07:57:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1672. 2026-06-13T07:57:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1673. 2026-06-13T07:57:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1674. 2026-06-13T07:57:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1675. 2026-06-13T07:58:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1676. 2026-06-13T07:58:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1677. 2026-06-13T07:58:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1678. 2026-06-13T07:58:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1679. 2026-06-13T07:58:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1680. 2026-06-13T07:58:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1681. 2026-06-13T08:01:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1682. 2026-06-13T08:01:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1683. 2026-06-13T08:01:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1684. 2026-06-13T08:01:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1685. 2026-06-13T08:01:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1686. 2026-06-13T08:03:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1687. 2026-06-13T08:03:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1688. 2026-06-13T08:03:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1689. 2026-06-13T08:03:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1690. 2026-06-13T08:03:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1691. 2026-06-13T08:04:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1692. 2026-06-13T08:04:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1693. 2026-06-13T08:04:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1694. 2026-06-13T08:04:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1695. 2026-06-13T08:04:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1696. 2026-06-13T08:05:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1697. 2026-06-13T08:05:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1698. 2026-06-13T08:05:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1699. 2026-06-13T08:05:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1700. 2026-06-13T08:05:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1701. 2026-06-13T08:10:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1702. 2026-06-13T08:10:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1703. 2026-06-13T08:10:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1704. 2026-06-13T08:10:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1705. 2026-06-13T08:10:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1706. 2026-06-13T08:12:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1707. 2026-06-13T08:12:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1708. 2026-06-13T08:12:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1709. 2026-06-13T08:12:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1710. 2026-06-13T08:12:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1711. 2026-06-13T08:15:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1712. 2026-06-13T08:15:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1713. 2026-06-13T08:15:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1714. 2026-06-13T08:15:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1715. 2026-06-13T08:15:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1716. 2026-06-13T08:15:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1717. 2026-06-13T08:15:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1718. 2026-06-13T08:15:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1719. 2026-06-13T08:15:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1720. 2026-06-13T08:15:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1721. 2026-06-13T08:16:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1722. 2026-06-13T08:16:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1723. 2026-06-13T08:16:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1724. 2026-06-13T08:16:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1725. 2026-06-13T08:17:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1726. 2026-06-13T08:20:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1727. 2026-06-13T08:20:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1728. 2026-06-13T08:20:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1729. 2026-06-13T08:20:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1730. 2026-06-13T08:20:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1731. 2026-06-13T08:22:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1732. 2026-06-13T08:22:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1733. 2026-06-13T08:22:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1734. 2026-06-13T08:22:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1735. 2026-06-13T08:22:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1736. 2026-06-13T08:26:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1737. 2026-06-13T08:26:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1738. 2026-06-13T08:26:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1739. 2026-06-13T08:26:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1740. 2026-06-13T08:27:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1741. 2026-06-13T08:30:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1742. 2026-06-13T08:30:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1743. 2026-06-13T08:30:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1744. 2026-06-13T08:30:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1745. 2026-06-13T08:31:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1746. 2026-06-13T08:35:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1747. 2026-06-13T08:35:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1748. 2026-06-13T08:35:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1749. 2026-06-13T08:35:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1750. 2026-06-13T08:35:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1751. 2026-06-13T08:39:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1752. 2026-06-13T08:39:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1753. 2026-06-13T08:39:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1754. 2026-06-13T08:39:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1755. 2026-06-13T08:40:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1756. 2026-06-13T08:41:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1757. 2026-06-13T08:41:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1758. 2026-06-13T08:41:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1759. 2026-06-13T08:41:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1760. 2026-06-13T08:41:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1761. 2026-06-13T08:45:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1762. 2026-06-13T08:45:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1763. 2026-06-13T08:45:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1764. 2026-06-13T08:45:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1765. 2026-06-13T08:45:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1766. 2026-06-13T08:45:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1767. 2026-06-13T08:45:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1768. 2026-06-13T08:45:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1769. 2026-06-13T08:45:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1770. 2026-06-13T08:45:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1771. 2026-06-13T08:47:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1772. 2026-06-13T08:47:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1773. 2026-06-13T08:47:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1774. 2026-06-13T08:47:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1775. 2026-06-13T08:47:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1776. 2026-06-13T08:50:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1777. 2026-06-13T08:50:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1778. 2026-06-13T08:50:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1779. 2026-06-13T08:50:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1780. 2026-06-13T08:50:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1781. 2026-06-13T08:54:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1782. 2026-06-13T08:54:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1783. 2026-06-13T08:54:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1784. 2026-06-13T08:54:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1785. 2026-06-13T08:54:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1786. 2026-06-13T08:55:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1787. 2026-06-13T08:55:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1788. 2026-06-13T08:55:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1789. 2026-06-13T08:55:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1790. 2026-06-13T08:55:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1791. 2026-06-13T08:57:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1792. 2026-06-13T08:57:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1793. 2026-06-13T08:57:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1794. 2026-06-13T08:57:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1795. 2026-06-13T08:57:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1796. 2026-06-13T09:02:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1797. 2026-06-13T09:02:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1798. 2026-06-13T09:02:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1799. 2026-06-13T09:02:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1800. 2026-06-13T09:02:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1801. 2026-06-13T09:04:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1802. 2026-06-13T09:04:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1803. 2026-06-13T09:04:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1804. 2026-06-13T09:04:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1805. 2026-06-13T09:04:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1806. 2026-06-13T09:05:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1807. 2026-06-13T09:05:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1808. 2026-06-13T09:05:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1809. 2026-06-13T09:05:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1810. 2026-06-13T09:06:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1811. 2026-06-13T09:10:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1812. 2026-06-13T09:10:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1813. 2026-06-13T09:10:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1814. 2026-06-13T09:10:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1815. 2026-06-13T09:11:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1816. 2026-06-13T09:12:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1817. 2026-06-13T09:12:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1818. 2026-06-13T09:12:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1819. 2026-06-13T09:12:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1820. 2026-06-13T09:12:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1821. 2026-06-13T09:15:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1822. 2026-06-13T09:15:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1823. 2026-06-13T09:15:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1824. 2026-06-13T09:15:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1825. 2026-06-13T09:15:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1826. 2026-06-13T09:18:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1827. 2026-06-13T09:18:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1828. 2026-06-13T09:18:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1829. 2026-06-13T09:18:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1830. 2026-06-13T09:19:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1831. 2026-06-13T09:20:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1832. 2026-06-13T09:20:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1833. 2026-06-13T09:20:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1834. 2026-06-13T09:20:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1835. 2026-06-13T09:21:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1836. 2026-06-13T09:23:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1837. 2026-06-13T09:23:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1838. 2026-06-13T09:23:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1839. 2026-06-13T09:23:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1840. 2026-06-13T09:23:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1841. 2026-06-13T09:28:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1842. 2026-06-13T09:28:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1843. 2026-06-13T09:28:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1844. 2026-06-13T09:28:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1845. 2026-06-13T09:29:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1846. 2026-06-13T09:31:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1847. 2026-06-13T09:31:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1848. 2026-06-13T09:31:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1849. 2026-06-13T09:31:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1850. 2026-06-13T09:31:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1851. 2026-06-13T09:36:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1852. 2026-06-13T09:36:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1853. 2026-06-13T09:36:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1854. 2026-06-13T09:36:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1855. 2026-06-13T09:36:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1856. 2026-06-13T09:41:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1857. 2026-06-13T09:41:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1858. 2026-06-13T09:41:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1859. 2026-06-13T09:41:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1860. 2026-06-13T09:41:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1861. 2026-06-13T09:42:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1862. 2026-06-13T09:42:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1863. 2026-06-13T09:42:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1864. 2026-06-13T09:42:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1865. 2026-06-13T09:42:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1866. 2026-06-13T09:45:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1867. 2026-06-13T09:46:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1868. 2026-06-13T09:46:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1869. 2026-06-13T09:46:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1870. 2026-06-13T09:46:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1871. 2026-06-13T09:50:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1872. 2026-06-13T09:50:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1873. 2026-06-13T09:50:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1874. 2026-06-13T09:50:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1875. 2026-06-13T09:51:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1876. 2026-06-13T09:51:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1877. 2026-06-13T09:51:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1878. 2026-06-13T09:51:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1879. 2026-06-13T09:51:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1880. 2026-06-13T09:52:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1881. 2026-06-13T09:53:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1882. 2026-06-13T09:53:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1883. 2026-06-13T09:53:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1884. 2026-06-13T09:53:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1885. 2026-06-13T09:53:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1886. 2026-06-13T09:56:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1887. 2026-06-13T09:56:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1888. 2026-06-13T09:56:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1889. 2026-06-13T09:56:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1890. 2026-06-13T09:56:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1891. 2026-06-13T10:01:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1892. 2026-06-13T10:01:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1893. 2026-06-13T10:01:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1894. 2026-06-13T10:01:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1895. 2026-06-13T10:01:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1896. 2026-06-13T10:06:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1897. 2026-06-13T10:06:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1898. 2026-06-13T10:06:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1899. 2026-06-13T10:06:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1900. 2026-06-13T10:06:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1901. 2026-06-13T10:09:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1902. 2026-06-13T10:09:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1903. 2026-06-13T10:09:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1904. 2026-06-13T10:09:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1905. 2026-06-13T10:10:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1906. 2026-06-13T10:14:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1907. 2026-06-13T10:14:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1908. 2026-06-13T10:14:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1909. 2026-06-13T10:14:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1910. 2026-06-13T10:14:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1911. 2026-06-13T10:19:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1912. 2026-06-13T10:19:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1913. 2026-06-13T10:19:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1914. 2026-06-13T10:19:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1915. 2026-06-13T10:20:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1916. 2026-06-13T10:20:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1917. 2026-06-13T10:20:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1918. 2026-06-13T10:20:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1919. 2026-06-13T10:20:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1920. 2026-06-13T10:21:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1921. 2026-06-13T10:25:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1922. 2026-06-13T10:25:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1923. 2026-06-13T10:25:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1924. 2026-06-13T10:25:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1925. 2026-06-13T10:25:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1926. 2026-06-13T10:30:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1927. 2026-06-13T10:30:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1928. 2026-06-13T10:30:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1929. 2026-06-13T10:30:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1930. 2026-06-13T10:30:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1931. 2026-06-13T10:34:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1932. 2026-06-13T10:34:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1933. 2026-06-13T10:34:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1934. 2026-06-13T10:34:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1935. 2026-06-13T10:34:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1936. 2026-06-13T10:38:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1937. 2026-06-13T10:39:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1938. 2026-06-13T10:39:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1939. 2026-06-13T10:39:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1940. 2026-06-13T10:39:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1941. 2026-06-13T10:40:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1942. 2026-06-13T10:40:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1943. 2026-06-13T10:40:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1944. 2026-06-13T10:40:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1945. 2026-06-13T10:40:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1946. 2026-06-13T10:42:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1947. 2026-06-13T10:42:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1948. 2026-06-13T10:42:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1949. 2026-06-13T10:42:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1950. 2026-06-13T10:42:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1951. 2026-06-13T10:43:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1952. 2026-06-13T10:43:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1953. 2026-06-13T10:43:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1954. 2026-06-13T10:43:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1955. 2026-06-13T10:43:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1956. 2026-06-13T10:44:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1957. 2026-06-13T10:44:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1958. 2026-06-13T10:44:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1959. 2026-06-13T10:44:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1960. 2026-06-13T10:45:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1961. 2026-06-13T10:47:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1962. 2026-06-13T10:47:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1963. 2026-06-13T10:47:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1964. 2026-06-13T10:47:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1965. 2026-06-13T10:47:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1966. 2026-06-13T10:50:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1967. 2026-06-13T10:51:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1968. 2026-06-13T10:51:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1969. 2026-06-13T10:51:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1970. 2026-06-13T10:51:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1971. 2026-06-13T10:55:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1972. 2026-06-13T10:55:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1973. 2026-06-13T10:55:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1974. 2026-06-13T10:55:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1975. 2026-06-13T10:55:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1976. 2026-06-13T10:58:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1977. 2026-06-13T10:58:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1978. 2026-06-13T10:58:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1979. 2026-06-13T10:58:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1980. 2026-06-13T10:58:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1981. 2026-06-13T11:01:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1982. 2026-06-13T11:01:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1983. 2026-06-13T11:01:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1984. 2026-06-13T11:01:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1985. 2026-06-13T11:01:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1986. 2026-06-13T11:05:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1987. 2026-06-13T11:05:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1988. 2026-06-13T11:05:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1989. 2026-06-13T11:05:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1990. 2026-06-13T11:05:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1991. 2026-06-13T11:10:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1992. 2026-06-13T11:10:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1993. 2026-06-13T11:10:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1994. 2026-06-13T11:10:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  1995. 2026-06-13T11:11:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  1996. 2026-06-13T11:12:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  1997. 2026-06-13T11:12:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  1998. 2026-06-13T11:12:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  1999. 2026-06-13T11:12:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2000. 2026-06-13T11:12:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2001. 2026-06-13T11:13:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2002. 2026-06-13T11:13:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2003. 2026-06-13T11:13:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2004. 2026-06-13T11:13:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2005. 2026-06-13T11:13:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2006. 2026-06-13T11:13:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2007. 2026-06-13T11:13:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2008. 2026-06-13T11:13:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2009. 2026-06-13T11:13:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2010. 2026-06-13T11:14:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2011. 2026-06-13T11:15:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2012. 2026-06-13T11:15:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2013. 2026-06-13T11:15:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2014. 2026-06-13T11:15:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2015. 2026-06-13T11:15:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2016. 2026-06-13T11:17:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2017. 2026-06-13T11:17:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2018. 2026-06-13T11:17:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2019. 2026-06-13T11:17:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2020. 2026-06-13T11:18:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2021. 2026-06-13T11:18:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2022. 2026-06-13T11:18:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2023. 2026-06-13T11:18:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2024. 2026-06-13T11:18:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2025. 2026-06-13T11:19:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2026. 2026-06-13T11:22:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2027. 2026-06-13T11:22:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2028. 2026-06-13T11:22:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2029. 2026-06-13T11:22:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2030. 2026-06-13T11:23:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2031. 2026-06-13T11:28:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2032. 2026-06-13T11:28:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2033. 2026-06-13T11:28:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2034. 2026-06-13T11:28:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2035. 2026-06-13T11:28:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2036. 2026-06-13T11:28:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2037. 2026-06-13T11:28:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2038. 2026-06-13T11:28:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2039. 2026-06-13T11:28:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2040. 2026-06-13T11:28:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2041. 2026-06-13T11:32:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2042. 2026-06-13T11:32:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2043. 2026-06-13T11:32:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2044. 2026-06-13T11:32:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2045. 2026-06-13T11:33:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2046. 2026-06-13T11:35:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2047. 2026-06-13T11:36:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2048. 2026-06-13T11:36:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2049. 2026-06-13T11:36:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2050. 2026-06-13T11:36:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2051. 2026-06-13T11:36:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2052. 2026-06-13T11:37:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2053. 2026-06-13T11:37:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2054. 2026-06-13T11:37:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2055. 2026-06-13T11:37:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2056. 2026-06-13T11:40:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2057. 2026-06-13T11:40:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2058. 2026-06-13T11:40:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2059. 2026-06-13T11:40:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2060. 2026-06-13T11:40:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2061. 2026-06-13T11:45:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2062. 2026-06-13T11:45:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2063. 2026-06-13T11:45:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2064. 2026-06-13T11:45:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2065. 2026-06-13T11:45:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2066. 2026-06-13T11:46:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2067. 2026-06-13T11:46:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2068. 2026-06-13T11:46:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2069. 2026-06-13T11:46:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2070. 2026-06-13T11:46:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2071. 2026-06-13T11:46:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2072. 2026-06-13T11:46:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2073. 2026-06-13T11:47:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2074. 2026-06-13T11:47:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2075. 2026-06-13T11:47:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2076. 2026-06-13T11:49:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2077. 2026-06-13T11:49:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2078. 2026-06-13T11:49:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2079. 2026-06-13T11:49:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2080. 2026-06-13T11:49:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2081. 2026-06-13T11:52:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2082. 2026-06-13T11:52:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2083. 2026-06-13T11:52:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2084. 2026-06-13T11:52:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2085. 2026-06-13T11:52:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2086. 2026-06-13T11:52:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2087. 2026-06-13T11:52:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2088. 2026-06-13T11:52:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2089. 2026-06-13T11:52:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2090. 2026-06-13T11:52:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2091. 2026-06-13T11:55:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2092. 2026-06-13T11:55:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2093. 2026-06-13T11:55:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2094. 2026-06-13T11:55:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2095. 2026-06-13T11:56:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2096. 2026-06-13T11:56:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2097. 2026-06-13T11:56:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2098. 2026-06-13T11:56:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2099. 2026-06-13T11:56:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2100. 2026-06-13T11:56:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2101. 2026-06-13T12:00:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2102. 2026-06-13T12:00:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2103. 2026-06-13T12:00:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2104. 2026-06-13T12:00:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2105. 2026-06-13T12:00:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2106. 2026-06-13T12:01:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2107. 2026-06-13T12:01:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2108. 2026-06-13T12:01:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2109. 2026-06-13T12:01:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2110. 2026-06-13T12:01:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2111. 2026-06-13T12:05:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2112. 2026-06-13T12:05:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2113. 2026-06-13T12:05:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2114. 2026-06-13T12:05:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2115. 2026-06-13T12:05:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2116. 2026-06-13T12:09:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2117. 2026-06-13T12:09:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2118. 2026-06-13T12:09:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2119. 2026-06-13T12:09:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2120. 2026-06-13T12:10:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2121. 2026-06-13T12:14:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2122. 2026-06-13T12:14:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2123. 2026-06-13T12:14:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2124. 2026-06-13T12:14:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2125. 2026-06-13T12:14:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2126. 2026-06-13T12:18:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2127. 2026-06-13T12:18:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2128. 2026-06-13T12:18:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2129. 2026-06-13T12:18:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2130. 2026-06-13T12:19:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2131. 2026-06-13T12:19:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2132. 2026-06-13T12:19:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2133. 2026-06-13T12:19:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2134. 2026-06-13T12:19:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2135. 2026-06-13T12:20:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2136. 2026-06-13T12:20:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2137. 2026-06-13T12:20:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2138. 2026-06-13T12:20:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2139. 2026-06-13T12:20:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2140. 2026-06-13T12:20:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2141. 2026-06-13T12:25:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2142. 2026-06-13T12:25:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2143. 2026-06-13T12:25:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2144. 2026-06-13T12:25:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2145. 2026-06-13T12:25:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2146. 2026-06-13T12:29:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2147. 2026-06-13T12:29:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2148. 2026-06-13T12:29:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2149. 2026-06-13T12:29:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2150. 2026-06-13T12:29:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2151. 2026-06-13T12:32:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2152. 2026-06-13T12:32:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2153. 2026-06-13T12:32:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2154. 2026-06-13T12:32:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2155. 2026-06-13T12:33:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2156. 2026-06-13T12:34:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2157. 2026-06-13T12:34:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2158. 2026-06-13T12:34:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2159. 2026-06-13T12:34:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2160. 2026-06-13T12:34:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2161. 2026-06-13T12:36:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2162. 2026-06-13T12:36:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2163. 2026-06-13T12:36:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2164. 2026-06-13T12:36:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2165. 2026-06-13T12:36:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2166. 2026-06-13T12:36:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2167. 2026-06-13T12:36:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2168. 2026-06-13T12:36:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2169. 2026-06-13T12:36:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2170. 2026-06-13T12:36:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2171. 2026-06-13T12:37:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2172. 2026-06-13T12:37:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2173. 2026-06-13T12:37:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2174. 2026-06-13T12:37:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2175. 2026-06-13T12:37:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2176. 2026-06-13T12:41:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2177. 2026-06-13T12:41:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2178. 2026-06-13T12:41:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2179. 2026-06-13T12:41:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2180. 2026-06-13T12:41:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2181. 2026-06-13T12:45:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2182. 2026-06-13T12:45:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2183. 2026-06-13T12:45:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2184. 2026-06-13T12:45:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2185. 2026-06-13T12:45:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2186. 2026-06-13T12:50:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2187. 2026-06-13T12:50:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2188. 2026-06-13T12:50:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2189. 2026-06-13T12:50:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2190. 2026-06-13T12:51:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2191. 2026-06-13T12:53:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2192. 2026-06-13T12:53:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2193. 2026-06-13T12:53:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2194. 2026-06-13T12:53:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2195. 2026-06-13T12:53:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2196. 2026-06-13T12:55:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2197. 2026-06-13T12:55:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2198. 2026-06-13T12:55:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2199. 2026-06-13T12:55:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2200. 2026-06-13T12:55:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2201. 2026-06-13T13:01:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2202. 2026-06-13T13:01:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2203. 2026-06-13T13:01:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2204. 2026-06-13T13:01:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2205. 2026-06-13T13:01:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2206. 2026-06-13T13:01:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2207. 2026-06-13T13:01:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2208. 2026-06-13T13:01:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2209. 2026-06-13T13:01:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2210. 2026-06-13T13:02:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2211. 2026-06-13T13:06:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2212. 2026-06-13T13:06:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2213. 2026-06-13T13:06:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2214. 2026-06-13T13:06:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2215. 2026-06-13T13:07:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2216. 2026-06-13T13:10:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2217. 2026-06-13T13:10:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2218. 2026-06-13T13:10:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2219. 2026-06-13T13:10:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2220. 2026-06-13T13:10:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2221. 2026-06-13T13:11:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2222. 2026-06-13T13:11:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2223. 2026-06-13T13:11:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2224. 2026-06-13T13:11:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2225. 2026-06-13T13:12:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2226. 2026-06-13T13:13:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2227. 2026-06-13T13:13:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2228. 2026-06-13T13:13:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2229. 2026-06-13T13:13:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2230. 2026-06-13T13:13:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2231. 2026-06-13T13:14:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2232. 2026-06-13T13:14:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2233. 2026-06-13T13:14:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2234. 2026-06-13T13:14:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2235. 2026-06-13T13:14:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2236. 2026-06-13T13:18:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2237. 2026-06-13T13:18:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2238. 2026-06-13T13:18:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2239. 2026-06-13T13:18:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2240. 2026-06-13T13:18:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2241. 2026-06-13T13:23:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2242. 2026-06-13T13:23:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2243. 2026-06-13T13:23:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2244. 2026-06-13T13:23:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2245. 2026-06-13T13:23:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2246. 2026-06-13T13:28:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2247. 2026-06-13T13:28:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2248. 2026-06-13T13:28:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2249. 2026-06-13T13:28:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2250. 2026-06-13T13:28:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2251. 2026-06-13T13:28:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2252. 2026-06-13T13:28:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2253. 2026-06-13T13:28:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2254. 2026-06-13T13:28:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2255. 2026-06-13T13:29:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2256. 2026-06-13T13:29:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2257. 2026-06-13T13:29:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2258. 2026-06-13T13:29:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2259. 2026-06-13T13:29:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2260. 2026-06-13T13:30:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2261. 2026-06-13T13:34:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2262. 2026-06-13T13:34:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2263. 2026-06-13T13:34:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2264. 2026-06-13T13:34:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2265. 2026-06-13T13:34:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2266. 2026-06-13T13:37:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2267. 2026-06-13T13:37:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2268. 2026-06-13T13:37:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2269. 2026-06-13T13:37:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2270. 2026-06-13T13:37:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2271. 2026-06-13T13:38:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2272. 2026-06-13T13:38:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2273. 2026-06-13T13:38:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2274. 2026-06-13T13:38:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2275. 2026-06-13T13:38:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2276. 2026-06-13T13:43:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2277. 2026-06-13T13:43:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2278. 2026-06-13T13:43:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2279. 2026-06-13T13:43:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2280. 2026-06-13T13:44:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2281. 2026-06-13T13:46:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2282. 2026-06-13T13:46:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2283. 2026-06-13T13:46:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2284. 2026-06-13T13:46:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2285. 2026-06-13T13:46:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2286. 2026-06-13T13:50:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2287. 2026-06-13T13:50:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2288. 2026-06-13T13:50:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2289. 2026-06-13T13:50:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2290. 2026-06-13T13:51:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2291. 2026-06-13T13:53:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2292. 2026-06-13T13:53:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2293. 2026-06-13T13:53:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2294. 2026-06-13T13:53:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2295. 2026-06-13T13:54:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2296. 2026-06-13T13:58:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2297. 2026-06-13T13:58:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2298. 2026-06-13T13:58:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2299. 2026-06-13T13:58:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2300. 2026-06-13T13:58:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2301. 2026-06-13T13:59:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2302. 2026-06-13T13:59:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2303. 2026-06-13T13:59:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2304. 2026-06-13T13:59:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2305. 2026-06-13T13:59:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2306. 2026-06-13T14:01:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2307. 2026-06-13T14:02:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2308. 2026-06-13T14:02:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2309. 2026-06-13T14:02:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2310. 2026-06-13T14:02:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2311. 2026-06-13T14:05:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2312. 2026-06-13T14:05:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2313. 2026-06-13T14:05:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2314. 2026-06-13T14:05:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2315. 2026-06-13T14:05:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2316. 2026-06-13T14:08:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2317. 2026-06-13T14:08:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2318. 2026-06-13T14:08:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2319. 2026-06-13T14:08:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2320. 2026-06-13T14:09:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2321. 2026-06-13T14:13:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2322. 2026-06-13T14:13:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2323. 2026-06-13T14:13:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2324. 2026-06-13T14:13:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2325. 2026-06-13T14:13:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2326. 2026-06-13T14:17:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2327. 2026-06-13T14:17:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2328. 2026-06-13T14:17:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2329. 2026-06-13T14:17:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2330. 2026-06-13T14:17:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2331. 2026-06-13T14:21:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2332. 2026-06-13T14:21:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2333. 2026-06-13T14:21:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2334. 2026-06-13T14:21:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2335. 2026-06-13T14:21:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2336. 2026-06-13T14:25:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2337. 2026-06-13T14:25:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2338. 2026-06-13T14:25:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2339. 2026-06-13T14:25:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2340. 2026-06-13T14:25:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2341. 2026-06-13T14:28:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2342. 2026-06-13T14:28:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2343. 2026-06-13T14:28:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2344. 2026-06-13T14:28:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2345. 2026-06-13T14:29:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2346. 2026-06-13T14:32:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2347. 2026-06-13T14:32:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2348. 2026-06-13T14:32:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2349. 2026-06-13T14:32:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2350. 2026-06-13T14:32:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2351. 2026-06-13T14:33:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2352. 2026-06-13T14:33:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2353. 2026-06-13T14:33:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2354. 2026-06-13T14:33:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2355. 2026-06-13T14:33:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2356. 2026-06-13T14:38:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2357. 2026-06-13T14:38:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2358. 2026-06-13T14:38:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2359. 2026-06-13T14:38:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2360. 2026-06-13T14:38:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2361. 2026-06-13T14:41:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2362. 2026-06-13T14:41:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2363. 2026-06-13T14:41:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2364. 2026-06-13T14:41:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2365. 2026-06-13T14:41:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2366. 2026-06-13T14:45:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2367. 2026-06-13T14:45:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2368. 2026-06-13T14:45:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2369. 2026-06-13T14:45:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2370. 2026-06-13T14:45:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2371. 2026-06-13T14:49:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2372. 2026-06-13T14:49:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2373. 2026-06-13T14:49:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2374. 2026-06-13T14:49:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2375. 2026-06-13T14:49:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2376. 2026-06-13T14:53:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2377. 2026-06-13T14:53:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2378. 2026-06-13T14:53:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2379. 2026-06-13T14:53:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2380. 2026-06-13T14:53:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2381. 2026-06-13T14:56:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2382. 2026-06-13T14:56:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2383. 2026-06-13T14:56:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2384. 2026-06-13T14:56:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2385. 2026-06-13T14:56:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2386. 2026-06-13T14:59:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2387. 2026-06-13T14:59:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2388. 2026-06-13T14:59:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2389. 2026-06-13T14:59:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2390. 2026-06-13T14:59:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2391. 2026-06-13T14:59:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2392. 2026-06-13T14:59:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2393. 2026-06-13T14:59:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2394. 2026-06-13T14:59:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2395. 2026-06-13T14:59:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2396. 2026-06-13T15:04:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2397. 2026-06-13T15:04:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2398. 2026-06-13T15:04:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2399. 2026-06-13T15:04:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2400. 2026-06-13T15:04:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2401. 2026-06-13T15:08:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2402. 2026-06-13T15:08:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2403. 2026-06-13T15:08:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2404. 2026-06-13T15:08:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2405. 2026-06-13T15:08:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2406. 2026-06-13T15:08:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2407. 2026-06-13T15:08:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2408. 2026-06-13T15:08:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2409. 2026-06-13T15:08:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2410. 2026-06-13T15:08:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2411. 2026-06-13T15:13:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2412. 2026-06-13T15:13:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2413. 2026-06-13T15:13:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2414. 2026-06-13T15:13:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2415. 2026-06-13T15:13:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2416. 2026-06-13T15:14:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2417. 2026-06-13T15:14:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2418. 2026-06-13T15:14:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2419. 2026-06-13T15:14:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2420. 2026-06-13T15:14:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2421. 2026-06-13T15:14:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2422. 2026-06-13T15:14:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2423. 2026-06-13T15:14:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2424. 2026-06-13T15:14:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2425. 2026-06-13T15:14:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2426. 2026-06-13T15:15:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2427. 2026-06-13T15:15:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2428. 2026-06-13T15:15:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2429. 2026-06-13T15:15:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2430. 2026-06-13T15:15:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2431. 2026-06-13T15:16:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2432. 2026-06-13T15:16:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2433. 2026-06-13T15:16:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2434. 2026-06-13T15:16:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2435. 2026-06-13T15:17:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2436. 2026-06-13T15:18:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2437. 2026-06-13T15:18:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2438. 2026-06-13T15:18:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2439. 2026-06-13T15:18:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2440. 2026-06-13T15:18:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2441. 2026-06-13T15:24:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2442. 2026-06-13T15:24:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2443. 2026-06-13T15:24:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2444. 2026-06-13T15:24:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2445. 2026-06-13T15:24:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2446. 2026-06-13T15:26:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2447. 2026-06-13T15:26:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2448. 2026-06-13T15:26:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2449. 2026-06-13T15:26:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2450. 2026-06-13T15:26:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2451. 2026-06-13T15:26:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2452. 2026-06-13T15:26:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2453. 2026-06-13T15:26:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2454. 2026-06-13T15:26:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2455. 2026-06-13T15:26:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2456. 2026-06-13T15:29:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2457. 2026-06-13T15:29:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2458. 2026-06-13T15:29:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2459. 2026-06-13T15:29:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2460. 2026-06-13T15:29:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2461. 2026-06-13T15:32:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2462. 2026-06-13T15:32:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2463. 2026-06-13T15:32:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2464. 2026-06-13T15:32:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2465. 2026-06-13T15:32:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2466. 2026-06-13T15:36:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2467. 2026-06-13T15:36:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2468. 2026-06-13T15:36:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2469. 2026-06-13T15:36:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2470. 2026-06-13T15:37:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2471. 2026-06-13T15:41:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2472. 2026-06-13T15:41:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2473. 2026-06-13T15:41:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2474. 2026-06-13T15:41:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2475. 2026-06-13T15:41:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2476. 2026-06-13T15:44:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2477. 2026-06-13T15:44:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2478. 2026-06-13T15:44:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2479. 2026-06-13T15:44:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2480. 2026-06-13T15:44:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2481. 2026-06-13T15:46:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2482. 2026-06-13T15:46:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2483. 2026-06-13T15:46:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2484. 2026-06-13T15:46:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2485. 2026-06-13T15:46:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2486. 2026-06-13T15:46:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2487. 2026-06-13T15:46:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2488. 2026-06-13T15:46:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2489. 2026-06-13T15:46:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2490. 2026-06-13T15:46:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2491. 2026-06-13T15:50:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2492. 2026-06-13T15:50:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2493. 2026-06-13T15:50:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2494. 2026-06-13T15:50:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2495. 2026-06-13T15:51:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2496. 2026-06-13T15:53:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2497. 2026-06-13T15:53:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2498. 2026-06-13T15:53:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2499. 2026-06-13T15:53:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2500. 2026-06-13T15:53:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2501. 2026-06-13T15:55:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2502. 2026-06-13T15:55:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2503. 2026-06-13T15:55:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2504. 2026-06-13T15:55:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2505. 2026-06-13T15:56:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2506. 2026-06-13T15:57:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2507. 2026-06-13T15:57:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2508. 2026-06-13T15:57:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2509. 2026-06-13T15:57:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2510. 2026-06-13T15:57:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2511. 2026-06-13T15:58:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2512. 2026-06-13T15:58:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2513. 2026-06-13T15:58:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2514. 2026-06-13T15:58:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2515. 2026-06-13T15:58:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2516. 2026-06-13T16:02:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2517. 2026-06-13T16:02:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2518. 2026-06-13T16:02:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2519. 2026-06-13T16:02:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2520. 2026-06-13T16:03:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2521. 2026-06-13T16:04:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2522. 2026-06-13T16:04:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2523. 2026-06-13T16:04:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2524. 2026-06-13T16:04:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2525. 2026-06-13T16:04:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2526. 2026-06-13T16:09:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2527. 2026-06-13T16:09:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2528. 2026-06-13T16:09:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2529. 2026-06-13T16:09:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2530. 2026-06-13T16:09:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2531. 2026-06-13T16:14:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2532. 2026-06-13T16:14:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2533. 2026-06-13T16:14:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2534. 2026-06-13T16:14:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2535. 2026-06-13T16:14:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2536. 2026-06-13T16:15:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2537. 2026-06-13T16:15:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2538. 2026-06-13T16:15:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2539. 2026-06-13T16:15:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2540. 2026-06-13T16:15:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2541. 2026-06-13T16:19:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2542. 2026-06-13T16:19:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2543. 2026-06-13T16:19:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2544. 2026-06-13T16:19:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2545. 2026-06-13T16:20:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2546. 2026-06-13T16:21:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2547. 2026-06-13T16:21:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2548. 2026-06-13T16:21:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2549. 2026-06-13T16:21:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2550. 2026-06-13T16:21:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2551. 2026-06-13T16:26:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2552. 2026-06-13T16:26:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2553. 2026-06-13T16:26:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2554. 2026-06-13T16:26:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2555. 2026-06-13T16:26:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2556. 2026-06-13T16:27:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2557. 2026-06-13T16:27:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2558. 2026-06-13T16:27:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2559. 2026-06-13T16:27:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2560. 2026-06-13T16:27:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2561. 2026-06-13T16:31:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2562. 2026-06-13T16:31:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2563. 2026-06-13T16:31:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2564. 2026-06-13T16:31:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2565. 2026-06-13T16:32:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2566. 2026-06-13T16:37:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2567. 2026-06-13T16:37:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2568. 2026-06-13T16:37:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2569. 2026-06-13T16:37:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2570. 2026-06-13T16:37:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2571. 2026-06-13T16:42:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2572. 2026-06-13T16:42:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2573. 2026-06-13T16:42:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2574. 2026-06-13T16:42:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2575. 2026-06-13T16:43:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2576. 2026-06-13T16:47:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2577. 2026-06-13T16:47:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2578. 2026-06-13T16:47:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2579. 2026-06-13T16:47:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2580. 2026-06-13T16:47:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2581. 2026-06-13T16:50:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2582. 2026-06-13T16:50:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2583. 2026-06-13T16:50:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2584. 2026-06-13T16:50:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2585. 2026-06-13T16:50:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2586. 2026-06-13T16:51:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2587. 2026-06-13T16:51:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2588. 2026-06-13T16:51:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2589. 2026-06-13T16:51:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2590. 2026-06-13T16:51:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2591. 2026-06-13T16:55:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2592. 2026-06-13T16:55:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2593. 2026-06-13T16:55:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2594. 2026-06-13T16:55:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2595. 2026-06-13T16:55:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2596. 2026-06-13T16:59:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2597. 2026-06-13T16:59:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2598. 2026-06-13T16:59:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2599. 2026-06-13T16:59:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2600. 2026-06-13T16:59:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2601. 2026-06-13T17:04:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2602. 2026-06-13T17:04:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2603. 2026-06-13T17:04:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2604. 2026-06-13T17:04:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2605. 2026-06-13T17:04:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2606. 2026-06-13T17:07:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2607. 2026-06-13T17:07:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2608. 2026-06-13T17:07:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2609. 2026-06-13T17:07:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2610. 2026-06-13T17:08:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2611. 2026-06-13T17:11:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2612. 2026-06-13T17:11:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2613. 2026-06-13T17:11:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2614. 2026-06-13T17:11:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2615. 2026-06-13T17:11:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2616. 2026-06-13T17:14:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2617. 2026-06-13T17:14:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2618. 2026-06-13T17:14:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2619. 2026-06-13T17:14:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2620. 2026-06-13T17:15:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2621. 2026-06-13T17:18:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2622. 2026-06-13T17:18:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2623. 2026-06-13T17:18:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2624. 2026-06-13T17:18:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2625. 2026-06-13T17:19:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2626. 2026-06-13T17:20:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2627. 2026-06-13T17:20:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2628. 2026-06-13T17:20:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2629. 2026-06-13T17:20:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2630. 2026-06-13T17:21:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2631. 2026-06-13T17:24:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2632. 2026-06-13T17:25:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2633. 2026-06-13T17:25:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2634. 2026-06-13T17:25:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2635. 2026-06-13T17:25:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2636. 2026-06-13T17:30:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2637. 2026-06-13T17:30:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2638. 2026-06-13T17:30:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2639. 2026-06-13T17:30:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2640. 2026-06-13T17:30:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2641. 2026-06-13T17:31:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2642. 2026-06-13T17:31:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2643. 2026-06-13T17:31:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2644. 2026-06-13T17:31:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2645. 2026-06-13T17:31:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2646. 2026-06-13T17:36:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2647. 2026-06-13T17:36:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2648. 2026-06-13T17:36:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2649. 2026-06-13T17:36:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2650. 2026-06-13T17:36:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2651. 2026-06-13T17:39:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2652. 2026-06-13T17:39:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2653. 2026-06-13T17:39:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2654. 2026-06-13T17:39:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2655. 2026-06-13T17:39:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2656. 2026-06-13T17:41:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2657. 2026-06-13T17:41:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2658. 2026-06-13T17:41:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2659. 2026-06-13T17:41:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2660. 2026-06-13T17:42:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2661. 2026-06-13T17:46:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2662. 2026-06-13T17:46:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2663. 2026-06-13T17:46:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2664. 2026-06-13T17:46:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2665. 2026-06-13T17:46:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2666. 2026-06-13T17:48:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2667. 2026-06-13T17:48:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2668. 2026-06-13T17:48:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2669. 2026-06-13T17:48:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2670. 2026-06-13T17:48:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2671. 2026-06-13T17:53:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2672. 2026-06-13T17:53:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2673. 2026-06-13T17:53:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2674. 2026-06-13T17:53:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2675. 2026-06-13T17:53:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2676. 2026-06-13T17:56:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2677. 2026-06-13T17:56:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2678. 2026-06-13T17:56:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2679. 2026-06-13T17:56:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2680. 2026-06-13T17:56:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2681. 2026-06-13T17:58:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2682. 2026-06-13T17:58:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2683. 2026-06-13T17:58:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2684. 2026-06-13T17:58:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2685. 2026-06-13T17:58:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2686. 2026-06-13T18:01:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2687. 2026-06-13T18:01:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2688. 2026-06-13T18:01:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2689. 2026-06-13T18:01:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2690. 2026-06-13T18:01:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2691. 2026-06-13T18:06:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2692. 2026-06-13T18:06:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2693. 2026-06-13T18:06:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2694. 2026-06-13T18:06:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2695. 2026-06-13T18:07:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2696. 2026-06-13T18:10:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2697. 2026-06-13T18:10:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2698. 2026-06-13T18:10:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2699. 2026-06-13T18:10:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2700. 2026-06-13T18:11:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2701. 2026-06-13T18:14:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2702. 2026-06-13T18:14:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2703. 2026-06-13T18:15:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2704. 2026-06-13T18:15:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2705. 2026-06-13T18:15:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2706. 2026-06-13T18:18:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2707. 2026-06-13T18:18:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2708. 2026-06-13T18:18:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2709. 2026-06-13T18:18:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2710. 2026-06-13T18:18:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2711. 2026-06-13T18:23:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2712. 2026-06-13T18:23:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2713. 2026-06-13T18:23:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2714. 2026-06-13T18:23:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2715. 2026-06-13T18:23:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2716. 2026-06-13T18:23:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2717. 2026-06-13T18:23:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2718. 2026-06-13T18:23:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2719. 2026-06-13T18:23:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2720. 2026-06-13T18:23:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2721. 2026-06-13T18:25:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2722. 2026-06-13T18:25:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2723. 2026-06-13T18:25:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2724. 2026-06-13T18:25:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2725. 2026-06-13T18:26:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2726. 2026-06-13T18:26:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2727. 2026-06-13T18:26:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2728. 2026-06-13T18:26:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2729. 2026-06-13T18:26:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2730. 2026-06-13T18:26:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2731. 2026-06-13T18:28:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2732. 2026-06-13T18:28:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2733. 2026-06-13T18:28:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2734. 2026-06-13T18:28:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2735. 2026-06-13T18:29:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2736. 2026-06-13T18:31:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2737. 2026-06-13T18:31:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2738. 2026-06-13T18:31:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2739. 2026-06-13T18:31:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2740. 2026-06-13T18:32:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2741. 2026-06-13T18:33:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2742. 2026-06-13T18:33:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2743. 2026-06-13T18:33:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2744. 2026-06-13T18:33:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2745. 2026-06-13T18:33:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2746. 2026-06-13T18:37:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2747. 2026-06-13T18:37:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2748. 2026-06-13T18:37:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2749. 2026-06-13T18:37:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2750. 2026-06-13T18:38:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2751. 2026-06-13T18:42:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2752. 2026-06-13T18:42:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2753. 2026-06-13T18:42:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2754. 2026-06-13T18:42:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2755. 2026-06-13T18:42:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2756. 2026-06-13T18:43:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2757. 2026-06-13T18:43:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2758. 2026-06-13T18:43:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2759. 2026-06-13T18:43:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2760. 2026-06-13T18:44:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2761. 2026-06-13T18:44:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2762. 2026-06-13T18:44:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2763. 2026-06-13T18:44:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2764. 2026-06-13T18:44:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2765. 2026-06-13T18:44:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2766. 2026-06-13T18:45:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2767. 2026-06-13T18:45:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2768. 2026-06-13T18:45:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2769. 2026-06-13T18:45:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2770. 2026-06-13T18:46:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2771. 2026-06-13T18:47:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2772. 2026-06-13T18:47:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2773. 2026-06-13T18:47:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2774. 2026-06-13T18:47:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2775. 2026-06-13T18:47:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2776. 2026-06-13T18:52:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2777. 2026-06-13T18:52:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2778. 2026-06-13T18:52:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2779. 2026-06-13T18:52:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2780. 2026-06-13T18:53:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2781. 2026-06-13T18:58:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2782. 2026-06-13T18:58:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2783. 2026-06-13T18:58:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2784. 2026-06-13T18:58:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2785. 2026-06-13T18:58:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2786. 2026-06-13T19:00:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2787. 2026-06-13T19:00:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2788. 2026-06-13T19:00:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2789. 2026-06-13T19:00:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2790. 2026-06-13T19:00:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2791. 2026-06-13T19:05:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2792. 2026-06-13T19:05:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2793. 2026-06-13T19:05:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2794. 2026-06-13T19:05:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2795. 2026-06-13T19:06:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2796. 2026-06-13T19:08:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2797. 2026-06-13T19:08:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2798. 2026-06-13T19:08:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2799. 2026-06-13T19:08:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2800. 2026-06-13T19:09:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2801. 2026-06-13T19:10:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2802. 2026-06-13T19:10:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2803. 2026-06-13T19:10:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2804. 2026-06-13T19:10:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2805. 2026-06-13T19:11:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2806. 2026-06-13T19:16:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2807. 2026-06-13T19:16:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2808. 2026-06-13T19:16:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2809. 2026-06-13T19:16:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2810. 2026-06-13T19:16:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2811. 2026-06-13T19:19:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2812. 2026-06-13T19:19:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2813. 2026-06-13T19:19:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2814. 2026-06-13T19:19:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2815. 2026-06-13T19:19:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2816. 2026-06-13T19:22:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2817. 2026-06-13T19:22:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2818. 2026-06-13T19:22:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2819. 2026-06-13T19:22:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2820. 2026-06-13T19:22:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2821. 2026-06-13T19:23:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2822. 2026-06-13T19:23:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2823. 2026-06-13T19:23:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2824. 2026-06-13T19:23:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2825. 2026-06-13T19:24:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2826. 2026-06-13T19:25:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2827. 2026-06-13T19:25:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2828. 2026-06-13T19:25:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2829. 2026-06-13T19:25:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2830. 2026-06-13T19:25:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2831. 2026-06-13T19:27:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2832. 2026-06-13T19:27:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2833. 2026-06-13T19:27:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2834. 2026-06-13T19:27:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2835. 2026-06-13T19:27:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2836. 2026-06-13T19:30:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2837. 2026-06-13T19:30:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2838. 2026-06-13T19:30:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2839. 2026-06-13T19:30:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2840. 2026-06-13T19:30:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2841. 2026-06-13T19:33:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2842. 2026-06-13T19:33:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2843. 2026-06-13T19:33:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2844. 2026-06-13T19:33:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2845. 2026-06-13T19:34:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2846. 2026-06-13T19:38:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2847. 2026-06-13T19:38:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2848. 2026-06-13T19:38:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2849. 2026-06-13T19:38:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2850. 2026-06-13T19:39:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2851. 2026-06-13T19:42:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2852. 2026-06-13T19:42:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2853. 2026-06-13T19:42:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2854. 2026-06-13T19:42:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2855. 2026-06-13T19:42:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2856. 2026-06-13T19:44:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2857. 2026-06-13T19:44:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2858. 2026-06-13T19:44:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2859. 2026-06-13T19:44:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2860. 2026-06-13T19:44:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2861. 2026-06-13T19:47:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2862. 2026-06-13T19:47:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2863. 2026-06-13T19:47:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2864. 2026-06-13T19:47:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2865. 2026-06-13T19:48:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2866. 2026-06-13T19:53:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2867. 2026-06-13T19:53:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2868. 2026-06-13T19:53:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2869. 2026-06-13T19:53:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2870. 2026-06-13T19:53:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2871. 2026-06-13T19:54:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2872. 2026-06-13T19:54:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2873. 2026-06-13T19:54:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2874. 2026-06-13T19:54:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2875. 2026-06-13T19:54:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2876. 2026-06-13T19:56:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2877. 2026-06-13T19:56:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2878. 2026-06-13T19:56:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2879. 2026-06-13T19:56:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2880. 2026-06-13T19:56:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2881. 2026-06-13T19:59:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2882. 2026-06-13T19:59:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2883. 2026-06-13T19:59:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2884. 2026-06-13T19:59:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2885. 2026-06-13T19:59:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2886. 2026-06-13T20:01:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2887. 2026-06-13T20:01:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2888. 2026-06-13T20:01:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2889. 2026-06-13T20:01:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2890. 2026-06-13T20:01:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2891. 2026-06-13T20:03:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2892. 2026-06-13T20:03:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2893. 2026-06-13T20:03:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2894. 2026-06-13T20:03:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2895. 2026-06-13T20:03:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2896. 2026-06-13T20:06:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2897. 2026-06-13T20:06:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2898. 2026-06-13T20:06:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2899. 2026-06-13T20:06:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2900. 2026-06-13T20:06:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2901. 2026-06-13T20:11:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2902. 2026-06-13T20:11:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2903. 2026-06-13T20:11:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2904. 2026-06-13T20:11:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2905. 2026-06-13T20:12:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2906. 2026-06-13T20:15:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2907. 2026-06-13T20:15:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2908. 2026-06-13T20:15:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2909. 2026-06-13T20:15:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2910. 2026-06-13T20:15:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2911. 2026-06-13T20:18:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2912. 2026-06-13T20:18:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2913. 2026-06-13T20:18:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2914. 2026-06-13T20:18:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2915. 2026-06-13T20:18:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2916. 2026-06-13T20:22:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2917. 2026-06-13T20:22:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2918. 2026-06-13T20:22:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2919. 2026-06-13T20:22:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2920. 2026-06-13T20:22:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2921. 2026-06-13T20:26:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2922. 2026-06-13T20:26:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2923. 2026-06-13T20:26:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2924. 2026-06-13T20:26:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2925. 2026-06-13T20:26:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2926. 2026-06-13T20:28:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2927. 2026-06-13T20:28:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2928. 2026-06-13T20:28:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2929. 2026-06-13T20:28:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2930. 2026-06-13T20:29:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2931. 2026-06-13T20:33:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2932. 2026-06-13T20:33:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2933. 2026-06-13T20:33:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2934. 2026-06-13T20:33:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2935. 2026-06-13T20:34:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2936. 2026-06-13T20:39:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2937. 2026-06-13T20:39:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2938. 2026-06-13T20:39:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2939. 2026-06-13T20:39:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2940. 2026-06-13T20:39:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2941. 2026-06-13T20:42:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2942. 2026-06-13T20:42:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2943. 2026-06-13T20:42:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2944. 2026-06-13T20:42:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2945. 2026-06-13T20:42:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2946. 2026-06-13T20:44:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2947. 2026-06-13T20:44:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2948. 2026-06-13T20:44:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2949. 2026-06-13T20:44:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2950. 2026-06-13T20:44:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2951. 2026-06-13T20:46:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2952. 2026-06-13T20:46:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2953. 2026-06-13T20:46:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2954. 2026-06-13T20:46:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2955. 2026-06-13T20:46:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2956. 2026-06-13T20:48:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2957. 2026-06-13T20:48:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2958. 2026-06-13T20:48:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2959. 2026-06-13T20:48:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2960. 2026-06-13T20:48:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2961. 2026-06-13T20:53:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2962. 2026-06-13T20:53:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2963. 2026-06-13T20:53:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2964. 2026-06-13T20:53:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2965. 2026-06-13T20:53:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2966. 2026-06-13T20:59:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2967. 2026-06-13T20:59:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2968. 2026-06-13T20:59:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2969. 2026-06-13T20:59:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2970. 2026-06-13T20:59:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2971. 2026-06-13T21:02:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2972. 2026-06-13T21:02:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2973. 2026-06-13T21:02:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2974. 2026-06-13T21:02:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2975. 2026-06-13T21:02:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2976. 2026-06-13T21:04:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2977. 2026-06-13T21:04:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2978. 2026-06-13T21:04:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2979. 2026-06-13T21:04:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2980. 2026-06-13T21:04:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2981. 2026-06-13T21:10:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2982. 2026-06-13T21:10:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2983. 2026-06-13T21:10:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2984. 2026-06-13T21:10:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2985. 2026-06-13T21:10:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2986. 2026-06-13T21:14:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2987. 2026-06-13T21:14:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2988. 2026-06-13T21:14:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2989. 2026-06-13T21:14:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2990. 2026-06-13T21:14:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2991. 2026-06-13T21:16:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2992. 2026-06-13T21:16:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2993. 2026-06-13T21:16:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2994. 2026-06-13T21:16:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  2995. 2026-06-13T21:16:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  2996. 2026-06-13T21:19:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  2997. 2026-06-13T21:19:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  2998. 2026-06-13T21:19:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  2999. 2026-06-13T21:19:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3000. 2026-06-13T21:20:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3001. 2026-06-13T21:20:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3002. 2026-06-13T21:20:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3003. 2026-06-13T21:20:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3004. 2026-06-13T21:20:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3005. 2026-06-13T21:20:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3006. 2026-06-13T21:23:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3007. 2026-06-13T21:23:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3008. 2026-06-13T21:23:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3009. 2026-06-13T21:23:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3010. 2026-06-13T21:23:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3011. 2026-06-13T21:26:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3012. 2026-06-13T21:26:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3013. 2026-06-13T21:26:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3014. 2026-06-13T21:26:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3015. 2026-06-13T21:26:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3016. 2026-06-13T21:27:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3017. 2026-06-13T21:27:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3018. 2026-06-13T21:27:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3019. 2026-06-13T21:27:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3020. 2026-06-13T21:27:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3021. 2026-06-13T21:30:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3022. 2026-06-13T21:30:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3023. 2026-06-13T21:30:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3024. 2026-06-13T21:30:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3025. 2026-06-13T21:30:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3026. 2026-06-13T21:35:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3027. 2026-06-13T21:35:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3028. 2026-06-13T21:35:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3029. 2026-06-13T21:35:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3030. 2026-06-13T21:35:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3031. 2026-06-13T21:36:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3032. 2026-06-13T21:36:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3033. 2026-06-13T21:36:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3034. 2026-06-13T21:36:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3035. 2026-06-13T21:36:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3036. 2026-06-13T21:39:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3037. 2026-06-13T21:39:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3038. 2026-06-13T21:39:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3039. 2026-06-13T21:39:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3040. 2026-06-13T21:39:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3041. 2026-06-13T21:41:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3042. 2026-06-13T21:41:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3043. 2026-06-13T21:41:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3044. 2026-06-13T21:41:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3045. 2026-06-13T21:41:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3046. 2026-06-13T21:43:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3047. 2026-06-13T21:43:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3048. 2026-06-13T21:43:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3049. 2026-06-13T21:43:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3050. 2026-06-13T21:43:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3051. 2026-06-13T21:46:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3052. 2026-06-13T21:46:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3053. 2026-06-13T21:46:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3054. 2026-06-13T21:46:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3055. 2026-06-13T21:46:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3056. 2026-06-13T21:51:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3057. 2026-06-13T21:51:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3058. 2026-06-13T21:51:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3059. 2026-06-13T21:51:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3060. 2026-06-13T21:51:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3061. 2026-06-13T21:51:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3062. 2026-06-13T21:51:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3063. 2026-06-13T21:51:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3064. 2026-06-13T21:51:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3065. 2026-06-13T21:51:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3066. 2026-06-13T21:56:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3067. 2026-06-13T21:56:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3068. 2026-06-13T21:56:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3069. 2026-06-13T21:56:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3070. 2026-06-13T21:56:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3071. 2026-06-13T21:59:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3072. 2026-06-13T21:59:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3073. 2026-06-13T21:59:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3074. 2026-06-13T21:59:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3075. 2026-06-13T21:59:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3076. 2026-06-13T22:03:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3077. 2026-06-13T22:03:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3078. 2026-06-13T22:03:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3079. 2026-06-13T22:03:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3080. 2026-06-13T22:03:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3081. 2026-06-13T22:04:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3082. 2026-06-13T22:04:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3083. 2026-06-13T22:04:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3084. 2026-06-13T22:04:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3085. 2026-06-13T22:05:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3086. 2026-06-13T22:09:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3087. 2026-06-13T22:09:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3088. 2026-06-13T22:09:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3089. 2026-06-13T22:09:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3090. 2026-06-13T22:09:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3091. 2026-06-13T22:14:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3092. 2026-06-13T22:14:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3093. 2026-06-13T22:14:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3094. 2026-06-13T22:14:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3095. 2026-06-13T22:14:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3096. 2026-06-13T22:16:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3097. 2026-06-13T22:16:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3098. 2026-06-13T22:16:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3099. 2026-06-13T22:16:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3100. 2026-06-13T22:16:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3101. 2026-06-13T22:21:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3102. 2026-06-13T22:21:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3103. 2026-06-13T22:21:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3104. 2026-06-13T22:21:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3105. 2026-06-13T22:21:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3106. 2026-06-13T22:24:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3107. 2026-06-13T22:24:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3108. 2026-06-13T22:24:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3109. 2026-06-13T22:24:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3110. 2026-06-13T22:24:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3111. 2026-06-13T22:27:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3112. 2026-06-13T22:27:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3113. 2026-06-13T22:27:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3114. 2026-06-13T22:27:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3115. 2026-06-13T22:28:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3116. 2026-06-13T22:28:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3117. 2026-06-13T22:28:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3118. 2026-06-13T22:28:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3119. 2026-06-13T22:28:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3120. 2026-06-13T22:29:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3121. 2026-06-13T22:32:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3122. 2026-06-13T22:32:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3123. 2026-06-13T22:32:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3124. 2026-06-13T22:32:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3125. 2026-06-13T22:32:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3126. 2026-06-13T22:35:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3127. 2026-06-13T22:35:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3128. 2026-06-13T22:35:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3129. 2026-06-13T22:35:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3130. 2026-06-13T22:35:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3131. 2026-06-13T22:38:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3132. 2026-06-13T22:38:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3133. 2026-06-13T22:38:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3134. 2026-06-13T22:38:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3135. 2026-06-13T22:39:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3136. 2026-06-13T22:42:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3137. 2026-06-13T22:43:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3138. 2026-06-13T22:43:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3139. 2026-06-13T22:43:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3140. 2026-06-13T22:43:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3141. 2026-06-13T22:44:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3142. 2026-06-13T22:44:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3143. 2026-06-13T22:44:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3144. 2026-06-13T22:44:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3145. 2026-06-13T22:44:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3146. 2026-06-13T22:48:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3147. 2026-06-13T22:48:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3148. 2026-06-13T22:48:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3149. 2026-06-13T22:48:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3150. 2026-06-13T22:48:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3151. 2026-06-13T22:50:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3152. 2026-06-13T22:50:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3153. 2026-06-13T22:50:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3154. 2026-06-13T22:50:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3155. 2026-06-13T22:50:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3156. 2026-06-13T22:50:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3157. 2026-06-13T22:50:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3158. 2026-06-13T22:50:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3159. 2026-06-13T22:50:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3160. 2026-06-13T22:51:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3161. 2026-06-13T22:55:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3162. 2026-06-13T22:55:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3163. 2026-06-13T22:55:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3164. 2026-06-13T22:55:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3165. 2026-06-13T22:56:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3166. 2026-06-13T22:59:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3167. 2026-06-13T22:59:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3168. 2026-06-13T22:59:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3169. 2026-06-13T22:59:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3170. 2026-06-13T23:00:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3171. 2026-06-13T23:05:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3172. 2026-06-13T23:05:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3173. 2026-06-13T23:05:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3174. 2026-06-13T23:05:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3175. 2026-06-13T23:05:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3176. 2026-06-13T23:09:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3177. 2026-06-13T23:09:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3178. 2026-06-13T23:09:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3179. 2026-06-13T23:09:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3180. 2026-06-13T23:09:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3181. 2026-06-13T23:13:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3182. 2026-06-13T23:13:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3183. 2026-06-13T23:13:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3184. 2026-06-13T23:13:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3185. 2026-06-13T23:13:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3186. 2026-06-13T23:14:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3187. 2026-06-13T23:14:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3188. 2026-06-13T23:14:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3189. 2026-06-13T23:14:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3190. 2026-06-13T23:14:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3191. 2026-06-13T23:19:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3192. 2026-06-13T23:19:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3193. 2026-06-13T23:19:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3194. 2026-06-13T23:19:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3195. 2026-06-13T23:19:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3196. 2026-06-13T23:23:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3197. 2026-06-13T23:23:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3198. 2026-06-13T23:23:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3199. 2026-06-13T23:23:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3200. 2026-06-13T23:24:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3201. 2026-06-13T23:29:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3202. 2026-06-13T23:29:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3203. 2026-06-13T23:29:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3204. 2026-06-13T23:29:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3205. 2026-06-13T23:29:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3206. 2026-06-13T23:30:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3207. 2026-06-13T23:30:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3208. 2026-06-13T23:30:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3209. 2026-06-13T23:30:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3210. 2026-06-13T23:31:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3211. 2026-06-13T23:35:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3212. 2026-06-13T23:35:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3213. 2026-06-13T23:35:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3214. 2026-06-13T23:35:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3215. 2026-06-13T23:36:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3216. 2026-06-13T23:39:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3217. 2026-06-13T23:39:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3218. 2026-06-13T23:39:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3219. 2026-06-13T23:39:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3220. 2026-06-13T23:40:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3221. 2026-06-13T23:41:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3222. 2026-06-13T23:41:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3223. 2026-06-13T23:41:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3224. 2026-06-13T23:41:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3225. 2026-06-13T23:41:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3226. 2026-06-13T23:46:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3227. 2026-06-13T23:46:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3228. 2026-06-13T23:46:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3229. 2026-06-13T23:46:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3230. 2026-06-13T23:46:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3231. 2026-06-13T23:48:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3232. 2026-06-13T23:48:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3233. 2026-06-13T23:48:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3234. 2026-06-13T23:48:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3235. 2026-06-13T23:48:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3236. 2026-06-13T23:49:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3237. 2026-06-13T23:49:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3238. 2026-06-13T23:49:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3239. 2026-06-13T23:49:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3240. 2026-06-13T23:49:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3241. 2026-06-13T23:54:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3242. 2026-06-13T23:54:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3243. 2026-06-13T23:54:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3244. 2026-06-13T23:54:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3245. 2026-06-13T23:54:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3246. 2026-06-13T23:54:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3247. 2026-06-13T23:54:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3248. 2026-06-13T23:54:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3249. 2026-06-13T23:54:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3250. 2026-06-13T23:55:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3251. 2026-06-13T23:59:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3252. 2026-06-13T23:59:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3253. 2026-06-13T23:59:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3254. 2026-06-13T23:59:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3255. 2026-06-13T23:59:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3256. 2026-06-14T00:04:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3257. 2026-06-14T00:04:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3258. 2026-06-14T00:04:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3259. 2026-06-14T00:04:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3260. 2026-06-14T00:04:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3261. 2026-06-14T00:05:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3262. 2026-06-14T00:05:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3263. 2026-06-14T00:05:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3264. 2026-06-14T00:05:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3265. 2026-06-14T00:06:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3266. 2026-06-14T00:06:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3267. 2026-06-14T00:06:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3268. 2026-06-14T00:06:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3269. 2026-06-14T00:06:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3270. 2026-06-14T00:06:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3271. 2026-06-14T00:11:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3272. 2026-06-14T00:11:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3273. 2026-06-14T00:11:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3274. 2026-06-14T00:11:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3275. 2026-06-14T00:11:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3276. 2026-06-14T00:14:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3277. 2026-06-14T00:14:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3278. 2026-06-14T00:14:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3279. 2026-06-14T00:14:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3280. 2026-06-14T00:14:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3281. 2026-06-14T00:18:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3282. 2026-06-14T00:18:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3283. 2026-06-14T00:18:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3284. 2026-06-14T00:18:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3285. 2026-06-14T00:19:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3286. 2026-06-14T00:21:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3287. 2026-06-14T00:21:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3288. 2026-06-14T00:21:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3289. 2026-06-14T00:21:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3290. 2026-06-14T00:21:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3291. 2026-06-14T00:24:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3292. 2026-06-14T00:24:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3293. 2026-06-14T00:24:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3294. 2026-06-14T00:24:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3295. 2026-06-14T00:24:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3296. 2026-06-14T00:28:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3297. 2026-06-14T00:28:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3298. 2026-06-14T00:28:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3299. 2026-06-14T00:28:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3300. 2026-06-14T00:29:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3301. 2026-06-14T00:32:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3302. 2026-06-14T00:32:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3303. 2026-06-14T00:32:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3304. 2026-06-14T00:32:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3305. 2026-06-14T00:32:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3306. 2026-06-14T00:36:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3307. 2026-06-14T00:36:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3308. 2026-06-14T00:36:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3309. 2026-06-14T00:36:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3310. 2026-06-14T00:36:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3311. 2026-06-14T00:38:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3312. 2026-06-14T00:38:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3313. 2026-06-14T00:38:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3314. 2026-06-14T00:38:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3315. 2026-06-14T00:39:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3316. 2026-06-14T00:42:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3317. 2026-06-14T00:42:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3318. 2026-06-14T00:42:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3319. 2026-06-14T00:42:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3320. 2026-06-14T00:42:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3321. 2026-06-14T00:44:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3322. 2026-06-14T00:44:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3323. 2026-06-14T00:44:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3324. 2026-06-14T00:44:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3325. 2026-06-14T00:45:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3326. 2026-06-14T00:46:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3327. 2026-06-14T00:46:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3328. 2026-06-14T00:46:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3329. 2026-06-14T00:46:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3330. 2026-06-14T00:46:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3331. 2026-06-14T00:46:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3332. 2026-06-14T00:47:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3333. 2026-06-14T00:47:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3334. 2026-06-14T00:47:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3335. 2026-06-14T00:47:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3336. 2026-06-14T00:51:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3337. 2026-06-14T00:51:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3338. 2026-06-14T00:51:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3339. 2026-06-14T00:51:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3340. 2026-06-14T00:51:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3341. 2026-06-14T00:55:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3342. 2026-06-14T00:55:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3343. 2026-06-14T00:55:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3344. 2026-06-14T00:55:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3345. 2026-06-14T00:55:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3346. 2026-06-14T00:59:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3347. 2026-06-14T00:59:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3348. 2026-06-14T00:59:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3349. 2026-06-14T00:59:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3350. 2026-06-14T01:00:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3351. 2026-06-14T01:05:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3352. 2026-06-14T01:05:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3353. 2026-06-14T01:05:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3354. 2026-06-14T01:05:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3355. 2026-06-14T01:05:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3356. 2026-06-14T01:06:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3357. 2026-06-14T01:06:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3358. 2026-06-14T01:06:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3359. 2026-06-14T01:06:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3360. 2026-06-14T01:06:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3361. 2026-06-14T01:08:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3362. 2026-06-14T01:08:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3363. 2026-06-14T01:08:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3364. 2026-06-14T01:08:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3365. 2026-06-14T01:08:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3366. 2026-06-14T01:12:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3367. 2026-06-14T01:12:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3368. 2026-06-14T01:12:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3369. 2026-06-14T01:12:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3370. 2026-06-14T01:12:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3371. 2026-06-14T01:16:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3372. 2026-06-14T01:16:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3373. 2026-06-14T01:16:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3374. 2026-06-14T01:16:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3375. 2026-06-14T01:16:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3376. 2026-06-14T01:20:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3377. 2026-06-14T01:20:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3378. 2026-06-14T01:20:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3379. 2026-06-14T01:20:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3380. 2026-06-14T01:21:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3381. 2026-06-14T01:26:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3382. 2026-06-14T01:26:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3383. 2026-06-14T01:26:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3384. 2026-06-14T01:26:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3385. 2026-06-14T01:26:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3386. 2026-06-14T01:30:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3387. 2026-06-14T01:30:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3388. 2026-06-14T01:31:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3389. 2026-06-14T01:31:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3390. 2026-06-14T01:31:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3391. 2026-06-14T01:36:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3392. 2026-06-14T01:36:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3393. 2026-06-14T01:36:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3394. 2026-06-14T01:36:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3395. 2026-06-14T01:36:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3396. 2026-06-14T01:37:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3397. 2026-06-14T01:38:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3398. 2026-06-14T01:38:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3399. 2026-06-14T01:38:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3400. 2026-06-14T01:38:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3401. 2026-06-14T01:41:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3402. 2026-06-14T01:41:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3403. 2026-06-14T01:41:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3404. 2026-06-14T01:41:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3405. 2026-06-14T01:41:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3406. 2026-06-14T01:46:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3407. 2026-06-14T01:46:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3408. 2026-06-14T01:46:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3409. 2026-06-14T01:46:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3410. 2026-06-14T01:46:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3411. 2026-06-14T01:50:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3412. 2026-06-14T01:50:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3413. 2026-06-14T01:50:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3414. 2026-06-14T01:50:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3415. 2026-06-14T01:50:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3416. 2026-06-14T01:50:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3417. 2026-06-14T01:51:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3418. 2026-06-14T01:51:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3419. 2026-06-14T01:51:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3420. 2026-06-14T01:51:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3421. 2026-06-14T01:53:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3422. 2026-06-14T01:53:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3423. 2026-06-14T01:53:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3424. 2026-06-14T01:53:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3425. 2026-06-14T01:53:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3426. 2026-06-14T01:58:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3427. 2026-06-14T01:58:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3428. 2026-06-14T01:58:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3429. 2026-06-14T01:58:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3430. 2026-06-14T01:58:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3431. 2026-06-14T01:59:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3432. 2026-06-14T01:59:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3433. 2026-06-14T01:59:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3434. 2026-06-14T01:59:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3435. 2026-06-14T01:59:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3436. 2026-06-14T02:00:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3437. 2026-06-14T02:00:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3438. 2026-06-14T02:00:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3439. 2026-06-14T02:00:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3440. 2026-06-14T02:00:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3441. 2026-06-14T02:01:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3442. 2026-06-14T02:01:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3443. 2026-06-14T02:01:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3444. 2026-06-14T02:01:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3445. 2026-06-14T02:02:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3446. 2026-06-14T02:06:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3447. 2026-06-14T02:06:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3448. 2026-06-14T02:06:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3449. 2026-06-14T02:06:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3450. 2026-06-14T02:07:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3451. 2026-06-14T02:07:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3452. 2026-06-14T02:07:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3453. 2026-06-14T02:07:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3454. 2026-06-14T02:07:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3455. 2026-06-14T02:08:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3456. 2026-06-14T02:08:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3457. 2026-06-14T02:08:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3458. 2026-06-14T02:08:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3459. 2026-06-14T02:08:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3460. 2026-06-14T02:08:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3461. 2026-06-14T02:13:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3462. 2026-06-14T02:13:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3463. 2026-06-14T02:13:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3464. 2026-06-14T02:13:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3465. 2026-06-14T02:13:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3466. 2026-06-14T02:18:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3467. 2026-06-14T02:18:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3468. 2026-06-14T02:18:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3469. 2026-06-14T02:18:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3470. 2026-06-14T02:18:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3471. 2026-06-14T02:23:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3472. 2026-06-14T02:23:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3473. 2026-06-14T02:23:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3474. 2026-06-14T02:23:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3475. 2026-06-14T02:24:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3476. 2026-06-14T02:25:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3477. 2026-06-14T02:25:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3478. 2026-06-14T02:25:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3479. 2026-06-14T02:25:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3480. 2026-06-14T02:25:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3481. 2026-06-14T02:26:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3482. 2026-06-14T02:26:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3483. 2026-06-14T02:26:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3484. 2026-06-14T02:26:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3485. 2026-06-14T02:26:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3486. 2026-06-14T02:29:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3487. 2026-06-14T02:29:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3488. 2026-06-14T02:29:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3489. 2026-06-14T02:29:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3490. 2026-06-14T02:29:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3491. 2026-06-14T02:34:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3492. 2026-06-14T02:34:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3493. 2026-06-14T02:34:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3494. 2026-06-14T02:34:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3495. 2026-06-14T02:34:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3496. 2026-06-14T02:37:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3497. 2026-06-14T02:37:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3498. 2026-06-14T02:37:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3499. 2026-06-14T02:37:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3500. 2026-06-14T02:38:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3501. 2026-06-14T02:41:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3502. 2026-06-14T02:41:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3503. 2026-06-14T02:41:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3504. 2026-06-14T02:41:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3505. 2026-06-14T02:41:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3506. 2026-06-14T02:43:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3507. 2026-06-14T02:43:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3508. 2026-06-14T02:43:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3509. 2026-06-14T02:43:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3510. 2026-06-14T02:43:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3511. 2026-06-14T02:44:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3512. 2026-06-14T02:44:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3513. 2026-06-14T02:44:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3514. 2026-06-14T02:44:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3515. 2026-06-14T02:44:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3516. 2026-06-14T02:45:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3517. 2026-06-14T02:45:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3518. 2026-06-14T02:45:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3519. 2026-06-14T02:45:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3520. 2026-06-14T02:45:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3521. 2026-06-14T02:50:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3522. 2026-06-14T02:50:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3523. 2026-06-14T02:50:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3524. 2026-06-14T02:50:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3525. 2026-06-14T02:50:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3526. 2026-06-14T02:51:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3527. 2026-06-14T02:51:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3528. 2026-06-14T02:51:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3529. 2026-06-14T02:51:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3530. 2026-06-14T02:52:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3531. 2026-06-14T02:53:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3532. 2026-06-14T02:53:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3533. 2026-06-14T02:53:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3534. 2026-06-14T02:53:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3535. 2026-06-14T02:54:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3536. 2026-06-14T02:54:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3537. 2026-06-14T02:54:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3538. 2026-06-14T02:54:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3539. 2026-06-14T02:54:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3540. 2026-06-14T02:55:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3541. 2026-06-14T02:57:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3542. 2026-06-14T02:57:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3543. 2026-06-14T02:57:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3544. 2026-06-14T02:57:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3545. 2026-06-14T02:57:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3546. 2026-06-14T03:00:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3547. 2026-06-14T03:00:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3548. 2026-06-14T03:00:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3549. 2026-06-14T03:00:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3550. 2026-06-14T03:00:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3551. 2026-06-14T03:01:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3552. 2026-06-14T03:01:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3553. 2026-06-14T03:01:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3554. 2026-06-14T03:01:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3555. 2026-06-14T03:02:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3556. 2026-06-14T03:04:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3557. 2026-06-14T03:04:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3558. 2026-06-14T03:04:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3559. 2026-06-14T03:04:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3560. 2026-06-14T03:05:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3561. 2026-06-14T03:06:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3562. 2026-06-14T03:06:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3563. 2026-06-14T03:06:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3564. 2026-06-14T03:06:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3565. 2026-06-14T03:06:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3566. 2026-06-14T03:11:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3567. 2026-06-14T03:11:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3568. 2026-06-14T03:11:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3569. 2026-06-14T03:11:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3570. 2026-06-14T03:12:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3571. 2026-06-14T03:14:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3572. 2026-06-14T03:14:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3573. 2026-06-14T03:14:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3574. 2026-06-14T03:14:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3575. 2026-06-14T03:14:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3576. 2026-06-14T03:19:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3577. 2026-06-14T03:19:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3578. 2026-06-14T03:19:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3579. 2026-06-14T03:19:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3580. 2026-06-14T03:19:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3581. 2026-06-14T03:21:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3582. 2026-06-14T03:21:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3583. 2026-06-14T03:21:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3584. 2026-06-14T03:21:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3585. 2026-06-14T03:22:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3586. 2026-06-14T03:24:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3587. 2026-06-14T03:24:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3588. 2026-06-14T03:24:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3589. 2026-06-14T03:24:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3590. 2026-06-14T03:24:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3591. 2026-06-14T03:28:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3592. 2026-06-14T03:28:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3593. 2026-06-14T03:28:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3594. 2026-06-14T03:28:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3595. 2026-06-14T03:29:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3596. 2026-06-14T03:31:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3597. 2026-06-14T03:31:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3598. 2026-06-14T03:31:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3599. 2026-06-14T03:31:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3600. 2026-06-14T03:31:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3601. 2026-06-14T03:34:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3602. 2026-06-14T03:34:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3603. 2026-06-14T03:34:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3604. 2026-06-14T03:34:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3605. 2026-06-14T03:34:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3606. 2026-06-14T03:38:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3607. 2026-06-14T03:38:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3608. 2026-06-14T03:38:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3609. 2026-06-14T03:38:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3610. 2026-06-14T03:39:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3611. 2026-06-14T03:41:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3612. 2026-06-14T03:41:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3613. 2026-06-14T03:41:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3614. 2026-06-14T03:41:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3615. 2026-06-14T03:42:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3616. 2026-06-14T03:42:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3617. 2026-06-14T03:42:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3618. 2026-06-14T03:42:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3619. 2026-06-14T03:42:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3620. 2026-06-14T03:43:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3621. 2026-06-14T03:43:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3622. 2026-06-14T03:43:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3623. 2026-06-14T03:43:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3624. 2026-06-14T03:43:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3625. 2026-06-14T03:43:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3626. 2026-06-14T03:48:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3627. 2026-06-14T03:48:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3628. 2026-06-14T03:49:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3629. 2026-06-14T03:49:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3630. 2026-06-14T03:49:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3631. 2026-06-14T03:52:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3632. 2026-06-14T03:52:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3633. 2026-06-14T03:52:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3634. 2026-06-14T03:52:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3635. 2026-06-14T03:53:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3636. 2026-06-14T04:17:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3637. 2026-06-14T04:17:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3638. 2026-06-14T04:17:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3639. 2026-06-14T04:17:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3640. 2026-06-14T04:17:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3641. 2026-06-14T04:20:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3642. 2026-06-14T04:20:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3643. 2026-06-14T04:20:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3644. 2026-06-14T04:20:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3645. 2026-06-14T04:21:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3646. 2026-06-14T04:26:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3647. 2026-06-14T04:26:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3648. 2026-06-14T04:26:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3649. 2026-06-14T04:26:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3650. 2026-06-14T04:26:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3651. 2026-06-14T04:29:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3652. 2026-06-14T04:29:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3653. 2026-06-14T04:29:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3654. 2026-06-14T04:29:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3655. 2026-06-14T04:29:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3656. 2026-06-14T04:32:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3657. 2026-06-14T04:32:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3658. 2026-06-14T04:32:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3659. 2026-06-14T04:32:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3660. 2026-06-14T04:32:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3661. 2026-06-14T04:35:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3662. 2026-06-14T04:35:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3663. 2026-06-14T04:35:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3664. 2026-06-14T04:35:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3665. 2026-06-14T04:35:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3666. 2026-06-14T04:39:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3667. 2026-06-14T04:39:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3668. 2026-06-14T04:39:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3669. 2026-06-14T04:39:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3670. 2026-06-14T04:39:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3671. 2026-06-14T04:40:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3672. 2026-06-14T04:40:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3673. 2026-06-14T04:40:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3674. 2026-06-14T04:40:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3675. 2026-06-14T04:56:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3676. 2026-06-14T09:01:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3677. 2026-06-14T09:01:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3678. 2026-06-14T09:01:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3679. 2026-06-14T09:01:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3680. 2026-06-14T09:18:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3681. 2026-06-14T12:07:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3682. 2026-06-14T12:07:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3683. 2026-06-14T12:07:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3684. 2026-06-14T12:07:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3685. 2026-06-14T12:07:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3686. 2026-06-14T13:19:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3687. 2026-06-14T13:19:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3688. 2026-06-14T13:19:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3689. 2026-06-14T13:19:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3690. 2026-06-14T13:28:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3691. 2026-06-14T16:50:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3692. 2026-06-14T16:50:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3693. 2026-06-14T16:50:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3694. 2026-06-14T16:50:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3695. 2026-06-14T17:41:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3696. 2026-06-14T18:27:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3697. 2026/06/15 02:43:58 http2: server: error reading preface from client 198.41.200.53:7844: read tcp 192.168.0.106:61011->198.41.200.53:7844: read: connection reset by peer
  3698. 2026-06-14T18:43:58Z INF Lost connection with the edge connIndex=0
  3699. 2026-06-14T18:43:58Z ERR Serve tunnel error error="connection with edge closed" connIndex=0 event=0 ip=198.41.200.53
  3700. 2026-06-14T18:43:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3701. 2026-06-14T19:00:34Z ERR Connection terminated error="connection with edge closed" connIndex=0
  3702. 2026-06-15T02:14:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3703. 2026-06-15T02:14:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3704. 2026-06-15T02:14:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3705. 2026-06-15T02:14:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3706. 2026-06-15T02:15:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3707. 2026-06-15T02:18:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3708. 2026-06-15T02:18:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3709. 2026-06-15T02:18:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3710. 2026-06-15T02:18:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3711. 2026-06-15T02:18:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3712. 2026-06-15T02:22:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3713. 2026-06-15T02:22:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3714. 2026-06-15T02:22:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3715. 2026-06-15T02:22:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3716. 2026-06-15T02:22:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3717. 2026-06-15T02:23:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3718. 2026-06-15T02:23:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3719. 2026-06-15T02:23:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3720. 2026-06-15T02:23:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3721. 2026-06-15T02:23:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3722. 2026-06-15T02:25:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3723. 2026-06-15T02:25:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3724. 2026-06-15T02:25:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3725. 2026-06-15T02:25:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3726. 2026-06-15T02:25:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3727. 2026-06-15T02:26:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3728. 2026-06-15T02:26:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3729. 2026-06-15T02:26:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3730. 2026-06-15T02:26:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3731. 2026-06-15T02:26:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3732. 2026-06-15T02:30:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3733. 2026-06-15T02:30:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3734. 2026-06-15T02:30:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3735. 2026-06-15T02:30:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3736. 2026-06-15T02:30:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3737. 2026-06-15T02:34:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3738. 2026-06-15T02:34:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3739. 2026-06-15T02:34:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3740. 2026-06-15T02:34:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3741. 2026-06-15T02:35:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3742. 2026-06-15T02:35:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3743. 2026-06-15T02:35:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3744. 2026-06-15T02:35:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3745. 2026-06-15T02:35:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3746. 2026-06-15T02:36:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3747. 2026-06-15T02:40:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3748. 2026-06-15T02:40:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3749. 2026-06-15T02:40:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3750. 2026-06-15T02:40:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3751. 2026-06-15T02:41:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3752. 2026-06-15T02:41:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3753. 2026-06-15T02:41:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3754. 2026-06-15T02:41:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3755. 2026-06-15T02:41:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3756. 2026-06-15T02:42:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3757. 2026-06-15T02:43:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3758. 2026-06-15T02:43:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3759. 2026-06-15T02:43:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3760. 2026-06-15T02:43:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3761. 2026-06-15T02:43:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3762. 2026-06-15T02:44:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3763. 2026-06-15T02:44:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3764. 2026-06-15T02:44:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3765. 2026-06-15T02:44:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3766. 2026-06-15T02:44:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3767. 2026-06-15T02:45:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3768. 2026-06-15T02:45:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3769. 2026-06-15T02:45:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3770. 2026-06-15T02:45:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3771. 2026-06-15T02:45:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3772. 2026-06-15T02:47:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3773. 2026-06-15T02:47:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3774. 2026-06-15T02:47:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3775. 2026-06-15T02:47:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3776. 2026-06-15T02:48:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3777. 2026-06-15T02:49:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3778. 2026-06-15T02:49:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3779. 2026-06-15T02:49:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3780. 2026-06-15T02:49:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3781. 2026-06-15T02:49:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3782. 2026-06-15T02:50:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3783. 2026-06-15T02:50:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3784. 2026-06-15T02:50:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3785. 2026-06-15T02:50:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3786. 2026-06-15T02:51:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3787. 2026-06-15T02:55:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3788. 2026-06-15T02:55:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3789. 2026-06-15T02:55:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3790. 2026-06-15T02:55:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3791. 2026-06-15T02:56:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3792. 2026-06-15T02:56:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3793. 2026-06-15T02:56:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3794. 2026-06-15T02:56:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3795. 2026-06-15T02:56:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3796. 2026-06-15T02:56:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3797. 2026-06-15T02:59:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3798. 2026-06-15T02:59:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3799. 2026-06-15T02:59:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3800. 2026-06-15T02:59:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3801. 2026-06-15T03:00:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3802. 2026-06-15T03:01:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3803. 2026-06-15T03:01:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3804. 2026-06-15T03:01:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3805. 2026-06-15T03:01:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3806. 2026-06-15T03:01:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3807. 2026-06-15T03:02:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3808. 2026-06-15T03:02:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3809. 2026-06-15T03:02:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3810. 2026-06-15T03:02:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3811. 2026-06-15T03:02:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3812. 2026-06-15T03:07:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3813. 2026-06-15T03:07:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3814. 2026-06-15T03:07:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3815. 2026-06-15T03:07:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3816. 2026-06-15T03:07:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3817. 2026-06-15T03:10:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3818. 2026-06-15T03:10:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3819. 2026-06-15T03:10:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3820. 2026-06-15T03:10:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3821. 2026-06-15T03:10:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3822. 2026-06-15T03:10:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3823. 2026-06-15T03:10:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3824. 2026-06-15T03:10:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3825. 2026-06-15T03:10:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3826. 2026-06-15T03:10:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3827. 2026-06-15T03:13:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3828. 2026-06-15T03:13:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3829. 2026-06-15T03:13:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3830. 2026-06-15T03:13:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3831. 2026-06-15T03:14:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3832. 2026-06-15T03:17:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3833. 2026-06-15T03:17:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3834. 2026-06-15T03:17:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3835. 2026-06-15T03:17:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3836. 2026-06-15T03:17:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3837. 2026-06-15T03:17:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3838. 2026-06-15T03:17:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3839. 2026-06-15T03:17:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3840. 2026-06-15T03:17:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3841. 2026-06-15T03:17:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3842. 2026-06-15T03:18:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3843. 2026-06-15T03:18:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3844. 2026-06-15T03:18:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3845. 2026-06-15T03:18:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3846. 2026-06-15T03:18:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3847. 2026-06-15T03:20:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3848. 2026-06-15T03:20:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3849. 2026-06-15T03:20:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3850. 2026-06-15T03:20:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3851. 2026-06-15T03:20:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3852. 2026-06-15T03:21:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3853. 2026-06-15T03:21:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3854. 2026-06-15T03:21:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3855. 2026-06-15T03:21:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3856. 2026-06-15T03:21:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3857. 2026-06-15T03:24:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3858. 2026-06-15T03:24:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3859. 2026-06-15T03:24:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3860. 2026-06-15T03:24:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3861. 2026-06-15T03:25:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3862. 2026-06-15T03:25:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3863. 2026-06-15T03:25:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3864. 2026-06-15T03:25:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3865. 2026-06-15T03:25:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3866. 2026-06-15T03:26:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3867. 2026-06-15T03:29:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3868. 2026-06-15T03:29:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3869. 2026-06-15T03:29:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3870. 2026-06-15T03:29:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3871. 2026-06-15T03:29:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3872. 2026-06-15T03:30:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3873. 2026-06-15T03:30:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3874. 2026-06-15T03:30:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3875. 2026-06-15T03:30:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3876. 2026-06-15T03:30:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3877. 2026-06-15T03:33:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3878. 2026-06-15T03:33:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3879. 2026-06-15T03:33:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3880. 2026-06-15T03:33:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3881. 2026-06-15T03:33:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3882. 2026-06-15T03:36:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3883. 2026-06-15T03:36:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3884. 2026-06-15T03:36:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3885. 2026-06-15T03:36:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3886. 2026-06-15T03:36:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3887. 2026-06-15T03:37:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3888. 2026-06-15T03:37:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3889. 2026-06-15T03:37:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3890. 2026-06-15T03:37:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3891. 2026-06-15T03:37:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3892. 2026-06-15T03:41:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3893. 2026-06-15T03:41:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3894. 2026-06-15T03:41:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3895. 2026-06-15T03:41:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3896. 2026-06-15T03:42:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3897. 2026-06-15T03:47:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3898. 2026-06-15T03:47:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3899. 2026-06-15T03:47:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3900. 2026-06-15T03:47:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3901. 2026-06-15T03:47:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3902. 2026-06-15T03:49:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3903. 2026-06-15T03:49:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3904. 2026-06-15T03:49:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3905. 2026-06-15T03:49:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3906. 2026-06-15T03:49:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3907. 2026-06-15T03:50:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3908. 2026-06-15T03:50:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3909. 2026-06-15T03:50:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3910. 2026-06-15T03:50:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3911. 2026-06-15T03:50:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3912. 2026-06-15T03:52:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3913. 2026-06-15T03:52:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3914. 2026-06-15T03:52:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3915. 2026-06-15T03:52:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3916. 2026-06-15T03:52:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3917. 2026-06-15T03:54:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3918. 2026-06-15T03:54:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3919. 2026-06-15T03:54:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3920. 2026-06-15T03:54:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3921. 2026-06-15T03:55:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3922. 2026-06-15T03:59:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3923. 2026-06-15T03:59:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3924. 2026-06-15T03:59:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3925. 2026-06-15T03:59:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3926. 2026-06-15T03:59:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3927. 2026-06-15T04:01:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3928. 2026-06-15T04:01:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3929. 2026-06-15T04:01:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3930. 2026-06-15T04:01:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3931. 2026-06-15T04:01:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3932. 2026-06-15T04:03:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3933. 2026-06-15T04:03:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3934. 2026-06-15T04:03:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3935. 2026-06-15T04:03:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3936. 2026-06-15T04:03:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3937. 2026-06-15T04:05:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3938. 2026-06-15T04:05:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3939. 2026-06-15T04:05:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3940. 2026-06-15T04:05:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3941. 2026-06-15T04:05:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3942. 2026-06-15T04:07:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3943. 2026-06-15T04:07:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3944. 2026-06-15T04:07:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3945. 2026-06-15T04:07:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3946. 2026-06-15T04:08:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3947. 2026-06-15T04:11:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3948. 2026-06-15T04:11:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3949. 2026-06-15T04:11:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3950. 2026-06-15T04:11:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3951. 2026-06-15T04:11:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3952. 2026-06-15T04:13:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3953. 2026-06-15T04:13:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3954. 2026-06-15T04:13:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3955. 2026-06-15T04:13:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3956. 2026-06-15T04:13:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3957. 2026-06-15T04:16:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3958. 2026-06-15T04:16:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3959. 2026-06-15T04:16:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3960. 2026-06-15T04:16:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3961. 2026-06-15T04:16:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3962. 2026-06-15T04:18:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3963. 2026-06-15T04:18:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3964. 2026-06-15T04:18:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3965. 2026-06-15T04:18:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3966. 2026-06-15T04:19:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3967. 2026-06-15T04:19:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3968. 2026-06-15T04:19:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3969. 2026-06-15T04:19:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3970. 2026-06-15T04:19:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3971. 2026-06-15T04:20:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3972. 2026-06-15T04:21:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3973. 2026-06-15T04:21:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3974. 2026-06-15T04:21:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3975. 2026-06-15T04:21:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3976. 2026-06-15T04:21:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3977. 2026-06-15T04:24:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3978. 2026-06-15T04:24:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3979. 2026-06-15T04:24:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3980. 2026-06-15T04:24:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3981. 2026-06-15T04:24:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3982. 2026-06-15T04:24:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3983. 2026-06-15T04:24:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3984. 2026-06-15T04:24:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3985. 2026-06-15T04:24:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3986. 2026-06-15T04:24:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3987. 2026-06-15T04:25:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3988. 2026-06-15T04:25:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3989. 2026-06-15T04:25:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3990. 2026-06-15T04:25:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3991. 2026-06-15T04:25:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3992. 2026-06-15T04:29:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3993. 2026-06-15T04:29:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3994. 2026-06-15T04:29:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  3995. 2026-06-15T04:29:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  3996. 2026-06-15T04:29:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  3997. 2026-06-15T04:31:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  3998. 2026-06-15T04:31:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  3999. 2026-06-15T04:31:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4000. 2026-06-15T04:31:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4001. 2026-06-15T04:32:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4002. 2026-06-15T04:35:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4003. 2026-06-15T04:35:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4004. 2026-06-15T04:35:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4005. 2026-06-15T04:35:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4006. 2026-06-15T04:35:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4007. 2026-06-15T04:35:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4008. 2026-06-15T04:35:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4009. 2026-06-15T04:35:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4010. 2026-06-15T04:35:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4011. 2026-06-15T04:35:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4012. 2026-06-15T04:36:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4013. 2026-06-15T04:36:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4014. 2026-06-15T04:36:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4015. 2026-06-15T04:36:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4016. 2026-06-15T04:36:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4017. 2026-06-15T04:39:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4018. 2026-06-15T04:39:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4019. 2026-06-15T04:39:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4020. 2026-06-15T04:39:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4021. 2026-06-15T04:40:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4022. 2026-06-15T04:43:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4023. 2026-06-15T04:43:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4024. 2026-06-15T04:43:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4025. 2026-06-15T04:43:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4026. 2026-06-15T04:43:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4027. 2026-06-15T04:48:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4028. 2026-06-15T04:48:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4029. 2026-06-15T04:48:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4030. 2026-06-15T04:48:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4031. 2026-06-15T04:48:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4032. 2026-06-15T04:49:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4033. 2026-06-15T04:49:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4034. 2026-06-15T04:49:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4035. 2026-06-15T04:49:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4036. 2026-06-15T04:50:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4037. 2026-06-15T04:53:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4038. 2026-06-15T04:53:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4039. 2026-06-15T04:53:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4040. 2026-06-15T04:53:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4041. 2026-06-15T04:54:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4042. 2026-06-15T04:55:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4043. 2026-06-15T04:55:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4044. 2026-06-15T04:55:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4045. 2026-06-15T04:55:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4046. 2026-06-15T04:56:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4047. 2026-06-15T04:59:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4048. 2026-06-15T04:59:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4049. 2026-06-15T04:59:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4050. 2026-06-15T04:59:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4051. 2026-06-15T04:59:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4052. 2026-06-15T05:03:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4053. 2026-06-15T05:03:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4054. 2026-06-15T05:03:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4055. 2026-06-15T05:03:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4056. 2026-06-15T05:04:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4057. 2026-06-15T05:08:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4058. 2026-06-15T05:08:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4059. 2026-06-15T05:08:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4060. 2026-06-15T05:08:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4061. 2026-06-15T05:08:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4062. 2026-06-15T05:11:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4063. 2026-06-15T05:11:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4064. 2026-06-15T05:11:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4065. 2026-06-15T05:11:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4066. 2026-06-15T05:11:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4067. 2026-06-15T05:16:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4068. 2026-06-15T05:16:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4069. 2026-06-15T05:16:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4070. 2026-06-15T05:16:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4071. 2026-06-15T05:16:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4072. 2026-06-15T05:20:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4073. 2026-06-15T05:21:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4074. 2026-06-15T05:21:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4075. 2026-06-15T05:21:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4076. 2026-06-15T05:21:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4077. 2026-06-15T05:22:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4078. 2026-06-15T05:22:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4079. 2026-06-15T05:22:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4080. 2026-06-15T05:22:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4081. 2026-06-15T05:22:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4082. 2026-06-15T05:27:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4083. 2026-06-15T05:27:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4084. 2026-06-15T05:27:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4085. 2026-06-15T05:27:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4086. 2026-06-15T05:27:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4087. 2026-06-15T05:32:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4088. 2026-06-15T05:32:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4089. 2026-06-15T05:32:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4090. 2026-06-15T05:32:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4091. 2026-06-15T05:32:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4092. 2026-06-15T05:36:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4093. 2026-06-15T05:36:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4094. 2026-06-15T05:36:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4095. 2026-06-15T05:36:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4096. 2026-06-15T05:36:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4097. 2026-06-15T05:38:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4098. 2026-06-15T05:38:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4099. 2026-06-15T05:38:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4100. 2026-06-15T05:38:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4101. 2026-06-15T05:39:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4102. 2026-06-15T05:42:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4103. 2026-06-15T05:42:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4104. 2026-06-15T05:42:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4105. 2026-06-15T05:42:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4106. 2026-06-15T05:42:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4107. 2026-06-15T05:44:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4108. 2026-06-15T05:44:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4109. 2026-06-15T05:44:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4110. 2026-06-15T05:44:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4111. 2026-06-15T05:45:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4112. 2026-06-15T05:46:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4113. 2026-06-15T05:46:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4114. 2026-06-15T05:46:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4115. 2026-06-15T05:46:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4116. 2026-06-15T05:46:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4117. 2026-06-15T05:47:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4118. 2026-06-15T05:47:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4119. 2026-06-15T05:47:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4120. 2026-06-15T05:47:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4121. 2026-06-15T05:47:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4122. 2026-06-15T05:48:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4123. 2026-06-15T05:48:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4124. 2026-06-15T05:48:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4125. 2026-06-15T05:48:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4126. 2026-06-15T05:49:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4127. 2026-06-15T05:49:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4128. 2026-06-15T05:49:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4129. 2026-06-15T05:49:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4130. 2026-06-15T05:49:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4131. 2026-06-15T05:50:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4132. 2026-06-15T05:54:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4133. 2026-06-15T05:54:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4134. 2026-06-15T05:54:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4135. 2026-06-15T05:54:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4136. 2026-06-15T05:54:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4137. 2026-06-15T06:00:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4138. 2026-06-15T06:00:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4139. 2026-06-15T06:00:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4140. 2026-06-15T06:00:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4141. 2026-06-15T06:00:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4142. 2026-06-15T06:00:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4143. 2026-06-15T06:00:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4144. 2026-06-15T06:00:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4145. 2026-06-15T06:00:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4146. 2026-06-15T06:00:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4147. 2026-06-15T06:02:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4148. 2026-06-15T06:03:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4149. 2026-06-15T06:03:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4150. 2026-06-15T06:03:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4151. 2026-06-15T06:03:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4152. 2026-06-15T06:06:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4153. 2026-06-15T06:06:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4154. 2026-06-15T06:06:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4155. 2026-06-15T06:06:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4156. 2026-06-15T06:07:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4157. 2026-06-15T06:11:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4158. 2026-06-15T06:11:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4159. 2026-06-15T06:11:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4160. 2026-06-15T06:11:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4161. 2026-06-15T06:11:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4162. 2026-06-15T06:15:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4163. 2026-06-15T06:15:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4164. 2026-06-15T06:15:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4165. 2026-06-15T06:15:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4166. 2026-06-15T06:15:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4167. 2026-06-15T06:19:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4168. 2026-06-15T06:19:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4169. 2026-06-15T06:19:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4170. 2026-06-15T06:19:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4171. 2026-06-15T06:19:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4172. 2026-06-15T06:21:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4173. 2026-06-15T06:21:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4174. 2026-06-15T06:21:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4175. 2026-06-15T06:21:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4176. 2026-06-15T06:21:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4177. 2026-06-15T06:22:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4178. 2026-06-15T06:22:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4179. 2026-06-15T06:22:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4180. 2026-06-15T06:22:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4181. 2026-06-15T06:22:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4182. 2026-06-15T06:24:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4183. 2026-06-15T06:24:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4184. 2026-06-15T06:24:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4185. 2026-06-15T06:24:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4186. 2026-06-15T06:25:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4187. 2026-06-15T06:28:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4188. 2026-06-15T06:28:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4189. 2026-06-15T06:28:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4190. 2026-06-15T06:28:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4191. 2026-06-15T06:28:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4192. 2026-06-15T06:29:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4193. 2026-06-15T06:29:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4194. 2026-06-15T06:29:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4195. 2026-06-15T06:29:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4196. 2026-06-15T06:29:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4197. 2026-06-15T06:33:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4198. 2026-06-15T06:33:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4199. 2026-06-15T06:33:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4200. 2026-06-15T06:33:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4201. 2026-06-15T06:33:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4202. 2026-06-15T06:37:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4203. 2026-06-15T06:37:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4204. 2026-06-15T06:37:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4205. 2026-06-15T06:37:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4206. 2026-06-15T06:37:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4207. 2026-06-15T06:42:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4208. 2026-06-15T06:42:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4209. 2026-06-15T06:42:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4210. 2026-06-15T06:42:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4211. 2026-06-15T06:42:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4212. 2026-06-15T06:44:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4213. 2026-06-15T06:44:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4214. 2026-06-15T06:44:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4215. 2026-06-15T06:44:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4216. 2026-06-15T06:45:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4217. 2026-06-15T06:47:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4218. 2026-06-15T06:47:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4219. 2026-06-15T06:47:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4220. 2026-06-15T06:47:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4221. 2026-06-15T06:47:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4222. 2026-06-15T06:49:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4223. 2026-06-15T06:49:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4224. 2026-06-15T06:49:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4225. 2026-06-15T06:49:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4226. 2026-06-15T06:50:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4227. 2026-06-15T06:54:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4228. 2026-06-15T06:54:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4229. 2026-06-15T06:54:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4230. 2026-06-15T06:54:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4231. 2026-06-15T06:54:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4232. 2026-06-15T06:57:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4233. 2026-06-15T06:57:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4234. 2026-06-15T06:57:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4235. 2026-06-15T06:57:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4236. 2026-06-15T06:57:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4237. 2026-06-15T06:59:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4238. 2026-06-15T06:59:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4239. 2026-06-15T06:59:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4240. 2026-06-15T06:59:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4241. 2026-06-15T07:00:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4242. 2026-06-15T07:02:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4243. 2026-06-15T07:02:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4244. 2026-06-15T07:02:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4245. 2026-06-15T07:02:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4246. 2026-06-15T07:02:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4247. 2026-06-15T07:05:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4248. 2026-06-15T07:05:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4249. 2026-06-15T07:05:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4250. 2026-06-15T07:05:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4251. 2026-06-15T07:05:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4252. 2026-06-15T07:06:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4253. 2026-06-15T07:06:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4254. 2026-06-15T07:06:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4255. 2026-06-15T07:06:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4256. 2026-06-15T07:06:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4257. 2026-06-15T07:07:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4258. 2026-06-15T07:07:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4259. 2026-06-15T07:07:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4260. 2026-06-15T07:07:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4261. 2026-06-15T07:08:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4262. 2026-06-15T07:08:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4263. 2026-06-15T07:08:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4264. 2026-06-15T07:08:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4265. 2026-06-15T07:08:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4266. 2026-06-15T07:08:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4267. 2026-06-15T07:12:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4268. 2026-06-15T07:12:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4269. 2026-06-15T07:12:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4270. 2026-06-15T07:12:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4271. 2026-06-15T07:13:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4272. 2026-06-15T07:14:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4273. 2026-06-15T07:14:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4274. 2026-06-15T07:14:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4275. 2026-06-15T07:14:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4276. 2026-06-15T07:14:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4277. 2026-06-15T07:14:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4278. 2026-06-15T07:14:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4279. 2026-06-15T07:14:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4280. 2026-06-15T07:14:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4281. 2026-06-15T07:14:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4282. 2026-06-15T07:17:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4283. 2026-06-15T07:17:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4284. 2026-06-15T07:17:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4285. 2026-06-15T07:17:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4286. 2026-06-15T07:17:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4287. 2026-06-15T07:17:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4288. 2026-06-15T07:17:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4289. 2026-06-15T07:17:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4290. 2026-06-15T07:17:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4291. 2026-06-15T07:17:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4292. 2026-06-15T07:22:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4293. 2026-06-15T07:22:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4294. 2026-06-15T07:22:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4295. 2026-06-15T07:22:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4296. 2026-06-15T07:22:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4297. 2026-06-15T07:24:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4298. 2026-06-15T07:24:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4299. 2026-06-15T07:24:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4300. 2026-06-15T07:24:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4301. 2026-06-15T07:24:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4302. 2026-06-15T07:28:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4303. 2026-06-15T07:28:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4304. 2026-06-15T07:28:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4305. 2026-06-15T07:28:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4306. 2026-06-15T07:28:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4307. 2026-06-15T07:31:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4308. 2026-06-15T07:31:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4309. 2026-06-15T07:31:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4310. 2026-06-15T07:31:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4311. 2026-06-15T07:32:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4312. 2026-06-15T07:33:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4313. 2026-06-15T07:33:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4314. 2026-06-15T07:33:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4315. 2026-06-15T07:33:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4316. 2026-06-15T07:33:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4317. 2026-06-15T07:35:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4318. 2026-06-15T07:35:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4319. 2026-06-15T07:35:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4320. 2026-06-15T07:35:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4321. 2026-06-15T07:35:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4322. 2026-06-15T07:38:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4323. 2026-06-15T07:38:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4324. 2026-06-15T07:38:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4325. 2026-06-15T07:38:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4326. 2026-06-15T07:39:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4327. 2026-06-15T07:43:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4328. 2026-06-15T07:43:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4329. 2026-06-15T07:43:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4330. 2026-06-15T07:43:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4331. 2026-06-15T07:43:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4332. 2026-06-15T07:46:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4333. 2026-06-15T07:46:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4334. 2026-06-15T07:46:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4335. 2026-06-15T07:46:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4336. 2026-06-15T07:46:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4337. 2026-06-15T07:49:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4338. 2026-06-15T07:49:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4339. 2026-06-15T07:49:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4340. 2026-06-15T07:49:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4341. 2026-06-15T07:49:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4342. 2026-06-15T07:49:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4343. 2026-06-15T07:49:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4344. 2026-06-15T07:49:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4345. 2026-06-15T07:49:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4346. 2026-06-15T07:49:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4347. 2026-06-15T07:53:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4348. 2026-06-15T07:53:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4349. 2026-06-15T07:53:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4350. 2026-06-15T07:53:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4351. 2026-06-15T07:54:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4352. 2026-06-15T07:54:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4353. 2026-06-15T07:54:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4354. 2026-06-15T07:54:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4355. 2026-06-15T07:54:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4356. 2026-06-15T07:54:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4357. 2026-06-15T07:56:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4358. 2026-06-15T07:56:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4359. 2026-06-15T07:56:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4360. 2026-06-15T07:56:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4361. 2026-06-15T07:57:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4362. 2026-06-15T07:57:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4363. 2026-06-15T07:57:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4364. 2026-06-15T07:57:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4365. 2026-06-15T07:57:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4366. 2026-06-15T07:57:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4367. 2026-06-15T08:01:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4368. 2026-06-15T08:01:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4369. 2026-06-15T08:01:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4370. 2026-06-15T08:01:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4371. 2026-06-15T08:01:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4372. 2026-06-15T08:02:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4373. 2026-06-15T08:02:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4374. 2026-06-15T08:02:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4375. 2026-06-15T08:02:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4376. 2026-06-15T08:02:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4377. 2026-06-15T08:03:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4378. 2026-06-15T08:03:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4379. 2026-06-15T08:03:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4380. 2026-06-15T08:03:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4381. 2026-06-15T08:04:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4382. 2026-06-15T08:07:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4383. 2026-06-15T08:07:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4384. 2026-06-15T08:07:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4385. 2026-06-15T08:07:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4386. 2026-06-15T08:08:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4387. 2026-06-15T08:12:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4388. 2026-06-15T08:12:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4389. 2026-06-15T08:12:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4390. 2026-06-15T08:12:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4391. 2026-06-15T08:12:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4392. 2026-06-15T08:16:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4393. 2026-06-15T08:16:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4394. 2026-06-15T08:16:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4395. 2026-06-15T08:16:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4396. 2026-06-15T08:16:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4397. 2026-06-15T08:16:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4398. 2026-06-15T08:16:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4399. 2026-06-15T08:16:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4400. 2026-06-15T08:16:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4401. 2026-06-15T08:16:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4402. 2026-06-15T08:19:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4403. 2026-06-15T08:19:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4404. 2026-06-15T08:19:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4405. 2026-06-15T08:19:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4406. 2026-06-15T08:20:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4407. 2026-06-15T08:20:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4408. 2026-06-15T08:20:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4409. 2026-06-15T08:20:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4410. 2026-06-15T08:20:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4411. 2026-06-15T08:21:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4412. 2026-06-15T08:25:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4413. 2026-06-15T08:25:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4414. 2026-06-15T08:25:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4415. 2026-06-15T08:25:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4416. 2026-06-15T08:25:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4417. 2026-06-15T08:25:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4418. 2026-06-15T08:25:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4419. 2026-06-15T08:25:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4420. 2026-06-15T08:25:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4421. 2026-06-15T08:26:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4422. 2026-06-15T08:26:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4423. 2026-06-15T08:26:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4424. 2026-06-15T08:26:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4425. 2026-06-15T08:26:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4426. 2026-06-15T08:26:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4427. 2026-06-15T08:29:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4428. 2026-06-15T08:29:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4429. 2026-06-15T08:29:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4430. 2026-06-15T08:29:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4431. 2026-06-15T08:29:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4432. 2026-06-15T08:33:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4433. 2026-06-15T08:33:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4434. 2026-06-15T08:33:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4435. 2026-06-15T08:33:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4436. 2026-06-15T08:33:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4437. 2026-06-15T08:38:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4438. 2026-06-15T08:38:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4439. 2026-06-15T08:38:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4440. 2026-06-15T08:38:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4441. 2026-06-15T08:38:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4442. 2026-06-15T08:40:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4443. 2026-06-15T08:40:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4444. 2026-06-15T08:40:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4445. 2026-06-15T08:40:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4446. 2026-06-15T08:40:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4447. 2026-06-15T08:43:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4448. 2026-06-15T08:43:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4449. 2026-06-15T08:43:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4450. 2026-06-15T08:43:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4451. 2026-06-15T08:43:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4452. 2026-06-15T08:44:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4453. 2026-06-15T08:44:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4454. 2026-06-15T08:44:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4455. 2026-06-15T08:44:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4456. 2026-06-15T08:44:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4457. 2026-06-15T08:46:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4458. 2026-06-15T08:46:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4459. 2026-06-15T08:46:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4460. 2026-06-15T08:46:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4461. 2026-06-15T08:47:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4462. 2026-06-15T08:52:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4463. 2026-06-15T08:52:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4464. 2026-06-15T08:52:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4465. 2026-06-15T08:52:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4466. 2026-06-15T08:53:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4467. 2026-06-15T08:58:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4468. 2026-06-15T08:58:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4469. 2026-06-15T08:58:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4470. 2026-06-15T08:58:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4471. 2026-06-15T08:58:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4472. 2026-06-15T09:00:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4473. 2026-06-15T09:00:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4474. 2026-06-15T09:00:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4475. 2026-06-15T09:00:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4476. 2026-06-15T09:01:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4477. 2026-06-15T09:02:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4478. 2026-06-15T09:02:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4479. 2026-06-15T09:02:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4480. 2026-06-15T09:02:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4481. 2026-06-15T09:02:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4482. 2026-06-15T09:04:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4483. 2026-06-15T09:04:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4484. 2026-06-15T09:04:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4485. 2026-06-15T09:04:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4486. 2026-06-15T09:04:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4487. 2026-06-15T09:08:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4488. 2026-06-15T09:08:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4489. 2026-06-15T09:08:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4490. 2026-06-15T09:08:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4491. 2026-06-15T09:08:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4492. 2026-06-15T09:11:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4493. 2026-06-15T09:11:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4494. 2026-06-15T09:11:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4495. 2026-06-15T09:11:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4496. 2026-06-15T09:11:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4497. 2026-06-15T09:14:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4498. 2026-06-15T09:14:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4499. 2026-06-15T09:14:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4500. 2026-06-15T09:14:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4501. 2026-06-15T09:14:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4502. 2026-06-15T09:18:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4503. 2026-06-15T09:18:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4504. 2026-06-15T09:18:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4505. 2026-06-15T09:18:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4506. 2026-06-15T09:18:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4507. 2026-06-15T09:20:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4508. 2026-06-15T09:20:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4509. 2026-06-15T09:20:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4510. 2026-06-15T09:20:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4511. 2026-06-15T09:20:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4512. 2026-06-15T09:24:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4513. 2026-06-15T09:24:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4514. 2026-06-15T09:24:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4515. 2026-06-15T09:24:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4516. 2026-06-15T09:24:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4517. 2026-06-15T09:28:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4518. 2026-06-15T09:29:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4519. 2026-06-15T09:29:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4520. 2026-06-15T09:29:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4521. 2026-06-15T09:29:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4522. 2026-06-15T09:29:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4523. 2026-06-15T09:29:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4524. 2026-06-15T09:29:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4525. 2026-06-15T09:29:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4526. 2026-06-15T09:29:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4527. 2026-06-15T09:30:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4528. 2026-06-15T09:30:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4529. 2026-06-15T09:30:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4530. 2026-06-15T09:30:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4531. 2026-06-15T09:30:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4532. 2026-06-15T09:31:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4533. 2026-06-15T09:31:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4534. 2026-06-15T09:31:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4535. 2026-06-15T09:31:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4536. 2026-06-15T09:32:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4537. 2026-06-15T09:35:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4538. 2026-06-15T09:35:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4539. 2026-06-15T09:35:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4540. 2026-06-15T09:35:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4541. 2026-06-15T09:35:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4542. 2026-06-15T09:40:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4543. 2026-06-15T09:40:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4544. 2026-06-15T09:40:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4545. 2026-06-15T09:40:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4546. 2026-06-15T09:41:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4547. 2026-06-15T09:44:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4548. 2026-06-15T09:44:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4549. 2026-06-15T09:44:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4550. 2026-06-15T09:44:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4551. 2026-06-15T09:45:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4552. 2026-06-15T09:50:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4553. 2026-06-15T09:50:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4554. 2026-06-15T09:50:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4555. 2026-06-15T09:50:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4556. 2026-06-15T09:50:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4557. 2026-06-15T09:50:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4558. 2026-06-15T09:50:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4559. 2026-06-15T09:50:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4560. 2026-06-15T09:50:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4561. 2026-06-15T09:51:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4562. 2026-06-15T09:54:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4563. 2026-06-15T09:54:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4564. 2026-06-15T09:54:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4565. 2026-06-15T09:54:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4566. 2026-06-15T09:54:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4567. 2026-06-15T09:55:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4568. 2026-06-15T09:55:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4569. 2026-06-15T09:55:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4570. 2026-06-15T09:55:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4571. 2026-06-15T09:55:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4572. 2026-06-15T10:00:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4573. 2026-06-15T10:00:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4574. 2026-06-15T10:00:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4575. 2026-06-15T10:00:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4576. 2026-06-15T10:00:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4577. 2026-06-15T10:02:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4578. 2026-06-15T10:02:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4579. 2026-06-15T10:02:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4580. 2026-06-15T10:02:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4581. 2026-06-15T10:02:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4582. 2026-06-15T10:06:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4583. 2026-06-15T10:06:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4584. 2026-06-15T10:06:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4585. 2026-06-15T10:06:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4586. 2026-06-15T10:06:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4587. 2026-06-15T10:07:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4588. 2026-06-15T10:07:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4589. 2026-06-15T10:07:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4590. 2026-06-15T10:07:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4591. 2026-06-15T10:07:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4592. 2026-06-15T10:08:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4593. 2026-06-15T10:08:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4594. 2026-06-15T10:08:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4595. 2026-06-15T10:08:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4596. 2026-06-15T10:08:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4597. 2026-06-15T10:11:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4598. 2026-06-15T10:11:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4599. 2026-06-15T10:11:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4600. 2026-06-15T10:11:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4601. 2026-06-15T10:11:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4602. 2026-06-15T10:15:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4603. 2026-06-15T10:15:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4604. 2026-06-15T10:15:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4605. 2026-06-15T10:15:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4606. 2026-06-15T10:16:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4607. 2026-06-15T10:18:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4608. 2026-06-15T10:18:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4609. 2026-06-15T10:18:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4610. 2026-06-15T10:18:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4611. 2026-06-15T10:19:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4612. 2026-06-15T10:23:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4613. 2026-06-15T10:23:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4614. 2026-06-15T10:23:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4615. 2026-06-15T10:23:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4616. 2026-06-15T10:24:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4617. 2026-06-15T10:26:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4618. 2026-06-15T10:26:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4619. 2026-06-15T10:26:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4620. 2026-06-15T10:26:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4621. 2026-06-15T10:26:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4622. 2026-06-15T10:27:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4623. 2026-06-15T10:27:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4624. 2026-06-15T10:27:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4625. 2026-06-15T10:27:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4626. 2026-06-15T10:27:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4627. 2026-06-15T10:28:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4628. 2026-06-15T10:28:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4629. 2026-06-15T10:28:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4630. 2026-06-15T10:28:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4631. 2026-06-15T10:28:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4632. 2026-06-15T10:31:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4633. 2026-06-15T10:31:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4634. 2026-06-15T10:31:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4635. 2026-06-15T10:31:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4636. 2026-06-15T10:31:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4637. 2026-06-15T10:34:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4638. 2026-06-15T10:34:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4639. 2026-06-15T10:34:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4640. 2026-06-15T10:34:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4641. 2026-06-15T10:35:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4642. 2026-06-15T10:39:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4643. 2026-06-15T10:39:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4644. 2026-06-15T10:39:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4645. 2026-06-15T10:39:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4646. 2026-06-15T10:39:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4647. 2026-06-15T10:42:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4648. 2026-06-15T10:42:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4649. 2026-06-15T10:42:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4650. 2026-06-15T10:42:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4651. 2026-06-15T10:42:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4652. 2026-06-15T10:44:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4653. 2026-06-15T10:44:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4654. 2026-06-15T10:44:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4655. 2026-06-15T10:44:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4656. 2026-06-15T10:44:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4657. 2026-06-15T10:48:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4658. 2026-06-15T10:48:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4659. 2026-06-15T10:48:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4660. 2026-06-15T10:48:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4661. 2026-06-15T10:49:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4662. 2026-06-15T10:51:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4663. 2026-06-15T10:51:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4664. 2026-06-15T10:51:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4665. 2026-06-15T10:51:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4666. 2026-06-15T10:52:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4667. 2026-06-15T10:57:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4668. 2026-06-15T10:57:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4669. 2026-06-15T10:57:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4670. 2026-06-15T10:57:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4671. 2026-06-15T10:57:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4672. 2026-06-15T11:01:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4673. 2026-06-15T11:01:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4674. 2026-06-15T11:01:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4675. 2026-06-15T11:01:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4676. 2026-06-15T11:02:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4677. 2026-06-15T11:06:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4678. 2026-06-15T11:06:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4679. 2026-06-15T11:06:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4680. 2026-06-15T11:06:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4681. 2026-06-15T11:06:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4682. 2026-06-15T11:09:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
  4683. 2026-06-15T11:09:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4684. 2026-06-15T11:09:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
  4685. 2026-06-15T11:09:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
  4686. 2026-06-15T11:09:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4687. from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4688. 2026-06-13T22:20:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4689. 2026-06-13T22:20:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4690. 2026-06-13T22:21:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4691. 2026-06-13T22:21:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4692. 2026-06-13T22:21:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4693. 2026-06-13T22:21:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4694. 2026-06-13T22:22:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4695. 2026-06-13T22:25:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4696. 2026-06-13T22:25:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4697. 2026-06-13T22:25:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4698. 2026-06-13T22:25:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4699. 2026-06-13T22:26:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4700. 2026-06-13T22:28:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4701. 2026-06-13T22:28:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4702. 2026-06-13T22:28:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4703. 2026-06-13T22:28:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4704. 2026-06-13T22:28:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4705. 2026-06-13T22:33:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4706. 2026-06-13T22:33:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4707. 2026-06-13T22:33:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4708. 2026-06-13T22:33:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4709. 2026-06-13T22:33:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4710. 2026-06-13T22:36:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4711. 2026-06-13T22:36:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4712. 2026-06-13T22:36:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4713. 2026-06-13T22:36:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4714. 2026-06-13T22:36:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4715. 2026-06-13T22:37:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4716. 2026-06-13T22:37:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4717. 2026-06-13T22:37:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4718. 2026-06-13T22:37:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4719. 2026-06-13T22:37:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4720. 2026-06-13T22:41:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4721. 2026-06-13T22:41:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4722. 2026-06-13T22:41:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4723. 2026-06-13T22:41:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4724. 2026-06-13T22:41:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4725. 2026-06-13T22:46:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4726. 2026-06-13T22:46:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4727. 2026-06-13T22:46:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4728. 2026-06-13T22:46:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4729. 2026-06-13T22:46:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4730. 2026-06-13T22:50:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4731. 2026-06-13T22:50:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4732. 2026-06-13T22:50:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4733. 2026-06-13T22:50:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4734. 2026-06-13T22:50:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4735. 2026-06-13T22:55:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4736. 2026-06-13T22:55:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4737. 2026-06-13T22:55:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4738. 2026-06-13T22:55:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4739. 2026-06-13T22:55:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4740. 2026-06-13T22:57:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4741. 2026-06-13T22:57:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4742. 2026-06-13T22:57:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4743. 2026-06-13T22:57:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4744. 2026-06-13T22:58:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4745. 2026-06-13T23:03:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4746. 2026-06-13T23:03:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4747. 2026-06-13T23:03:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4748. 2026-06-13T23:03:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4749. 2026-06-13T23:03:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4750. 2026-06-13T23:04:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4751. 2026-06-13T23:04:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4752. 2026-06-13T23:04:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4753. 2026-06-13T23:04:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4754. 2026-06-13T23:04:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4755. 2026-06-13T23:07:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4756. 2026-06-13T23:07:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4757. 2026-06-13T23:07:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4758. 2026-06-13T23:07:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4759. 2026-06-13T23:08:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4760. 2026-06-13T23:13:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4761. 2026-06-13T23:13:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4762. 2026-06-13T23:13:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4763. 2026-06-13T23:13:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4764. 2026-06-13T23:13:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4765. 2026-06-13T23:14:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4766. 2026-06-13T23:14:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4767. 2026-06-13T23:14:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4768. 2026-06-13T23:14:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4769. 2026-06-13T23:14:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4770. 2026-06-13T23:16:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4771. 2026-06-13T23:16:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4772. 2026-06-13T23:16:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4773. 2026-06-13T23:16:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4774. 2026-06-13T23:17:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4775. 2026-06-13T23:20:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4776. 2026-06-13T23:20:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4777. 2026-06-13T23:20:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4778. 2026-06-13T23:20:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4779. 2026-06-13T23:20:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4780. 2026-06-13T23:21:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4781. 2026-06-13T23:21:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4782. 2026-06-13T23:21:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4783. 2026-06-13T23:21:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4784. 2026-06-13T23:22:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4785. 2026-06-13T23:24:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4786. 2026-06-13T23:24:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4787. 2026-06-13T23:24:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4788. 2026-06-13T23:24:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4789. 2026-06-13T23:25:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4790. 2026-06-13T23:25:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4791. 2026-06-13T23:26:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4792. 2026-06-13T23:26:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4793. 2026-06-13T23:26:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4794. 2026-06-13T23:26:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4795. 2026-06-13T23:27:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4796. 2026-06-13T23:27:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4797. 2026-06-13T23:27:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4798. 2026-06-13T23:27:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4799. 2026-06-13T23:28:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4800. 2026-06-13T23:30:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4801. 2026-06-13T23:30:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4802. 2026-06-13T23:30:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4803. 2026-06-13T23:30:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4804. 2026-06-13T23:31:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4805. 2026-06-13T23:35:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4806. 2026-06-13T23:35:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4807. 2026-06-13T23:35:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4808. 2026-06-13T23:35:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4809. 2026-06-13T23:35:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4810. 2026-06-13T23:37:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4811. 2026-06-13T23:37:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4812. 2026-06-13T23:37:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4813. 2026-06-13T23:37:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4814. 2026-06-13T23:37:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4815. 2026-06-13T23:40:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4816. 2026-06-13T23:40:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4817. 2026-06-13T23:40:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4818. 2026-06-13T23:40:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4819. 2026-06-13T23:40:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4820. 2026-06-13T23:40:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4821. 2026-06-13T23:40:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4822. 2026-06-13T23:40:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4823. 2026-06-13T23:40:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4824. 2026-06-13T23:41:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4825. 2026-06-13T23:41:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4826. 2026-06-13T23:41:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4827. 2026-06-13T23:41:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4828. 2026-06-13T23:41:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4829. 2026-06-13T23:41:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4830. 2026-06-13T23:43:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4831. 2026-06-13T23:43:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4832. 2026-06-13T23:43:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4833. 2026-06-13T23:43:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4834. 2026-06-13T23:43:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4835. 2026-06-13T23:46:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4836. 2026-06-13T23:46:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4837. 2026-06-13T23:46:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4838. 2026-06-13T23:46:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4839. 2026-06-13T23:46:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4840. 2026-06-13T23:49:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4841. 2026-06-13T23:49:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4842. 2026-06-13T23:49:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4843. 2026-06-13T23:49:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4844. 2026-06-13T23:50:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4845. 2026-06-13T23:54:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4846. 2026-06-13T23:54:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4847. 2026-06-13T23:54:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4848. 2026-06-13T23:54:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4849. 2026-06-13T23:54:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4850. 2026-06-13T23:57:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4851. 2026-06-13T23:57:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4852. 2026-06-13T23:57:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4853. 2026-06-13T23:57:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4854. 2026-06-13T23:58:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4855. 2026-06-13T23:59:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4856. 2026-06-13T23:59:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4857. 2026-06-13T23:59:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4858. 2026-06-13T23:59:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4859. 2026-06-14T00:00:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4860. 2026-06-14T00:03:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4861. 2026-06-14T00:03:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4862. 2026-06-14T00:03:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4863. 2026-06-14T00:03:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4864. 2026-06-14T00:03:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4865. 2026-06-14T00:05:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4866. 2026-06-14T00:05:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4867. 2026-06-14T00:05:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4868. 2026-06-14T00:05:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4869. 2026-06-14T00:05:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4870. 2026-06-14T00:08:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4871. 2026-06-14T00:08:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4872. 2026-06-14T00:08:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4873. 2026-06-14T00:08:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4874. 2026-06-14T00:08:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4875. 2026-06-14T00:09:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4876. 2026-06-14T00:09:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4877. 2026-06-14T00:09:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4878. 2026-06-14T00:09:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4879. 2026-06-14T00:09:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4880. 2026-06-14T00:10:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4881. 2026-06-14T00:10:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4882. 2026-06-14T00:10:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4883. 2026-06-14T00:10:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4884. 2026-06-14T00:10:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4885. 2026-06-14T00:13:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4886. 2026-06-14T00:13:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4887. 2026-06-14T00:13:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4888. 2026-06-14T00:13:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4889. 2026-06-14T00:13:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4890. 2026-06-14T00:16:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4891. 2026-06-14T00:16:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4892. 2026-06-14T00:16:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4893. 2026-06-14T00:16:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4894. 2026-06-14T00:17:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4895. 2026-06-14T00:17:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4896. 2026-06-14T00:17:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4897. 2026-06-14T00:17:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4898. 2026-06-14T00:17:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4899. 2026-06-14T00:17:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4900. 2026-06-14T00:18:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4901. 2026-06-14T00:18:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4902. 2026-06-14T00:18:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4903. 2026-06-14T00:18:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4904. 2026-06-14T00:18:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4905. 2026-06-14T00:19:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4906. 2026-06-14T00:19:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4907. 2026-06-14T00:19:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4908. 2026-06-14T00:19:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4909. 2026-06-14T00:19:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4910. 2026-06-14T00:21:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4911. 2026-06-14T00:21:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4912. 2026-06-14T00:21:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4913. 2026-06-14T00:21:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4914. 2026-06-14T00:21:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4915. 2026-06-14T00:24:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4916. 2026-06-14T00:24:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4917. 2026-06-14T00:24:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4918. 2026-06-14T00:24:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4919. 2026-06-14T00:24:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4920. 2026-06-14T00:25:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4921. 2026-06-14T00:25:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4922. 2026-06-14T00:25:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4923. 2026-06-14T00:25:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4924. 2026-06-14T00:26:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4925. 2026-06-14T00:28:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4926. 2026-06-14T00:28:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4927. 2026-06-14T00:28:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4928. 2026-06-14T00:28:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4929. 2026-06-14T00:29:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4930. 2026-06-14T00:34:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4931. 2026-06-14T00:34:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4932. 2026-06-14T00:34:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4933. 2026-06-14T00:34:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4934. 2026-06-14T00:34:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4935. 2026-06-14T00:35:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4936. 2026-06-14T00:35:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4937. 2026-06-14T00:35:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4938. 2026-06-14T00:35:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4939. 2026-06-14T00:35:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4940. 2026-06-14T00:41:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4941. 2026-06-14T00:41:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4942. 2026-06-14T00:41:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4943. 2026-06-14T00:41:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4944. 2026-06-14T00:41:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4945. 2026-06-14T00:44:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4946. 2026-06-14T00:44:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4947. 2026-06-14T00:44:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4948. 2026-06-14T00:44:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4949. 2026-06-14T00:44:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4950. 2026-06-14T00:46:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4951. 2026-06-14T00:46:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4952. 2026-06-14T00:46:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4953. 2026-06-14T00:46:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4954. 2026-06-14T00:46:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4955. 2026-06-14T00:48:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4956. 2026-06-14T00:48:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4957. 2026-06-14T00:48:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4958. 2026-06-14T00:48:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4959. 2026-06-14T00:49:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4960. 2026-06-14T00:54:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4961. 2026-06-14T00:54:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4962. 2026-06-14T00:54:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4963. 2026-06-14T00:54:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4964. 2026-06-14T00:54:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4965. 2026-06-14T00:59:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4966. 2026-06-14T00:59:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4967. 2026-06-14T00:59:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4968. 2026-06-14T00:59:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4969. 2026-06-14T00:59:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4970. 2026-06-14T01:00:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4971. 2026-06-14T01:00:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4972. 2026-06-14T01:00:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4973. 2026-06-14T01:00:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4974. 2026-06-14T01:01:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4975. 2026-06-14T01:04:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4976. 2026-06-14T01:04:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4977. 2026-06-14T01:04:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4978. 2026-06-14T01:04:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4979. 2026-06-14T01:05:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4980. 2026-06-14T01:08:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4981. 2026-06-14T01:08:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4982. 2026-06-14T01:08:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4983. 2026-06-14T01:08:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4984. 2026-06-14T01:08:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4985. 2026-06-14T01:10:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4986. 2026-06-14T01:10:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4987. 2026-06-14T01:10:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4988. 2026-06-14T01:10:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4989. 2026-06-14T01:11:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4990. 2026-06-14T01:15:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4991. 2026-06-14T01:15:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4992. 2026-06-14T01:15:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4993. 2026-06-14T01:15:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4994. 2026-06-14T01:15:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4995. 2026-06-14T01:20:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4996. 2026-06-14T01:20:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4997. 2026-06-14T01:20:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4998. 2026-06-14T01:20:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4999. 2026-06-14T01:20:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5000. 2026-06-14T01:25:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5001. 2026-06-14T01:25:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5002. 2026-06-14T01:25:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5003. 2026-06-14T01:25:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5004. 2026-06-14T01:25:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5005. 2026-06-14T01:30:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5006. 2026-06-14T01:30:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5007. 2026-06-14T01:30:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5008. 2026-06-14T01:30:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5009. 2026-06-14T01:30:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5010. 2026-06-14T01:32:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5011. 2026-06-14T01:32:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5012. 2026-06-14T01:32:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5013. 2026-06-14T01:32:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5014. 2026-06-14T01:32:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5015. 2026-06-14T01:35:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5016. 2026-06-14T01:35:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5017. 2026-06-14T01:35:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5018. 2026-06-14T01:35:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5019. 2026-06-14T01:35:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5020. 2026-06-14T01:40:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5021. 2026-06-14T01:40:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5022. 2026-06-14T01:40:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5023. 2026-06-14T01:40:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5024. 2026-06-14T01:41:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5025. 2026-06-14T01:43:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5026. 2026-06-14T01:43:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5027. 2026-06-14T01:43:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5028. 2026-06-14T01:43:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5029. 2026-06-14T01:43:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5030. 2026-06-14T01:47:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5031. 2026-06-14T01:47:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5032. 2026-06-14T01:47:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5033. 2026-06-14T01:47:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5034. 2026-06-14T01:47:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5035. 2026-06-14T01:48:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5036. 2026-06-14T01:48:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5037. 2026-06-14T01:48:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5038. 2026-06-14T01:48:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5039. 2026-06-14T01:48:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5040. 2026-06-14T01:53:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5041. 2026-06-14T01:53:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5042. 2026-06-14T01:53:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5043. 2026-06-14T01:53:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5044. 2026-06-14T01:54:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5045. 2026-06-14T01:55:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5046. 2026-06-14T01:55:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5047. 2026-06-14T01:55:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5048. 2026-06-14T01:55:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5049. 2026-06-14T01:56:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5050. 2026-06-14T01:58:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5051. 2026-06-14T01:58:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5052. 2026-06-14T01:58:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5053. 2026-06-14T01:58:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5054. 2026-06-14T01:59:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5055. 2026-06-14T02:01:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5056. 2026-06-14T02:01:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5057. 2026-06-14T02:01:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5058. 2026-06-14T02:01:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5059. 2026-06-14T02:01:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5060. 2026-06-14T02:05:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5061. 2026-06-14T02:05:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5062. 2026-06-14T02:05:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5063. 2026-06-14T02:05:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5064. 2026-06-14T02:05:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5065. 2026-06-14T02:05:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5066. 2026-06-14T02:05:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5067. 2026-06-14T02:05:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5068. 2026-06-14T02:05:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5069. 2026-06-14T02:06:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5070. 2026-06-14T02:08:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5071. 2026-06-14T02:08:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5072. 2026-06-14T02:08:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5073. 2026-06-14T02:08:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5074. 2026-06-14T02:08:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5075. 2026-06-14T02:11:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5076. 2026-06-14T02:11:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5077. 2026-06-14T02:11:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5078. 2026-06-14T02:11:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5079. 2026-06-14T02:11:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5080. 2026-06-14T02:14:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5081. 2026-06-14T02:14:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5082. 2026-06-14T02:14:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5083. 2026-06-14T02:14:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5084. 2026-06-14T02:14:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5085. 2026-06-14T02:15:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5086. 2026-06-14T02:15:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5087. 2026-06-14T02:15:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5088. 2026-06-14T02:15:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5089. 2026-06-14T02:16:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5090. 2026-06-14T02:16:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5091. 2026-06-14T02:16:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5092. 2026-06-14T02:16:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5093. 2026-06-14T02:16:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5094. 2026-06-14T02:16:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5095. 2026-06-14T02:20:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5096. 2026-06-14T02:20:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5097. 2026-06-14T02:20:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5098. 2026-06-14T02:20:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5099. 2026-06-14T02:20:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5100. 2026-06-14T02:24:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5101. 2026-06-14T02:24:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5102. 2026-06-14T02:24:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5103. 2026-06-14T02:24:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5104. 2026-06-14T02:24:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5105. 2026-06-14T02:26:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5106. 2026-06-14T02:26:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5107. 2026-06-14T02:26:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5108. 2026-06-14T02:26:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5109. 2026-06-14T02:26:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5110. 2026-06-14T02:29:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5111. 2026-06-14T02:29:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5112. 2026-06-14T02:29:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5113. 2026-06-14T02:29:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5114. 2026-06-14T02:29:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5115. 2026-06-14T02:33:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5116. 2026-06-14T02:33:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5117. 2026-06-14T02:33:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5118. 2026-06-14T02:33:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5119. 2026-06-14T02:34:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5120. 2026-06-14T02:35:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5121. 2026-06-14T02:35:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5122. 2026-06-14T02:35:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5123. 2026-06-14T02:35:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5124. 2026-06-14T02:36:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5125. 2026-06-14T02:41:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5126. 2026-06-14T02:41:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5127. 2026-06-14T02:41:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5128. 2026-06-14T02:41:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5129. 2026-06-14T02:41:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5130. 2026-06-14T02:43:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5131. 2026-06-14T02:43:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5132. 2026-06-14T02:43:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5133. 2026-06-14T02:43:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5134. 2026-06-14T02:43:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5135. 2026-06-14T02:47:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5136. 2026-06-14T02:47:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5137. 2026-06-14T02:47:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5138. 2026-06-14T02:47:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5139. 2026-06-14T02:47:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5140. 2026-06-14T02:50:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5141. 2026-06-14T02:50:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5142. 2026-06-14T02:50:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5143. 2026-06-14T02:50:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5144. 2026-06-14T02:50:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5145. 2026-06-14T02:50:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5146. 2026-06-14T02:50:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5147. 2026-06-14T02:50:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5148. 2026-06-14T02:50:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5149. 2026-06-14T02:51:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5150. 2026-06-14T02:55:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5151. 2026-06-14T02:55:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5152. 2026-06-14T02:55:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5153. 2026-06-14T02:55:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5154. 2026-06-14T02:55:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5155. 2026-06-14T02:57:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5156. 2026-06-14T02:57:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5157. 2026-06-14T02:57:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5158. 2026-06-14T02:57:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5159. 2026-06-14T02:57:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5160. 2026-06-14T03:00:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5161. 2026-06-14T03:00:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5162. 2026-06-14T03:00:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5163. 2026-06-14T03:00:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5164. 2026-06-14T03:00:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5165. 2026-06-14T03:04:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5166. 2026-06-14T03:04:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5167. 2026-06-14T03:04:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5168. 2026-06-14T03:04:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5169. 2026-06-14T03:05:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5170. 2026-06-14T03:06:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5171. 2026-06-14T03:06:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5172. 2026-06-14T03:06:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5173. 2026-06-14T03:06:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5174. 2026-06-14T03:06:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5175. 2026-06-14T03:07:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5176. 2026-06-14T03:07:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5177. 2026-06-14T03:07:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5178. 2026-06-14T03:07:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5179. 2026-06-14T03:07:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5180. 2026-06-14T03:10:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5181. 2026-06-14T03:10:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5182. 2026-06-14T03:10:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5183. 2026-06-14T03:10:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5184. 2026-06-14T03:10:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5185. 2026-06-14T03:13:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5186. 2026-06-14T03:13:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5187. 2026-06-14T03:13:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5188. 2026-06-14T03:13:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5189. 2026-06-14T03:13:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5190. 2026-06-14T03:15:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5191. 2026-06-14T03:15:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5192. 2026-06-14T03:15:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5193. 2026-06-14T03:15:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5194. 2026-06-14T03:15:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5195. 2026-06-14T03:15:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5196. 2026-06-14T03:15:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5197. 2026-06-14T03:15:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5198. 2026-06-14T03:15:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5199. 2026-06-14T03:15:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5200. 2026-06-14T03:16:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5201. 2026-06-14T03:16:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5202. 2026-06-14T03:16:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5203. 2026-06-14T03:16:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5204. 2026-06-14T03:16:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5205. 2026-06-14T03:21:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5206. 2026-06-14T03:21:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5207. 2026-06-14T03:21:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5208. 2026-06-14T03:21:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5209. 2026-06-14T03:21:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5210. 2026-06-14T03:22:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5211. 2026-06-14T03:22:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5212. 2026-06-14T03:22:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5213. 2026-06-14T03:22:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5214. 2026-06-14T03:22:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5215. 2026-06-14T03:27:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5216. 2026-06-14T03:27:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5217. 2026-06-14T03:27:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5218. 2026-06-14T03:27:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5219. 2026-06-14T03:27:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5220. 2026-06-14T03:27:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5221. 2026-06-14T03:27:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5222. 2026-06-14T03:27:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5223. 2026-06-14T03:27:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5224. 2026-06-14T03:28:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5225. 2026-06-14T03:28:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5226. 2026-06-14T03:28:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5227. 2026-06-14T03:28:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5228. 2026-06-14T03:28:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5229. 2026-06-14T03:29:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5230. 2026-06-14T03:31:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5231. 2026-06-14T03:31:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5232. 2026-06-14T03:31:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5233. 2026-06-14T03:31:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5234. 2026-06-14T03:31:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5235. 2026-06-14T03:32:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5236. 2026-06-14T03:32:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5237. 2026-06-14T03:32:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5238. 2026-06-14T03:32:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5239. 2026-06-14T03:33:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5240. 2026-06-14T03:38:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5241. 2026-06-14T03:38:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5242. 2026-06-14T03:38:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5243. 2026-06-14T03:38:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5244. 2026-06-14T03:38:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5245. 2026-06-14T03:42:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5246. 2026-06-14T03:42:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5247. 2026-06-14T03:42:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5248. 2026-06-14T03:42:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5249. 2026-06-14T03:42:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5250. 2026-06-14T03:47:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5251. 2026-06-14T03:47:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5252. 2026-06-14T03:47:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5253. 2026-06-14T03:47:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5254. 2026-06-14T03:48:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5255. 2026-06-14T03:53:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5256. 2026-06-14T03:53:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5257. 2026-06-14T03:53:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5258. 2026-06-14T03:53:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5259. 2026-06-14T03:53:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5260. 2026-06-14T03:55:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5261. 2026-06-14T03:55:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5262. 2026-06-14T03:55:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5263. 2026-06-14T03:55:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5264. 2026-06-14T03:55:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5265. 2026-06-14T04:19:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5266. 2026-06-14T04:19:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5267. 2026-06-14T04:19:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5268. 2026-06-14T04:19:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5269. 2026-06-14T04:20:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5270. 2026-06-14T04:20:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5271. 2026-06-14T04:20:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5272. 2026-06-14T04:20:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5273. 2026-06-14T04:20:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5274. 2026-06-14T04:20:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5275. 2026-06-14T04:24:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5276. 2026-06-14T04:24:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5277. 2026-06-14T04:24:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5278. 2026-06-14T04:24:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5279. 2026-06-14T04:24:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5280. 2026-06-14T04:27:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5281. 2026-06-14T04:27:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5282. 2026-06-14T04:27:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5283. 2026-06-14T04:27:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5284. 2026-06-14T04:27:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5285. 2026-06-14T04:29:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5286. 2026-06-14T04:29:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5287. 2026-06-14T04:29:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5288. 2026-06-14T04:29:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5289. 2026-06-14T04:29:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5290. 2026-06-14T04:29:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5291. 2026-06-14T04:29:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5292. 2026-06-14T04:29:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5293. 2026-06-14T04:29:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5294. 2026-06-14T04:29:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5295. 2026-06-14T04:31:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5296. 2026-06-14T04:31:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5297. 2026-06-14T04:31:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5298. 2026-06-14T04:31:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5299. 2026-06-14T04:31:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5300. 2026-06-14T04:35:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5301. 2026-06-14T04:36:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5302. 2026-06-14T04:36:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5303. 2026-06-14T04:36:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5304. 2026-06-14T04:36:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5305. 2026-06-14T04:39:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5306. 2026-06-14T04:39:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5307. 2026-06-14T04:39:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5308. 2026-06-14T04:39:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5309. 2026-06-14T04:39:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5310. 2026-06-14T04:40:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5311. 2026-06-14T04:40:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5312. 2026-06-14T04:40:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  5313. 2026-06-14T04:40:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5314. 2026-06-14T04:41:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5315. 2026-06-14T04:41:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  5316. 2026-06-14T05:06:22Z ERR Unable to establish connection with Cloudflare edge error="TLS handshake with edge error: read tcp 192.168.0.106:57168->198.41.200.63:7844: i/o timeout" connIndex=0 event=0 ip=198.41.200.63
  5317. 2026-06-14T05:06:22Z ERR Serve tunnel error error="TLS handshake with edge error: read tcp 192.168.0.106:57168->198.41.200.63:7844: i/o timeout" connIndex=0 event=0 ip=198.41.200.63
  5318. 2026-06-14T05:06:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  5319. 2026-06-14T05:38:04Z ERR Connection terminated error="TLS handshake with edge error: read tcp 192.168.0.106:57168->198.41.200.63:7844: i/o timeout" connIndex=0
  5320. 2026-06-14T09:01:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5321. 2026-06-14T09:01:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5322. 2026-06-14T09:01:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5323. 2026-06-14T09:01:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5324. 2026-06-14T09:01:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5325. 2026-06-14T12:07:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5326. 2026-06-14T12:07:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5327. 2026-06-14T12:07:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5328. 2026-06-14T12:07:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5329. 2026-06-14T12:41:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5330. 2026-06-14T16:33:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5331. 2026-06-14T16:33:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5332. 2026-06-14T16:33:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5333. 2026-06-14T16:33:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5334. 2026-06-14T16:33:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5335. 2026-06-15T02:13:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5336. 2026-06-15T02:13:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5337. 2026-06-15T02:13:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5338. 2026-06-15T02:13:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5339. 2026-06-15T02:14:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5340. 2026-06-15T02:18:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5341. 2026-06-15T02:18:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5342. 2026-06-15T02:18:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5343. 2026-06-15T02:18:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5344. 2026-06-15T02:19:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5345. 2026-06-15T02:21:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5346. 2026-06-15T02:21:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5347. 2026-06-15T02:21:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5348. 2026-06-15T02:21:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5349. 2026-06-15T02:21:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5350. 2026-06-15T02:26:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5351. 2026-06-15T02:26:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5352. 2026-06-15T02:26:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5353. 2026-06-15T02:26:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5354. 2026-06-15T02:26:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5355. 2026-06-15T02:27:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5356. 2026-06-15T02:27:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5357. 2026-06-15T02:27:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5358. 2026-06-15T02:27:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5359. 2026-06-15T02:27:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5360. 2026-06-15T02:30:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5361. 2026-06-15T02:30:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5362. 2026-06-15T02:30:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5363. 2026-06-15T02:30:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5364. 2026-06-15T02:30:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5365. 2026-06-15T02:34:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5366. 2026-06-15T02:34:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5367. 2026-06-15T02:34:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5368. 2026-06-15T02:34:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5369. 2026-06-15T02:35:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5370. 2026-06-15T02:37:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5371. 2026-06-15T02:37:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5372. 2026-06-15T02:37:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5373. 2026-06-15T02:37:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5374. 2026-06-15T02:38:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5375. 2026-06-15T02:41:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5376. 2026-06-15T02:41:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5377. 2026-06-15T02:41:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5378. 2026-06-15T02:41:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5379. 2026-06-15T02:42:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5380. 2026-06-15T02:45:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5381. 2026-06-15T02:45:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5382. 2026-06-15T02:45:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5383. 2026-06-15T02:45:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5384. 2026-06-15T02:46:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5385. 2026-06-15T02:46:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5386. 2026-06-15T02:46:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5387. 2026-06-15T02:46:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5388. 2026-06-15T02:46:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5389. 2026-06-15T02:46:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5390. 2026-06-15T02:48:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5391. 2026-06-15T02:48:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5392. 2026-06-15T02:48:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5393. 2026-06-15T02:48:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5394. 2026-06-15T02:48:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5395. 2026-06-15T02:49:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5396. 2026-06-15T02:49:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5397. 2026-06-15T02:49:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5398. 2026-06-15T02:49:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5399. 2026-06-15T02:49:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5400. 2026-06-15T02:50:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5401. 2026-06-15T02:50:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5402. 2026-06-15T02:50:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5403. 2026-06-15T02:50:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5404. 2026-06-15T02:50:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5405. 2026-06-15T02:54:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5406. 2026-06-15T02:54:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5407. 2026-06-15T02:54:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5408. 2026-06-15T02:54:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5409. 2026-06-15T02:54:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5410. 2026-06-15T03:00:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5411. 2026-06-15T03:00:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5412. 2026-06-15T03:00:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5413. 2026-06-15T03:00:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5414. 2026-06-15T03:00:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5415. 2026-06-15T03:04:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5416. 2026-06-15T03:04:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5417. 2026-06-15T03:04:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5418. 2026-06-15T03:04:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5419. 2026-06-15T03:04:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5420. 2026-06-15T03:08:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5421. 2026-06-15T03:08:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5422. 2026-06-15T03:08:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5423. 2026-06-15T03:08:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5424. 2026-06-15T03:08:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5425. 2026-06-15T03:08:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5426. 2026-06-15T03:08:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5427. 2026-06-15T03:08:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5428. 2026-06-15T03:08:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5429. 2026-06-15T03:08:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5430. 2026-06-15T03:13:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5431. 2026-06-15T03:13:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5432. 2026-06-15T03:13:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5433. 2026-06-15T03:13:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5434. 2026-06-15T03:13:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5435. 2026-06-15T03:17:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5436. 2026-06-15T03:17:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5437. 2026-06-15T03:17:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5438. 2026-06-15T03:17:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5439. 2026-06-15T03:17:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5440. 2026-06-15T03:19:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5441. 2026-06-15T03:19:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5442. 2026-06-15T03:19:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5443. 2026-06-15T03:19:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5444. 2026-06-15T03:19:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5445. 2026-06-15T03:23:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5446. 2026-06-15T03:23:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5447. 2026-06-15T03:23:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5448. 2026-06-15T03:23:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5449. 2026-06-15T03:23:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5450. 2026-06-15T03:26:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5451. 2026-06-15T03:26:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5452. 2026-06-15T03:26:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5453. 2026-06-15T03:26:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5454. 2026-06-15T03:27:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5455. 2026-06-15T03:29:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5456. 2026-06-15T03:29:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5457. 2026-06-15T03:29:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5458. 2026-06-15T03:29:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5459. 2026-06-15T03:29:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5460. 2026-06-15T03:34:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5461. 2026-06-15T03:34:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5462. 2026-06-15T03:34:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5463. 2026-06-15T03:34:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5464. 2026-06-15T03:34:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5465. 2026-06-15T03:35:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5466. 2026-06-15T03:35:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5467. 2026-06-15T03:35:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5468. 2026-06-15T03:35:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5469. 2026-06-15T03:35:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5470. 2026-06-15T03:40:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5471. 2026-06-15T03:40:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5472. 2026-06-15T03:40:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5473. 2026-06-15T03:40:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5474. 2026-06-15T03:40:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5475. 2026-06-15T03:41:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5476. 2026-06-15T03:41:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5477. 2026-06-15T03:41:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5478. 2026-06-15T03:41:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5479. 2026-06-15T03:41:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5480. 2026-06-15T03:45:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5481. 2026-06-15T03:45:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5482. 2026-06-15T03:45:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5483. 2026-06-15T03:45:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5484. 2026-06-15T03:46:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5485. 2026-06-15T03:48:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5486. 2026-06-15T03:48:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5487. 2026-06-15T03:48:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5488. 2026-06-15T03:48:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5489. 2026-06-15T03:48:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5490. 2026-06-15T03:53:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5491. 2026-06-15T03:53:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5492. 2026-06-15T03:53:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5493. 2026-06-15T03:53:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5494. 2026-06-15T03:53:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5495. 2026-06-15T03:58:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5496. 2026-06-15T03:58:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5497. 2026-06-15T03:58:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5498. 2026-06-15T03:58:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5499. 2026-06-15T03:59:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5500. 2026-06-15T04:00:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5501. 2026-06-15T04:00:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5502. 2026-06-15T04:00:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5503. 2026-06-15T04:00:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5504. 2026-06-15T04:00:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5505. 2026-06-15T04:05:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5506. 2026-06-15T04:05:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5507. 2026-06-15T04:05:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5508. 2026-06-15T04:05:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5509. 2026-06-15T04:05:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5510. 2026-06-15T04:10:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5511. 2026-06-15T04:10:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5512. 2026-06-15T04:10:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5513. 2026-06-15T04:10:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5514. 2026-06-15T04:10:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5515. 2026-06-15T04:11:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5516. 2026-06-15T04:11:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5517. 2026-06-15T04:11:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5518. 2026-06-15T04:11:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5519. 2026-06-15T04:11:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5520. 2026-06-15T04:14:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5521. 2026-06-15T04:14:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5522. 2026-06-15T04:14:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5523. 2026-06-15T04:14:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5524. 2026-06-15T04:15:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5525. 2026-06-15T04:17:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5526. 2026-06-15T04:17:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5527. 2026-06-15T04:17:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5528. 2026-06-15T04:17:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5529. 2026-06-15T04:17:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5530. 2026-06-15T04:20:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5531. 2026-06-15T04:20:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5532. 2026-06-15T04:20:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5533. 2026-06-15T04:20:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5534. 2026-06-15T04:20:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5535. 2026-06-15T04:22:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5536. 2026-06-15T04:22:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5537. 2026-06-15T04:22:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5538. 2026-06-15T04:22:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5539. 2026-06-15T04:22:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5540. 2026-06-15T04:26:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5541. 2026-06-15T04:26:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5542. 2026-06-15T04:26:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5543. 2026-06-15T04:26:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5544. 2026-06-15T04:26:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5545. 2026-06-15T04:27:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5546. 2026-06-15T04:27:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5547. 2026-06-15T04:27:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5548. 2026-06-15T04:27:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5549. 2026-06-15T04:28:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5550. 2026-06-15T04:29:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5551. 2026-06-15T04:29:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5552. 2026-06-15T04:29:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5553. 2026-06-15T04:29:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5554. 2026-06-15T04:29:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5555. 2026-06-15T04:30:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5556. 2026-06-15T04:30:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5557. 2026-06-15T04:30:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5558. 2026-06-15T04:30:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5559. 2026-06-15T04:30:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5560. 2026-06-15T04:35:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5561. 2026-06-15T04:35:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5562. 2026-06-15T04:35:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5563. 2026-06-15T04:35:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5564. 2026-06-15T04:35:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5565. 2026-06-15T04:39:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5566. 2026-06-15T04:39:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5567. 2026-06-15T04:39:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5568. 2026-06-15T04:39:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5569. 2026-06-15T04:40:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5570. 2026-06-15T04:43:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5571. 2026-06-15T04:43:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5572. 2026-06-15T04:43:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5573. 2026-06-15T04:43:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5574. 2026-06-15T04:43:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5575. 2026-06-15T04:45:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5576. 2026-06-15T04:45:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5577. 2026-06-15T04:45:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5578. 2026-06-15T04:45:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5579. 2026-06-15T04:46:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5580. 2026-06-15T04:50:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5581. 2026-06-15T04:50:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5582. 2026-06-15T04:50:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5583. 2026-06-15T04:50:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5584. 2026-06-15T04:50:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5585. 2026-06-15T04:51:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5586. 2026-06-15T04:51:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5587. 2026-06-15T04:51:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5588. 2026-06-15T04:51:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5589. 2026-06-15T04:51:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5590. 2026-06-15T04:54:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5591. 2026-06-15T04:54:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5592. 2026-06-15T04:54:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5593. 2026-06-15T04:54:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5594. 2026-06-15T04:55:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5595. 2026-06-15T04:57:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5596. 2026-06-15T04:57:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5597. 2026-06-15T04:57:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5598. 2026-06-15T04:57:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5599. 2026-06-15T04:58:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5600. 2026-06-15T05:03:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5601. 2026-06-15T05:03:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5602. 2026-06-15T05:03:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5603. 2026-06-15T05:03:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5604. 2026-06-15T05:03:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5605. 2026-06-15T05:07:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5606. 2026-06-15T05:07:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5607. 2026-06-15T05:07:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5608. 2026-06-15T05:07:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5609. 2026-06-15T05:07:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5610. 2026-06-15T05:08:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5611. 2026-06-15T05:08:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5612. 2026-06-15T05:08:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5613. 2026-06-15T05:08:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5614. 2026-06-15T05:09:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5615. 2026-06-15T05:14:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5616. 2026-06-15T05:14:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5617. 2026-06-15T05:14:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5618. 2026-06-15T05:14:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5619. 2026-06-15T05:14:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5620. 2026-06-15T05:16:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5621. 2026-06-15T05:16:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5622. 2026-06-15T05:16:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5623. 2026-06-15T05:16:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5624. 2026-06-15T05:17:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5625. 2026-06-15T05:22:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5626. 2026-06-15T05:22:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5627. 2026-06-15T05:22:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5628. 2026-06-15T05:22:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5629. 2026-06-15T05:22:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5630. 2026-06-15T05:24:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5631. 2026-06-15T05:24:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5632. 2026-06-15T05:24:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5633. 2026-06-15T05:24:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5634. 2026-06-15T05:24:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5635. 2026-06-15T05:28:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5636. 2026-06-15T05:28:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5637. 2026-06-15T05:28:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5638. 2026-06-15T05:28:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5639. 2026-06-15T05:28:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5640. 2026-06-15T05:32:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5641. 2026-06-15T05:32:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5642. 2026-06-15T05:32:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5643. 2026-06-15T05:32:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5644. 2026-06-15T05:33:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5645. 2026-06-15T05:34:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5646. 2026-06-15T05:34:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5647. 2026-06-15T05:34:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5648. 2026-06-15T05:34:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5649. 2026-06-15T05:34:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5650. 2026-06-15T05:35:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5651. 2026-06-15T05:35:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5652. 2026-06-15T05:35:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5653. 2026-06-15T05:35:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5654. 2026-06-15T05:35:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5655. 2026-06-15T05:35:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5656. 2026-06-15T05:35:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5657. 2026-06-15T05:35:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5658. 2026-06-15T05:35:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5659. 2026-06-15T05:35:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5660. 2026-06-15T05:36:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5661. 2026-06-15T05:36:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5662. 2026-06-15T05:36:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5663. 2026-06-15T05:36:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5664. 2026-06-15T05:37:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5665. 2026-06-15T05:41:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5666. 2026-06-15T05:41:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5667. 2026-06-15T05:41:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5668. 2026-06-15T05:41:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5669. 2026-06-15T05:41:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5670. 2026-06-15T05:46:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5671. 2026-06-15T05:46:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5672. 2026-06-15T05:46:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5673. 2026-06-15T05:46:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5674. 2026-06-15T05:46:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5675. 2026-06-15T05:50:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5676. 2026-06-15T05:50:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5677. 2026-06-15T05:51:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5678. 2026-06-15T05:51:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5679. 2026-06-15T05:51:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5680. 2026-06-15T05:54:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5681. 2026-06-15T05:54:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5682. 2026-06-15T05:54:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5683. 2026-06-15T05:54:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5684. 2026-06-15T05:54:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5685. 2026-06-15T05:55:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5686. 2026-06-15T05:55:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5687. 2026-06-15T05:55:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5688. 2026-06-15T05:55:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5689. 2026-06-15T05:55:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5690. 2026-06-15T05:57:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5691. 2026-06-15T05:57:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5692. 2026-06-15T05:57:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5693. 2026-06-15T05:57:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5694. 2026-06-15T05:57:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5695. 2026-06-15T05:57:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5696. 2026-06-15T05:57:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5697. 2026-06-15T05:57:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5698. 2026-06-15T05:57:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5699. 2026-06-15T05:57:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5700. 2026-06-15T06:02:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5701. 2026-06-15T06:02:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5702. 2026-06-15T06:02:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5703. 2026-06-15T06:02:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5704. 2026-06-15T06:03:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5705. 2026-06-15T06:03:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5706. 2026-06-15T06:03:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5707. 2026-06-15T06:03:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5708. 2026-06-15T06:03:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5709. 2026-06-15T06:03:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5710. 2026-06-15T06:07:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5711. 2026-06-15T06:07:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5712. 2026-06-15T06:07:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5713. 2026-06-15T06:07:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5714. 2026-06-15T06:07:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5715. 2026-06-15T06:10:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5716. 2026-06-15T06:10:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5717. 2026-06-15T06:10:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5718. 2026-06-15T06:10:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5719. 2026-06-15T06:11:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5720. 2026-06-15T06:11:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5721. 2026-06-15T06:11:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5722. 2026-06-15T06:11:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5723. 2026-06-15T06:11:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5724. 2026-06-15T06:11:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5725. 2026-06-15T06:13:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5726. 2026-06-15T06:13:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5727. 2026-06-15T06:13:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5728. 2026-06-15T06:13:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5729. 2026-06-15T06:13:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5730. 2026-06-15T06:18:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5731. 2026-06-15T06:18:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5732. 2026-06-15T06:18:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5733. 2026-06-15T06:18:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5734. 2026-06-15T06:18:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5735. 2026-06-15T06:23:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5736. 2026-06-15T06:23:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5737. 2026-06-15T06:23:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5738. 2026-06-15T06:23:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5739. 2026-06-15T06:23:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5740. 2026-06-15T06:24:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5741. 2026-06-15T06:25:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5742. 2026-06-15T06:25:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5743. 2026-06-15T06:25:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5744. 2026-06-15T06:25:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5745. 2026-06-15T06:27:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5746. 2026-06-15T06:27:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5747. 2026-06-15T06:27:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5748. 2026-06-15T06:27:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5749. 2026-06-15T06:28:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5750. 2026-06-15T06:32:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5751. 2026-06-15T06:32:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5752. 2026-06-15T06:32:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5753. 2026-06-15T06:32:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5754. 2026-06-15T06:32:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5755. 2026-06-15T06:33:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5756. 2026-06-15T06:33:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5757. 2026-06-15T06:33:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5758. 2026-06-15T06:33:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5759. 2026-06-15T06:33:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5760. 2026-06-15T06:35:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5761. 2026-06-15T06:35:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5762. 2026-06-15T06:35:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5763. 2026-06-15T06:35:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5764. 2026-06-15T06:36:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5765. 2026-06-15T06:40:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5766. 2026-06-15T06:40:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5767. 2026-06-15T06:40:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5768. 2026-06-15T06:40:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5769. 2026-06-15T06:41:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5770. 2026-06-15T06:43:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5771. 2026-06-15T06:43:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5772. 2026-06-15T06:43:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5773. 2026-06-15T06:43:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5774. 2026-06-15T06:43:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5775. 2026-06-15T06:48:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5776. 2026-06-15T06:48:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5777. 2026-06-15T06:48:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5778. 2026-06-15T06:48:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5779. 2026-06-15T06:48:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5780. 2026-06-15T06:51:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5781. 2026-06-15T06:51:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5782. 2026-06-15T06:51:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5783. 2026-06-15T06:51:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5784. 2026-06-15T06:51:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5785. 2026-06-15T06:54:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5786. 2026-06-15T06:54:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5787. 2026-06-15T06:54:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5788. 2026-06-15T06:54:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5789. 2026-06-15T06:54:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5790. 2026-06-15T06:58:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5791. 2026-06-15T06:58:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5792. 2026-06-15T06:58:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5793. 2026-06-15T06:58:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5794. 2026-06-15T06:58:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5795. 2026-06-15T06:58:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5796. 2026-06-15T06:58:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5797. 2026-06-15T06:58:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5798. 2026-06-15T06:58:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5799. 2026-06-15T06:58:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5800. 2026-06-15T06:59:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5801. 2026-06-15T06:59:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5802. 2026-06-15T06:59:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5803. 2026-06-15T06:59:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5804. 2026-06-15T06:59:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5805. 2026-06-15T07:02:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5806. 2026-06-15T07:03:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5807. 2026-06-15T07:03:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5808. 2026-06-15T07:03:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5809. 2026-06-15T07:03:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5810. 2026-06-15T07:06:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5811. 2026-06-15T07:06:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5812. 2026-06-15T07:06:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5813. 2026-06-15T07:06:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5814. 2026-06-15T07:07:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5815. 2026-06-15T07:09:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5816. 2026-06-15T07:09:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5817. 2026-06-15T07:09:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5818. 2026-06-15T07:09:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5819. 2026-06-15T07:10:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5820. 2026-06-15T07:13:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5821. 2026-06-15T07:13:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5822. 2026-06-15T07:13:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5823. 2026-06-15T07:13:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5824. 2026-06-15T07:14:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5825. 2026-06-15T07:16:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5826. 2026-06-15T07:16:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5827. 2026-06-15T07:16:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5828. 2026-06-15T07:16:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5829. 2026-06-15T07:17:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5830. 2026-06-15T07:19:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5831. 2026-06-15T07:19:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5832. 2026-06-15T07:19:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5833. 2026-06-15T07:19:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5834. 2026-06-15T07:19:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5835. 2026-06-15T07:20:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5836. 2026-06-15T07:20:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5837. 2026-06-15T07:20:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5838. 2026-06-15T07:20:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5839. 2026-06-15T07:20:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5840. 2026-06-15T07:24:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5841. 2026-06-15T07:24:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5842. 2026-06-15T07:24:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5843. 2026-06-15T07:24:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5844. 2026-06-15T07:24:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5845. 2026-06-15T07:29:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5846. 2026-06-15T07:29:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5847. 2026-06-15T07:29:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5848. 2026-06-15T07:29:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5849. 2026-06-15T07:29:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5850. 2026-06-15T07:30:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5851. 2026-06-15T07:30:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5852. 2026-06-15T07:30:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5853. 2026-06-15T07:30:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5854. 2026-06-15T07:31:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5855. 2026-06-15T07:33:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5856. 2026-06-15T07:33:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5857. 2026-06-15T07:33:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5858. 2026-06-15T07:33:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5859. 2026-06-15T07:33:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5860. 2026-06-15T07:34:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5861. 2026-06-15T07:34:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5862. 2026-06-15T07:34:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5863. 2026-06-15T07:34:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5864. 2026-06-15T07:34:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5865. 2026-06-15T07:36:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5866. 2026-06-15T07:36:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5867. 2026-06-15T07:36:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5868. 2026-06-15T07:36:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5869. 2026-06-15T07:36:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5870. 2026-06-15T07:40:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5871. 2026-06-15T07:40:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5872. 2026-06-15T07:40:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5873. 2026-06-15T07:40:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5874. 2026-06-15T07:40:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5875. 2026-06-15T07:41:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5876. 2026-06-15T07:41:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5877. 2026-06-15T07:41:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5878. 2026-06-15T07:41:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5879. 2026-06-15T07:41:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5880. 2026-06-15T07:46:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5881. 2026-06-15T07:46:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5882. 2026-06-15T07:46:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5883. 2026-06-15T07:46:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5884. 2026-06-15T07:46:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5885. 2026-06-15T07:49:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5886. 2026-06-15T07:49:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5887. 2026-06-15T07:49:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5888. 2026-06-15T07:49:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5889. 2026-06-15T07:49:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5890. 2026-06-15T07:52:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5891. 2026-06-15T07:52:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5892. 2026-06-15T07:52:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5893. 2026-06-15T07:52:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5894. 2026-06-15T07:52:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5895. 2026-06-15T07:53:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5896. 2026-06-15T07:53:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5897. 2026-06-15T07:53:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5898. 2026-06-15T07:53:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5899. 2026-06-15T07:53:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5900. 2026-06-15T07:56:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5901. 2026-06-15T07:56:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5902. 2026-06-15T07:56:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5903. 2026-06-15T07:56:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5904. 2026-06-15T07:57:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5905. 2026-06-15T07:59:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5906. 2026-06-15T08:00:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5907. 2026-06-15T08:00:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5908. 2026-06-15T08:00:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5909. 2026-06-15T08:00:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5910. 2026-06-15T08:04:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5911. 2026-06-15T08:04:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5912. 2026-06-15T08:04:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5913. 2026-06-15T08:04:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5914. 2026-06-15T08:05:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5915. 2026-06-15T08:08:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5916. 2026-06-15T08:08:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5917. 2026-06-15T08:08:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5918. 2026-06-15T08:08:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5919. 2026-06-15T08:08:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5920. 2026-06-15T08:12:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5921. 2026-06-15T08:12:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5922. 2026-06-15T08:12:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5923. 2026-06-15T08:12:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5924. 2026-06-15T08:12:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5925. 2026-06-15T08:13:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5926. 2026-06-15T08:13:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5927. 2026-06-15T08:13:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5928. 2026-06-15T08:13:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5929. 2026-06-15T08:13:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5930. 2026-06-15T08:17:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5931. 2026-06-15T08:17:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5932. 2026-06-15T08:17:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5933. 2026-06-15T08:17:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5934. 2026-06-15T08:18:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5935. 2026-06-15T08:21:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5936. 2026-06-15T08:21:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5937. 2026-06-15T08:21:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5938. 2026-06-15T08:21:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5939. 2026-06-15T08:21:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5940. 2026-06-15T08:22:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5941. 2026-06-15T08:22:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5942. 2026-06-15T08:22:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5943. 2026-06-15T08:22:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5944. 2026-06-15T08:22:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5945. 2026-06-15T08:25:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5946. 2026-06-15T08:25:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5947. 2026-06-15T08:25:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5948. 2026-06-15T08:25:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5949. 2026-06-15T08:25:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5950. 2026-06-15T08:26:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5951. 2026-06-15T08:26:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5952. 2026-06-15T08:26:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5953. 2026-06-15T08:26:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5954. 2026-06-15T08:26:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5955. 2026-06-15T08:29:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5956. 2026-06-15T08:29:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5957. 2026-06-15T08:29:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5958. 2026-06-15T08:29:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5959. 2026-06-15T08:29:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5960. 2026-06-15T08:33:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5961. 2026-06-15T08:33:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5962. 2026-06-15T08:33:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5963. 2026-06-15T08:33:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5964. 2026-06-15T08:33:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5965. 2026-06-15T08:37:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5966. 2026-06-15T08:37:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5967. 2026-06-15T08:37:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5968. 2026-06-15T08:37:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5969. 2026-06-15T08:37:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5970. 2026-06-15T08:38:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5971. 2026-06-15T08:38:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5972. 2026-06-15T08:38:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5973. 2026-06-15T08:38:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5974. 2026-06-15T08:39:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5975. 2026-06-15T08:39:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5976. 2026-06-15T08:39:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5977. 2026-06-15T08:39:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5978. 2026-06-15T08:39:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5979. 2026-06-15T08:39:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5980. 2026-06-15T08:40:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5981. 2026-06-15T08:40:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5982. 2026-06-15T08:40:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5983. 2026-06-15T08:40:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5984. 2026-06-15T08:40:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5985. 2026-06-15T08:41:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5986. 2026-06-15T08:41:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5987. 2026-06-15T08:41:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5988. 2026-06-15T08:41:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5989. 2026-06-15T08:42:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5990. 2026-06-15T08:44:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5991. 2026-06-15T08:44:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5992. 2026-06-15T08:45:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5993. 2026-06-15T08:45:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5994. 2026-06-15T08:45:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  5995. 2026-06-15T08:49:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  5996. 2026-06-15T08:49:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  5997. 2026-06-15T08:49:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  5998. 2026-06-15T08:49:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  5999. 2026-06-15T08:49:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6000. 2026-06-15T08:53:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6001. 2026-06-15T08:53:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6002. 2026-06-15T08:53:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6003. 2026-06-15T08:53:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6004. 2026-06-15T08:53:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6005. 2026-06-15T08:58:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6006. 2026-06-15T08:58:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6007. 2026-06-15T08:58:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6008. 2026-06-15T08:58:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6009. 2026-06-15T08:58:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6010. 2026-06-15T09:00:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6011. 2026-06-15T09:00:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6012. 2026-06-15T09:00:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6013. 2026-06-15T09:00:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6014. 2026-06-15T09:00:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6015. 2026-06-15T09:02:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6016. 2026-06-15T09:02:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6017. 2026-06-15T09:02:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6018. 2026-06-15T09:02:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6019. 2026-06-15T09:02:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6020. 2026-06-15T09:06:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6021. 2026-06-15T09:06:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6022. 2026-06-15T09:06:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6023. 2026-06-15T09:06:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6024. 2026-06-15T09:06:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6025. 2026-06-15T09:07:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6026. 2026-06-15T09:07:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6027. 2026-06-15T09:07:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6028. 2026-06-15T09:07:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6029. 2026-06-15T09:08:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6030. 2026-06-15T09:09:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6031. 2026-06-15T09:09:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6032. 2026-06-15T09:09:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6033. 2026-06-15T09:09:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6034. 2026-06-15T09:09:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6035. 2026-06-15T09:10:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6036. 2026-06-15T09:10:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6037. 2026-06-15T09:10:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6038. 2026-06-15T09:10:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6039. 2026-06-15T09:10:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6040. 2026-06-15T09:15:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6041. 2026-06-15T09:15:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6042. 2026-06-15T09:15:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6043. 2026-06-15T09:15:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6044. 2026-06-15T09:16:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6045. 2026-06-15T09:19:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6046. 2026-06-15T09:19:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6047. 2026-06-15T09:19:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6048. 2026-06-15T09:19:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6049. 2026-06-15T09:20:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6050. 2026-06-15T09:24:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6051. 2026-06-15T09:24:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6052. 2026-06-15T09:24:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6053. 2026-06-15T09:24:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6054. 2026-06-15T09:24:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6055. 2026-06-15T09:28:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6056. 2026-06-15T09:28:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6057. 2026-06-15T09:28:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6058. 2026-06-15T09:28:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6059. 2026-06-15T09:28:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6060. 2026-06-15T09:33:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6061. 2026-06-15T09:33:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6062. 2026-06-15T09:33:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6063. 2026-06-15T09:33:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6064. 2026-06-15T09:33:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6065. 2026-06-15T09:34:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6066. 2026-06-15T09:34:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6067. 2026-06-15T09:34:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6068. 2026-06-15T09:34:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6069. 2026-06-15T09:35:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6070. 2026-06-15T09:36:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6071. 2026-06-15T09:36:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6072. 2026-06-15T09:36:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6073. 2026-06-15T09:36:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6074. 2026-06-15T09:37:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6075. 2026-06-15T09:41:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6076. 2026-06-15T09:41:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6077. 2026-06-15T09:41:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6078. 2026-06-15T09:41:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6079. 2026-06-15T09:42:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6080. 2026-06-15T09:46:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6081. 2026-06-15T09:46:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6082. 2026-06-15T09:46:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6083. 2026-06-15T09:46:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6084. 2026-06-15T09:47:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6085. 2026-06-15T09:50:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6086. 2026-06-15T09:50:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6087. 2026-06-15T09:50:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6088. 2026-06-15T09:50:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6089. 2026-06-15T09:50:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6090. 2026-06-15T09:53:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6091. 2026-06-15T09:53:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6092. 2026-06-15T09:53:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6093. 2026-06-15T09:53:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6094. 2026-06-15T09:53:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6095. 2026-06-15T09:57:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6096. 2026-06-15T09:57:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6097. 2026-06-15T09:57:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6098. 2026-06-15T09:57:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6099. 2026-06-15T09:57:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6100. 2026-06-15T09:57:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6101. 2026-06-15T09:57:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6102. 2026-06-15T09:57:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6103. 2026-06-15T09:57:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6104. 2026-06-15T09:58:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6105. 2026-06-15T09:59:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6106. 2026-06-15T09:59:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6107. 2026-06-15T09:59:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6108. 2026-06-15T09:59:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6109. 2026-06-15T09:59:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6110. 2026-06-15T10:04:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6111. 2026-06-15T10:04:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6112. 2026-06-15T10:04:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6113. 2026-06-15T10:04:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6114. 2026-06-15T10:04:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6115. 2026-06-15T10:05:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6116. 2026-06-15T10:05:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6117. 2026-06-15T10:05:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6118. 2026-06-15T10:05:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6119. 2026-06-15T10:06:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6120. 2026-06-15T10:06:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6121. 2026-06-15T10:06:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6122. 2026-06-15T10:06:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6123. 2026-06-15T10:06:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6124. 2026-06-15T10:06:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6125. 2026-06-15T10:11:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6126. 2026-06-15T10:11:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6127. 2026-06-15T10:11:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6128. 2026-06-15T10:11:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6129. 2026-06-15T10:11:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6130. 2026-06-15T10:16:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6131. 2026-06-15T10:16:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6132. 2026-06-15T10:16:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6133. 2026-06-15T10:16:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6134. 2026-06-15T10:16:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6135. 2026-06-15T10:19:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6136. 2026-06-15T10:19:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6137. 2026-06-15T10:19:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6138. 2026-06-15T10:19:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6139. 2026-06-15T10:19:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6140. 2026-06-15T10:23:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6141. 2026-06-15T10:23:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6142. 2026-06-15T10:23:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6143. 2026-06-15T10:23:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6144. 2026-06-15T10:23:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6145. 2026-06-15T10:24:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6146. 2026-06-15T10:24:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6147. 2026-06-15T10:24:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6148. 2026-06-15T10:24:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6149. 2026-06-15T10:24:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6150. 2026-06-15T10:25:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6151. 2026-06-15T10:25:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6152. 2026-06-15T10:25:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6153. 2026-06-15T10:25:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6154. 2026-06-15T10:25:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6155. 2026-06-15T10:30:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6156. 2026-06-15T10:30:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6157. 2026-06-15T10:30:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6158. 2026-06-15T10:30:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6159. 2026-06-15T10:30:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6160. 2026-06-15T10:33:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6161. 2026-06-15T10:33:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6162. 2026-06-15T10:33:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6163. 2026-06-15T10:33:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6164. 2026-06-15T10:33:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6165. 2026-06-15T10:37:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6166. 2026-06-15T10:37:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6167. 2026-06-15T10:37:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6168. 2026-06-15T10:37:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6169. 2026-06-15T10:37:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6170. 2026-06-15T10:40:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6171. 2026-06-15T10:40:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6172. 2026-06-15T10:40:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6173. 2026-06-15T10:40:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6174. 2026-06-15T10:40:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6175. 2026-06-15T10:41:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6176. 2026-06-15T10:41:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6177. 2026-06-15T10:41:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6178. 2026-06-15T10:41:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6179. 2026-06-15T10:41:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6180. 2026-06-15T10:46:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6181. 2026-06-15T10:46:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6182. 2026-06-15T10:46:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6183. 2026-06-15T10:46:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6184. 2026-06-15T10:47:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6185. 2026-06-15T10:51:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6186. 2026-06-15T10:51:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6187. 2026-06-15T10:51:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6188. 2026-06-15T10:51:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6189. 2026-06-15T10:51:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6190. 2026-06-15T10:53:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6191. 2026-06-15T10:53:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6192. 2026-06-15T10:53:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6193. 2026-06-15T10:53:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6194. 2026-06-15T10:53:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6195. 2026-06-15T10:53:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6196. 2026-06-15T10:53:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6197. 2026-06-15T10:53:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6198. 2026-06-15T10:53:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6199. 2026-06-15T10:53:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6200. 2026-06-15T10:54:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6201. 2026-06-15T10:54:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6202. 2026-06-15T10:54:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6203. 2026-06-15T10:54:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6204. 2026-06-15T10:54:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6205. 2026-06-15T10:57:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6206. 2026-06-15T10:57:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6207. 2026-06-15T10:57:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6208. 2026-06-15T10:57:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6209. 2026-06-15T10:57:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6210. 2026-06-15T11:02:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6211. 2026-06-15T11:02:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6212. 2026-06-15T11:02:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6213. 2026-06-15T11:02:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6214. 2026-06-15T11:02:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6215. 2026-06-15T11:03:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6216. 2026-06-15T11:03:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6217. 2026-06-15T11:03:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6218. 2026-06-15T11:03:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6219. 2026-06-15T11:03:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6220. 2026-06-15T11:05:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6221. 2026-06-15T11:05:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6222. 2026-06-15T11:05:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6223. 2026-06-15T11:05:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6224. 2026-06-15T11:05:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6225. 2026-06-15T11:06:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6226. 2026-06-15T11:06:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6227. 2026-06-15T11:06:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6228. 2026-06-15T11:06:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6229. 2026-06-15T11:06:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  6230. 2026-06-15T11:08:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
  6231. 2026-06-15T11:08:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  6232. 2026-06-15T11:08:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
  6233. 2026-06-15T11:08:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
  6234. 2026-06-15T11:08:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0