摘要: Service代表的是Kubernetes后端服务的入口,它主要包含服务的访问IP,和端口,工作在L4,。 ClusterIP和主机名在集群内是独一无二的,并且在服务的整个生命周期内不会更改。 用户可以使用服务的ClusterIP或主机名访问正常运行的POD。 用户不用担心服务出现单点故障问题,Ku 阅读全文
posted @ 2022-09-17 18:58 重构者 阅读(15) 评论(0) 推荐(0) 编辑
摘要: VLAN间路由:通过三层设备路由,使得不同vlan间可以互相通信。但是仅仅允许单播通信。 VLAN间路由方式: ① 单臂路由 (路由器逻辑子接口),根据路由表转换VLAN标签; ② SVI(交换机的Switch Virtual Interface)或vlanIF //单臂路由--创建2个子接口int 阅读全文
posted @ 2022-09-17 10:39 重构者 阅读(181) 评论(0) 推荐(0) 编辑
摘要: BUM帧:broadcast广播 ,unknown(未知单播),multicast 组播 ;交换机对于这几种帧会进行泛洪(群发) 阅读全文
posted @ 2022-09-17 09:54 重构者 阅读(252) 评论(0) 推荐(0) 编辑
摘要: using Microsoft.AspNetCore.Http.Features; namespace Microsoft.AspNetCore.Http; /// <summary> /// Provides methods to create and dispose of <see cref=" 阅读全文
posted @ 2022-04-20 11:47 重构者 阅读(39) 评论(0) 推荐(0) 编辑
摘要: using System.Security.Claims; using Microsoft.AspNetCore.Http.Features; namespace Microsoft.AspNetCore.Http; /// <summary> /// Encapsulates all HTTP-s 阅读全文
posted @ 2022-04-20 11:45 重构者 阅读(121) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Linq; using System.Linq.Expressions; using System.Collections.Generic; public static class PredicateBuilder { public static 阅读全文
posted @ 2022-03-30 15:53 重构者 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 一、FluentValidation https://fluentvalidation.net/ A popular .NET library for building strongly-typed validation rules. 用于构建强类型验证规则的流行 .NET 库。 https://g 阅读全文
posted @ 2021-09-29 16:25 重构者 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 一、前端调试工具js库vConsolehttps://www.bilibili.com/read/cv6106224/https://github.com/Tencent/vConsolehttps://www.npmjs.com/package/vconsole 二、ssh工具MobaXtermh 阅读全文
posted @ 2021-09-28 16:18 重构者 阅读(20) 评论(0) 推荐(0) 编辑
摘要: IApplicationBuilder->IAuthenticationSchemeProvider->IAuthenticationHandlerProvider using System; using Microsoft.AspNetCore.Authentication; namespace 阅读全文
posted @ 2021-09-11 23:58 重构者 阅读(100) 评论(0) 推荐(0) 编辑
摘要: using System; using Microsoft.AspNetCore.Authentication; using Microsoft.Extensions.DependencyInjection.Extensions; using Microsoft.Extensions.Options 阅读全文
posted @ 2021-09-11 22:10 重构者 阅读(52) 评论(0) 推荐(0) 编辑