.cloudflared.log 659 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884
  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. from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4338. 2026-06-13T18:45:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4339. 2026-06-13T18:45:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4340. 2026-06-13T18:46:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4341. 2026-06-13T18:46:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4342. 2026-06-13T18:46:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4343. 2026-06-13T18:46:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4344. 2026-06-13T18:46:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4345. 2026-06-13T18:48:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4346. 2026-06-13T18:48:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4347. 2026-06-13T18:48:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4348. 2026-06-13T18:48:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4349. 2026-06-13T18:48:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4350. 2026-06-13T18:52:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4351. 2026-06-13T18:52:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4352. 2026-06-13T18:52:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4353. 2026-06-13T18:52:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4354. 2026-06-13T18:52:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4355. 2026-06-13T18:57:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4356. 2026-06-13T18:57:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4357. 2026-06-13T18:57:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4358. 2026-06-13T18:57:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4359. 2026-06-13T18:57:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4360. 2026-06-13T18:57:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4361. 2026-06-13T18:57:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4362. 2026-06-13T18:57:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4363. 2026-06-13T18:57:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4364. 2026-06-13T18:57:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4365. 2026-06-13T18:59:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4366. 2026-06-13T19:00:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4367. 2026-06-13T19:00:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4368. 2026-06-13T19:00:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4369. 2026-06-13T19:00:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4370. 2026-06-13T19:04:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4371. 2026-06-13T19:04:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4372. 2026-06-13T19:04:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4373. 2026-06-13T19:04:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4374. 2026-06-13T19:04:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4375. 2026-06-13T19:06:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4376. 2026-06-13T19:06:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4377. 2026-06-13T19:06:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4378. 2026-06-13T19:06:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4379. 2026-06-13T19:06:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4380. 2026-06-13T19:11:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4381. 2026-06-13T19:11:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4382. 2026-06-13T19:11:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4383. 2026-06-13T19:11:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4384. 2026-06-13T19:11:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4385. 2026-06-13T19:11:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4386. 2026-06-13T19:11:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4387. 2026-06-13T19:11:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4388. 2026-06-13T19:11:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4389. 2026-06-13T19:12:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4390. 2026-06-13T19:16:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4391. 2026-06-13T19:16:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4392. 2026-06-13T19:16:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4393. 2026-06-13T19:16:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4394. 2026-06-13T19:17:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4395. 2026-06-13T19:20:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4396. 2026-06-13T19:20:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4397. 2026-06-13T19:20:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4398. 2026-06-13T19:20:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4399. 2026-06-13T19:20:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4400. 2026-06-13T19:21:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4401. 2026-06-13T19:21:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4402. 2026-06-13T19:21:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4403. 2026-06-13T19:21:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4404. 2026-06-13T19:21:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4405. 2026-06-13T19:26:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4406. 2026-06-13T19:26:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4407. 2026-06-13T19:26:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4408. 2026-06-13T19:26:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4409. 2026-06-13T19:26:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4410. 2026-06-13T19:29:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4411. 2026-06-13T19:29:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4412. 2026-06-13T19:29:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4413. 2026-06-13T19:29:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4414. 2026-06-13T19:29:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4415. 2026-06-13T19:30:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4416. 2026-06-13T19:30:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4417. 2026-06-13T19:30:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4418. 2026-06-13T19:30:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4419. 2026-06-13T19:30:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4420. 2026-06-13T19:34:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4421. 2026-06-13T19:34:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4422. 2026-06-13T19:34:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4423. 2026-06-13T19:34:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4424. 2026-06-13T19:35:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4425. 2026-06-13T19:36:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4426. 2026-06-13T19:36:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4427. 2026-06-13T19:36:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4428. 2026-06-13T19:36:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4429. 2026-06-13T19:37:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4430. 2026-06-13T19:40:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4431. 2026-06-13T19:40:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4432. 2026-06-13T19:40:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4433. 2026-06-13T19:40:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4434. 2026-06-13T19:41:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4435. 2026-06-13T19:45:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4436. 2026-06-13T19:45:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4437. 2026-06-13T19:45:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4438. 2026-06-13T19:45:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4439. 2026-06-13T19:46:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4440. 2026-06-13T19:48:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4441. 2026-06-13T19:48:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4442. 2026-06-13T19:48:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4443. 2026-06-13T19:48:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4444. 2026-06-13T19:49:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4445. 2026-06-13T19:51:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4446. 2026-06-13T19:51:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4447. 2026-06-13T19:51:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4448. 2026-06-13T19:51:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4449. 2026-06-13T19:51:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4450. 2026-06-13T19:56:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4451. 2026-06-13T19:56:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4452. 2026-06-13T19:56:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4453. 2026-06-13T19:56:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4454. 2026-06-13T19:56:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4455. 2026-06-13T20:01:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4456. 2026-06-13T20:01:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4457. 2026-06-13T20:01:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
  4458. 2026-06-13T20:01:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
  4459. 2026-06-13T20:01:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  4460. 2026-06-13T20:03:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
  4461. 2026-06-13T20:03:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
  4462. 2026-06-13T20:03:45Z ERR Register tunnel error 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