<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[qq_44810968的博客]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/qq_44810968</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; qq_44810968]]></copyright><item><title><![CDATA[物理主机集群]]></title><link>https://blog.csdn.net/qq_44810968/article/details/145508400</link><guid>https://blog.csdn.net/qq_44810968/article/details/145508400</guid><author>qq_44810968</author><pubDate>Sat, 08 Feb 2025 09:29:10 +0800</pubDate><description><![CDATA[建议先选择1个楼层（20个房间）进行试点，验证网络承载能力和用户体验，再逐步扩展实施。关键是要确保机房环境监控系统（如用电量、温湿度监测）的实时性，推荐部署NetBotz 250监控单元。将300台主机集中部署在六楼机房（物理主机集群），通过虚拟化技术将计算资源池化，各办公室通过。远程访问专属主机资源，实现"一机一用户"的专属云桌面模式。远程桌面协议RDP/PCoIP。]]></description><category></category></item><item><title><![CDATA[Vmware 软件 Linux 虚拟机 NAT模式 联网]]></title><link>https://blog.csdn.net/qq_44810968/article/details/125443409</link><guid>https://blog.csdn.net/qq_44810968/article/details/125443409</guid><author>qq_44810968</author><pubDate>Fri, 24 Jun 2022 13:29:58 +0800</pubDate><description><![CDATA[虚拟机NAT方式连接网络]]></description><category></category></item><item><title><![CDATA[【docker 安装-环境初始化】]]></title><link>https://blog.csdn.net/qq_44810968/article/details/124589651</link><guid>https://blog.csdn.net/qq_44810968/article/details/124589651</guid><author>qq_44810968</author><pubDate>Thu, 05 May 2022 15:22:16 +0800</pubDate><description><![CDATA[1、YUM 源
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
wget -O /etc/yum.repos.d/epel.repo https://mirrors.aliyun.com/repo/Centos-7.repo
yum install -y bash-completion vim lrzsz wget expect net-tools nc nmap tree dos]]></description><category></category></item><item><title><![CDATA[交换机协议STP]]></title><link>https://blog.csdn.net/qq_44810968/article/details/124466462</link><guid>https://blog.csdn.net/qq_44810968/article/details/124466462</guid><author>qq_44810968</author><pubDate>Sun, 01 May 2022 09:07:28 +0800</pubDate><description><![CDATA[STP
解决环路问题的数据链路层协议，与屏蔽双绞线、信令转接点等术语区分开。
环路问题
设备环境中比较容易遇到的情况，如下图所示，虽然看起来不复杂，但是却会产生MAC地址翻摆、广播风暴、多帧复制等现象。

STP树的生成
在一个具有物理环路的交换网络中，交换机通过运行STP协议，自动生成一个没有环路的工作拓扑，又叫STP树，树节点为某些特定的交换机，树枝为某些特定的链路，一棵STP树包含了唯一的一个根节点，任何一个节点的工作路径不单单是唯一的，而且是最优的。当网络拓扑发生变化时，STP树也会自动的发生相应的]]></description><category></category></item><item><title><![CDATA[2021-09-24]]></title><link>https://blog.csdn.net/qq_44810968/article/details/120465056</link><guid>https://blog.csdn.net/qq_44810968/article/details/120465056</guid><author>qq_44810968</author><pubDate>Fri, 24 Sep 2021 23:53:26 +0800</pubDate><description><![CDATA[求两个数的最小公倍数，最大公约数（最大公因数）
如例A，B两个之间求最小公倍数，如果A，B之间不能整除，就拿A或B与自身相加，直到加到能与另一个数能整除，那么加出来的那个数就是A，B的最小公倍数。
而A，B之间求最大公约数则是在求出最小公倍数后，（A*B）/最小公倍数  就是最大公因数。
代码如下
#include&lt;stdio.h&gt; 
int main(void) 
{ 
 int a,b,x,y; 
 do{ 
 printf("Input a:"); 
 scanf("%d",&amp;a)]]></description><category></category></item><item><title><![CDATA[粒子跳动web网页效果]]></title><link>https://blog.csdn.net/qq_44810968/article/details/107368522</link><guid>https://blog.csdn.net/qq_44810968/article/details/107368522</guid><author>qq_44810968</author><pubDate>Wed, 15 Jul 2020 19:40:23 +0800</pubDate><description><![CDATA[HTML的代码
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; c.]]></description><category></category></item><item><title><![CDATA[C语言完成的贪吃蛇小游戏]]></title><link>https://blog.csdn.net/qq_44810968/article/details/105742245</link><guid>https://blog.csdn.net/qq_44810968/article/details/105742245</guid><author>qq_44810968</author><pubDate>Fri, 24 Apr 2020 23:32:35 +0800</pubDate><description><![CDATA[欢迎大家交流
#include &lt;stdio.h&gt;
#include &lt;stdlib.h&gt;
#include &lt;time.h&gt;
#include &lt;conio.h&gt;
struct Node
{
int x;
int y;
struct Node *pre;
struct Node *next;
};
struct Food
{
int x;
int ...]]></description><category></category></item><item><title><![CDATA[PHP + HTML 完成网页简单的计算器]]></title><link>https://blog.csdn.net/qq_44810968/article/details/105694917</link><guid>https://blog.csdn.net/qq_44810968/article/details/105694917</guid><author>qq_44810968</author><pubDate>Wed, 22 Apr 2020 22:30:12 +0800</pubDate><description><![CDATA[PHP + HTML 完成网页简单的计算器代码如下：

```php
&lt;html&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312" /&gt;
&lt;title&gt;无标题文档&lt;/title&gt;
&lt;/head&gt;

&lt;body&gt;

...]]></description><category></category></item></channel></rss>