cisco 设置 vlan
! 打算每个端口对应一个 vlan, 接一个光猫 ! 将 4 口万兆口设置为 trunk 口,接上拨号 !接上 console 线,设备管理中看端口,9600,8,1 接入交换机 !操作时注意看前缀,> # (config), 要进入或退出至相应的模式才能操作 ! 进入全局配置模式 Switch> enalbe ! 查看 vlan 设置…
2025-1-18 16:50
|
715
|
|
64 字
|
4 分钟
windows 11 Sandbox (沙盒) 软件界面显示乱码
https://github.com/xupefei/Locale-Emulator
2025-1-17 17:03
|
748
|
|
6 字
|
几秒读完
pwsh windows 检测代理IP
$ipTxt = @" 1.1.1.1 2.2.2.2 3.3.3.3 "@ # 将 ip 文本拆分为数组 [string[]]$ips = $ipTxt.Split([char[]]"`r`n") | % { $_.Trim() } | ? { $_.Length -gt 0 } 0..19 | % { #…
2025-1-08 15:22
|
787
|
|
36 字
|
2 分钟
.net 性能计数器指标
.net 性能计数器指标 https://learn.microsoft.com/en-us/dotnet/framework/debug-trace-profile/performance-counters https://www.cnblogs.com/cuihongyu3503319/p/13564334.html
2024-12-06 10:00
|
545
|
|
30 字
|
几秒读完
当前 ip 地址、爬虫检测
https://fingerprint.com/demo/ 检测机器 id 换浏览器也能得到 id https://fingerprint.com/products/bot-detection/ 检测是否自动化操作,很强 https://bot.sannysoft.com 检测是否自动化操作。比较容易过 https://proxy.incolumi…
2024-12-05 11:00
|
484
|
|
39 字
|
2 分钟
wpf 中使用 webview2
https://www.cnblogs.com/zhaotianff/p/18256433
2024-12-04 15:39
|
501
|
|
7 字
|
几秒读完
linux 后台任务
后台任务 用户退出后,后台任务可能会结束 用户查看不了其它用户的 jobs 任务 jobs -l 查看后台命令列表, -l 列出 PID 供 kill 使用 command & 运行命令后直接至后台 ctrl + z 暂停当前命令至后台 bg %1 暂停命令继续运行 fg %1 将后台命令切换至前台运行 kill PID 杀死后台命令 no…
2024-12-01 16:22
|
579
|
|
229 字
|
1 分钟内
从 mysql 导入数据至 postgresql
安装 pgloader docker pull dockerpull.org/dimitri/pgloader 运行容器 sudo docker run --rm -it dockerpull.org/dimitri/pgloader bash 在容器中执行 pgloader mysql://admin:123456@10.10.1.109:330…
2024-11-13 0:59
|
363
|
|
55 字
|
2 分钟