在线小店 | 网络服务

搜集网上一些有用的在线服务、发卡站....

May 3, 2023 · 1 分钟 · 103 字 · Tianlun Song

检查当前机器是不是虚拟机并确认底层虚拟化技术

要确定当前运行的系统是否在虚拟机(VM)中,并了解底层虚拟化技术,可以使用一些命令和工具进行检查。以下是几种方法: 使用 dmidecode 命令: dmidecode 是一个用于获...

May 1, 2023 · 2 分钟 · 533 字 · Tianlun Song

Surge 从零开始配置

Surge for macOS 基于 这份 修改。 # Surge 的规则配置手册: https://manual.nssurge.com/ [General] loglevel = notify # 从 Surge iOS 4 / Surge Mac 3.3.0 起,工具开始支持 DoH doh-server = https://doh.pub/dns-query, https://dns.alidns.com/dns-query # https://dns.alidns.com/dns-query, https://13800000000.rubyfish.cn/, https://doh.360.cn/dns-query, https://dns.google/dns-query dns-server = 223.5.5.5, 114.114.114.114 tun-excluded-routes = 0.0.0.0/8, 10.0.0.0/8, 100.64.0.0/10, 127.0.0.0/8, 169.254.0.0/16, 172.16.0.0/12, 192.0.0.0/24, 192.0.2.0/24, 192.168.0.0/16, 192.88.99.0/24, 198.51.100.0/24, 203.0.113.0/24,...

May 1, 2023 · 1 分钟 · 448 字 · Tianlun Song

dnsmasq 多网卡分网段配置

在 dnsmasq 的配置文件 /etc/dnsmasq.conf 中使用类似下面的配置: bind-interfaces dhcp-range=eth1,10.192.10.50,10.192.10.200,12h dhcp-range=eth2,10.192.20.50,10.192.20.200,12h dhcp-range=eth3,10.192.30.50,10.192.30.200,12h dhcp-option=option:dns-server,119.29.29.29 接口实现一个 dnsmasq 实例,同时在多张网卡启动 DHCP 服务,并分配不同网段的 IP 地址。

May 1, 2023 · 1 分钟 · 59 字 · Tianlun Song

AutoGPT 用法

git clone https://github.com/Torantulino/Auto-GPT.git cd 'Auto-GPT' pip install -r requirements.txt # Rename .env.template to .env and fill in your OPENAI_API_KEY. If you plan to use Speech Mode, fill in your ELEVEN_LABS_API_KEY as well. python scripts/main.py # You will find activity and error logs in the folder ./output/logs python scripts/main.py --debug References https://github.com/Torantulino/Auto-GPT https://beta.elevenlabs.io/ https://agentgpt.reworkd.ai/

May 1, 2023 · 1 分钟 · 53 字 · Tianlun Song