博文

目前显示的是 八月, 2024的博文

HTTP代理

图片
/etc/squid/squid.conf 部分:  acl manager proto cache_object acl localhost src 127.0.0.1/32 acl vben      src 163.125.0.0/16 27.38.0.0/16 acl localhost src ::1/128 acl to_localhost dst 127.0.0.0/8 0.0.0.0/32 # Example rule allowing access from your local networks. # Adapt localnet in the ACL section to list your (internal) IP networks # from where browsing should be allowed http_access allow localnet http_access allow localhost http_access allow vben # And finally deny all other access to this proxy http_access deny all 日志: 1724483646.153      0 163.125.189.239 NONE_NONE/000 0 - error:transaction-end-before-headers - HIER_NONE/- - 1724483651.077  23670 163.125.189.239 TCP_TUNNEL/200 18382 CONNECT hm.baidu.com:443 - HIER_DIRECT/111.45.11.83 - 1724483656.480     10 163.125.189.239 NONE_NONE/200 0 CONNECT www.youtube.com:443 - HIER_DIRECT/172.217.14.78 - 1724483674.530     11 163.125.189.239 NONE_NONE/200 0 CONNECT www.goog...

GPU

 NVIDIA A100 Delivering unprecedented acceleration and powering the world's highest-performing AI, data analytics, and HPC workloads. 提供前所未有的加速并为世界上性能最高的 AI、数据分析和 HPC 工作负载提供支持。  NVIDIA A40 Combining professional graphics with powerful compute and AI, to meet today’s design, creative, and scientific challenges.   将专业图形与强大的计算和人工智能相结合,以应对当今的设计、创意和科学挑战。 NVIDIA A16 Enabling virtual desktops and workstations with the power and performance to tackle any project from anywhere.  使虚拟桌面和工作站具有强大的功能和性能,可以随时随地处理任何项目。           

Lustre

图片
 1. What a Lustre File System Is The Lustre architecture is a storage architecture for clusters. The central component of the Lustre architecture is the Lustre file system, which is supported on the Linux operating system and provides a POSIX * standard-compliant UNIX file system interface. The Lustre storage architecture is used for many different kinds of clusters. It is best known for powering many of the largest high-performance computing (HPC) clusters worldwide, with tens of thousands of client systems, petabytes (PiB) of storage and hundreds of gigabytes per second (GB/sec) of I/O throughput. Many HPC site use a Lustre file system as a site-wide global file system, serving dozens of clusters. While a Lustre file system can function in many work environments, it is not necessarily the best choice for all applications. It is best suited for uses that exceed the capacity that a single server can provide , though in some use cases, a Lustre file system can perform better with a ...

Socks代理

SOCKS performs at Layer 5 of the OSI model ( the session layer , an intermediate layer between the presentation layer and the transport layer). SOCKS server accepts incoming client connection on TCP port 1080 . 本地开启的是SOCKS5 Server,启用系统代理后,浏览器使用系统HTTP代理连接上SOCKS5 Server。 SOCKS5 Server支持的不止HTTP代理。 Comparison to HTTP proxying SOCKS operates at a lower level than HTTP proxying : SOCKS uses a handshake protocol to inform the proxy software about the connection that the client is trying to make, and then acts as transparently as possible, whereas a regular proxy may interpret and rewrite headers (say, to employ another underlying protocol, such as FTP; however, an HTTP proxy simply forwards an HTTP request to the desired HTTP server). Though HTTP proxying has a different usage model in mind, the CONNECT method allows for forwarding TCP connections; however, SOCKS proxies can also forward UDP traffic and work in reverse, while HTTP proxies cannot. HTTP proxies are traditionally more aware of ...