.cloudflared.log 672 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999
  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. from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4463. 2026-06-13T20:03:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4464. 2026-06-13T20:04:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4465. 2026-06-13T20:06:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4466. 2026-06-13T20:06:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4467. 2026-06-13T20:06:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4468. 2026-06-13T20:06:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4469. 2026-06-13T20:07:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4470. 2026-06-13T20:10:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4471. 2026-06-13T20:10:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4472. 2026-06-13T20:10:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4473. 2026-06-13T20:10:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4474. 2026-06-13T20:11:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4475. 2026-06-13T20:15:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4476. 2026-06-13T20:15:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4477. 2026-06-13T20:15:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4478. 2026-06-13T20:15:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4479. 2026-06-13T20:15:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4480. 2026-06-13T20:17:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4481. 2026-06-13T20:17:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4482. 2026-06-13T20:17:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4483. 2026-06-13T20:17:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4484. 2026-06-13T20:18:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4485. 2026-06-13T20:19:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4486. 2026-06-13T20:19:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4487. 2026-06-13T20:19:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4488. 2026-06-13T20:19:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4489. 2026-06-13T20:19:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4490. 2026-06-13T20:24:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4491. 2026-06-13T20:24:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4492. 2026-06-13T20:24:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4493. 2026-06-13T20:24:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4494. 2026-06-13T20:24:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4495. 2026-06-13T20:29:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4496. 2026-06-13T20:29:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4497. 2026-06-13T20:29:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4498. 2026-06-13T20:29:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4499. 2026-06-13T20:29:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4500. 2026-06-13T20:30:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4501. 2026-06-13T20:30:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4502. 2026-06-13T20:30:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4503. 2026-06-13T20:30:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4504. 2026-06-13T20:30:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4505. 2026-06-13T20:33:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4506. 2026-06-13T20:33:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4507. 2026-06-13T20:33:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4508. 2026-06-13T20:33:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4509. 2026-06-13T20:34:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4510. 2026-06-13T20:35:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4511. 2026-06-13T20:35:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4512. 2026-06-13T20:35:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4513. 2026-06-13T20:35:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4514. 2026-06-13T20:36:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4515. 2026-06-13T20:39:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4516. 2026-06-13T20:39:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4517. 2026-06-13T20:39:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4518. 2026-06-13T20:39:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4519. 2026-06-13T20:40:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4520. 2026-06-13T20:44:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4521. 2026-06-13T20:44:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4522. 2026-06-13T20:44:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4523. 2026-06-13T20:44:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4524. 2026-06-13T20:44:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4525. 2026-06-13T20:49:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4526. 2026-06-13T20:49:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4527. 2026-06-13T20:49:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4528. 2026-06-13T20:49:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4529. 2026-06-13T20:49:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4530. 2026-06-13T20:53:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4531. 2026-06-13T20:53:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4532. 2026-06-13T20:53:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4533. 2026-06-13T20:53:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4534. 2026-06-13T20:53:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4535. 2026-06-13T20:53:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4536. 2026-06-13T20:53:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4537. 2026-06-13T20:53:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4538. 2026-06-13T20:53:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4539. 2026-06-13T20:53:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4540. 2026-06-13T20:55:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4541. 2026-06-13T20:55:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4542. 2026-06-13T20:55:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4543. 2026-06-13T20:55:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4544. 2026-06-13T20:55:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4545. 2026-06-13T21:00:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4546. 2026-06-13T21:00:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4547. 2026-06-13T21:00:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4548. 2026-06-13T21:00:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4549. 2026-06-13T21:00:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4550. 2026-06-13T21:05:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4551. 2026-06-13T21:05:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4552. 2026-06-13T21:05:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4553. 2026-06-13T21:05:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4554. 2026-06-13T21:05:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4555. 2026-06-13T21:08:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4556. 2026-06-13T21:08:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4557. 2026-06-13T21:08:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4558. 2026-06-13T21:08:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4559. 2026-06-13T21:08:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4560. 2026-06-13T21:10:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4561. 2026-06-13T21:10:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4562. 2026-06-13T21:10:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4563. 2026-06-13T21:10:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4564. 2026-06-13T21:10:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4565. 2026-06-13T21:13:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4566. 2026-06-13T21:13:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4567. 2026-06-13T21:13:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4568. 2026-06-13T21:13:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4569. 2026-06-13T21:13:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4570. 2026-06-13T21:16:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4571. 2026-06-13T21:16:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4572. 2026-06-13T21:16:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4573. 2026-06-13T21:16:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4574. 2026-06-13T21:16:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4575. 2026-06-13T21:20:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4576. 2026-06-13T21:20:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4577. 2026-06-13T21:20:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4578. 2026-06-13T21:20:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4579. 2026-06-13T21:21:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4580. 2026-06-13T21:26:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4581. 2026-06-13T21:26:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4582. 2026-06-13T21:26:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4583. 2026-06-13T21:26:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4584. 2026-06-13T21:27:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4585. 2026-06-13T21:28:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4586. 2026-06-13T21:28:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4587. 2026-06-13T21:28:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4588. 2026-06-13T21:28:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4589. 2026-06-13T21:28:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4590. 2026-06-13T21:32:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4591. 2026-06-13T21:32:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4592. 2026-06-13T21:32:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4593. 2026-06-13T21:32:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4594. 2026-06-13T21:33:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4595. 2026-06-13T21:34:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4596. 2026-06-13T21:34:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4597. 2026-06-13T21:34:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4598. 2026-06-13T21:34:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4599. 2026-06-13T21:34:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4600. 2026-06-13T21:35:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4601. 2026-06-13T21:35:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4602. 2026-06-13T21:35:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4603. 2026-06-13T21:35:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4604. 2026-06-13T21:35:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4605. 2026-06-13T21:36:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4606. 2026-06-13T21:36:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4607. 2026-06-13T21:36:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4608. 2026-06-13T21:36:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4609. 2026-06-13T21:37:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4610. 2026-06-13T21:37:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4611. 2026-06-13T21:37:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4612. 2026-06-13T21:37:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4613. 2026-06-13T21:37:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4614. 2026-06-13T21:37:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4615. 2026-06-13T21:39:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4616. 2026-06-13T21:39:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4617. 2026-06-13T21:39:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4618. 2026-06-13T21:39:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4619. 2026-06-13T21:39:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4620. 2026-06-13T21:42:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4621. 2026-06-13T21:42:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4622. 2026-06-13T21:42:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4623. 2026-06-13T21:42:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4624. 2026-06-13T21:43:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4625. 2026-06-13T21:45:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4626. 2026-06-13T21:45:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4627. 2026-06-13T21:45:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4628. 2026-06-13T21:45:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4629. 2026-06-13T21:45:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4630. 2026-06-13T21:47:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4631. 2026-06-13T21:47:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4632. 2026-06-13T21:47:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4633. 2026-06-13T21:47:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4634. 2026-06-13T21:48:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4635. 2026-06-13T21:50:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4636. 2026-06-13T21:50:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4637. 2026-06-13T21:50:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4638. 2026-06-13T21:50:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4639. 2026-06-13T21:50:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4640. 2026-06-13T21:53:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4641. 2026-06-13T21:53:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4642. 2026-06-13T21:53:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4643. 2026-06-13T21:53:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4644. 2026-06-13T21:53:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4645. 2026-06-13T21:54:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4646. 2026-06-13T21:54:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4647. 2026-06-13T21:54:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4648. 2026-06-13T21:54:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4649. 2026-06-13T21:54:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4650. 2026-06-13T21:55:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4651. 2026-06-13T21:55:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4652. 2026-06-13T21:55:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4653. 2026-06-13T21:55:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4654. 2026-06-13T21:55:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4655. 2026-06-13T22:00:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4656. 2026-06-13T22:00:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4657. 2026-06-13T22:00:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4658. 2026-06-13T22:00:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4659. 2026-06-13T22:00:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4660. 2026-06-13T22:03:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4661. 2026-06-13T22:03:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4662. 2026-06-13T22:03:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4663. 2026-06-13T22:03:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4664. 2026-06-13T22:04:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4665. 2026-06-13T22:06:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4666. 2026-06-13T22:06:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4667. 2026-06-13T22:06:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4668. 2026-06-13T22:06:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4669. 2026-06-13T22:06:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4670. 2026-06-13T22:11:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4671. 2026-06-13T22:11:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4672. 2026-06-13T22:11:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4673. 2026-06-13T22:11:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4674. 2026-06-13T22:11:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4675. 2026-06-13T22:15:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4676. 2026-06-13T22:15:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4677. 2026-06-13T22:15:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4678. 2026-06-13T22:15:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4679. 2026-06-13T22:15:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4680. 2026-06-13T22:19:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4681. 2026-06-13T22:19:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4682. 2026-06-13T22:19:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4683. 2026-06-13T22:19:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4684. 2026-06-13T22:20:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4685. 2026-06-13T22:20:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4686. 2026-06-13T22:20:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4687. 2026-06-13T22:20:28Z ERR Register tunnel error 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