企业网站优化方案范本收费网站必须备案吗

news/2025/10/2 18:16:29/文章来源:
企业网站优化方案范本,收费网站必须备案吗,如何分析网站竞争对手,网站后台基本功能RHEL6的网络管理与RHEL5的有比较大的改变。虽然在RHEL5、6中均安装有NetworkManager#xff0c;在RHEL5中2、3、4、5级别中默认是不启用的。但在RHEL6中#xff0c;默认是启用的#xff0c;NetworkManager会一直监控网卡状态#xff0c;修改网卡参数立即生效不用重启服务。… RHEL6的网络管理与RHEL5的有比较大的改变。 虽然在RHEL5、6中均安装有NetworkManager在RHEL5中2、3、4、5级别中默认是不启用的。 但在RHEL6中默认是启用的NetworkManager会一直监控网卡状态修改网卡参数立即生效不用重启服务。  [rootrhel5 ~]# chkconfig --list NetworkManager   #默认开机不自动启动NetworkManager服务NetworkManager  0:off  1:off  2:off  3:off  4:off  5:off  6:off   [rootrhel6 ~]# chkconfig --list NetworkManager   #默认开机自动启动NetworkManager服务 NetworkManager  0:off  1:off  2:on   3:on   4:on   5:on   6:off  · IP别名 RHEL5 [rootrhel5 ~]# /etc/init.d/NetworkManager status NetworkManager 已停  [rootrhel5 ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0  # Intel Corporation 82545EM Gigabit Ethernet Controller (Copper) DEVICEeth0 ONBOOTyes TYPEEthernet BOOTPROTOnone  IPADDR192.168.1.90 NETWORK255.255.255.0 GATEWAY192.168.1.1 DNS18.8.8.8 DNS28.8.4.4 [rootrhel5 ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0:1  #配置IP别名需要添加虚拟网卡eht0:1 # Intel Corporation 82545EM Gigabit Ethernet Controller (Copper) DEVICEeth0:1 ONBOOTyes TYPEEthernet BOOTPROTOnone IPADDR192.168.2.90 NETWORK255.255.255.0 DNS18.8.8.8 DNS28.8.4.4  [rootrhel5 ~]# ip add show eth0 7: eth0: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc noqueue      link/ether 00:0c:29:db:14:10 brd ff:ff:ff:ff:ff:ff     inet 192.168.1.90/24 brd 192.168.1.255 scope global eth0     inet 192.168.2.90/24 brd 192.168.2.255 scope global eth0:1   RHEL6 [rootrhel6 ~]# /etc/init.d/NetworkManager status NetworkManager (pid  2808) is running...  [rootrhel6 ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0  DEVICEeth0 ONBOOTyes  NM_CONTROLLEDyes TYPEEthernet BOOTPROTOnone HWADDR00:0C:29:BF:45:80 IPADDR192.168.1.119 NETWORK255.255.255.0 GATEWAY192.168.1.1 IPADDR2192.168.2.119  #配置IP别名可直接在eth0中添加IP地址NETWORK255.255.255.0 DNS18.8.8.8                    #可直接在/etc/resolv.conf中写入nameserver 8.8.8.8 DNS28.8.4.4              [rootrhel6 ~]# ip add show eth0 2: eth0: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc pfifo_fast state UP qlen 1000     link/ether 00:0c:29:bf:45:80 brd ff:ff:ff:ff:ff:ff     inet 192.168.1.119/24 brd 192.168.1.255 scope global eth0     inet 192.168.2.119/24 brd 192.168.2.255 scope global eth0 · 多网卡绑定 bonding  RHEL5 [rootrhel5 ~]# cat /etc/modprobe.conf alias bond0 bonding options bonding miimon100 mode1  #每隔100ms监测一次链路状态,HA模式 [rootrhel5 ~]# cat /etc/sysconfig/network-scripts/ifcfg-bond0  DEVICEbond0 ONBOOTyes TYPEEthernet BOOTPROTOnone IPADDR192.168.1.90 NETMASK255.255.255.0 [rootrhel5 ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICEeth0 ONBOOTyes TYPEEthernet BOOTPROTOnone MASTERbond0 SLAVEyes [rootrhel5 ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth1 DEVICEeth1 ONBOOTyes TYPEEthernet BOOTPROTOnone MASTERbond0 SLAVEyes  [rootrhel5 ~]# ifconfig bond0     Link encap:Ethernet  HWaddr 00:0C:29:DB:14:10             inet addr:192.168.1.90  Bcast:192.168.1.255  Mask:255.255.255.0           inet6 addr: fe80::20c:29ff:fedb:1410/64 Scope:Link           UP BROADCAST RUNNING MASTER MULTICAST  MTU:1500  Metric:1           RX packets:1229 errors:0 dropped:0 overruns:0 frame:0           TX packets:589 errors:0 dropped:0 overruns:0 carrier:0           collisions:0 txqueuelen:0            RX bytes:92885 (90.7 KiB)  TX bytes:78052 (76.2 KiB)  eth0      Link encap:Ethernet  HWaddr 00:0C:29:DB:14:10             UP BROADCAST RUNNING SLAVE MULTICAST  MTU:1500  Metric:1           RX packets:530 errors:0 dropped:0 overruns:0 frame:0           TX packets:291 errors:0 dropped:0 overruns:0 carrier:0           collisions:0 txqueuelen:0            RX bytes:40654 (39.7 KiB)  TX bytes:40137 (39.1 KiB)  eth1      Link encap:Ethernet  HWaddr 00:0C:29:DB:14:10             UP BROADCAST RUNNING SLAVE MULTICAST  MTU:1500  Metric:1           RX packets:714 errors:0 dropped:0 overruns:0 frame:0           TX packets:310 errors:0 dropped:0 overruns:0 carrier:0           collisions:0 txqueuelen:1000            RX bytes:53177 (51.9 KiB)  TX bytes:39827 (38.8 KiB)  [rootrhel5 ~]# cat /proc/net/bonding/bond0 Ethernet Channel Bonding Driver: v3.4.0 (October 7, 2008)  Bonding Mode: fault-tolerance (active-backup) #HA模式 Primary Slave: None Currently Active Slave: eth0 #主网卡eth0 MII Status: up MII Polling Interval (ms): 100 #检测时间100ms Up Delay (ms): 0 Down Delay (ms): 0  Slave Interface: eth0 MII Status: up Link Failure Count: 0 Permanent HW addr: 00:0c:29:db:14:10  Slave Interface: eth1 MII Status: up Link Failure Count: 0 Permanent HW addr: 00:0c:29:db:14:1aRHEL6 [rootrhel6 ~]# cat /etc/modprobe.d/bonding.conf   #区别于RHEL5的/etc/modprobe.confalias bond0 bonding [rootrhel6 ~]# cat /etc/sysconfig/network-scripts/ifcfg-bond0     DEVICEbond0 ONBOOTyes BOOTPROTOnone NM_CONTROLLEDno IPADDR192.168.1.119 NETMASK255.255.255.0 BONDING_OPTSMODE0 MIIMON1000  #1000ms监测一次链路状态,LB模式[rootrhel6 ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICEeth0 ONBOOTyes NM_CONTROLLEDno TYPEEthernet BOOTPROTOnone MASTERbond0 SLAVEyes [rootrhel6 ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth1 DEVICEeth1 ONBOOTyes NM_CONTROLLEDno TYPEEthernet BOOTPROTOnone MASTERbond0 SLAVEyes  [rootrhel6 ~]# ifconfig bond0     Link encap:Ethernet  HWaddr 00:0C:29:BF:45:80             inet addr:192.168.1.119  Bcast:192.168.1.255  Mask:255.255.255.0           inet6 addr: fe80::20c:29ff:febf:4580/64 Scope:Link           UP BROADCAST RUNNING MASTER MULTICAST  MTU:1500  Metric:1           RX packets:3133 errors:0 dropped:0 overruns:0 frame:0           TX packets:619 errors:0 dropped:0 overruns:0 carrier:0           collisions:0 txqueuelen:0            RX bytes:275036 (268.5 KiB)  TX bytes:86282 (84.2 KiB)  eth0      Link encap:Ethernet  HWaddr 00:0C:29:BF:45:80             inet addr:192.168.1.119  Bcast:192.168.1.255  Mask:255.255.255.0           UP BROADCAST RUNNING SLAVE MULTICAST  MTU:1500  Metric:1           RX packets:2317 errors:0 dropped:0 overruns:0 frame:0           TX packets:309 errors:0 dropped:0 overruns:0 carrier:0           collisions:0 txqueuelen:1000            RX bytes:207976 (203.1 KiB)  TX bytes:48317 (47.1 KiB)  eth1      Link encap:Ethernet  HWaddr 00:0C:29:BF:45:8A             inet addr:192.168.1.119  Bcast:192.168.1.255  Mask:255.255.255.0           UP BROADCAST RUNNING SLAVE MULTICAST  MTU:1500  Metric:1           RX packets:816 errors:0 dropped:0 overruns:0 frame:0           TX packets:312 errors:0 dropped:0 overruns:0 carrier:0           collisions:0 txqueuelen:1000            RX bytes:67060 (65.4 KiB)  TX bytes:38801 (37.8 KiB)[rootrhel6 ~]# cat /proc/net/bonding/bond0 Ethernet Channel Bonding Driver: v3.6.0 (September 26, 2009)   Bonding Mode: load balancing (round-robin) #LB模式 MII Status: up MII Polling Interval (ms): 1000 #监测时间1000ms Up Delay (ms): 0 Down Delay (ms): 0  Slave Interface: eth0 MII Status: up Speed: 1000 Mbps Duplex: full Link Failure Count: 0 Permanent HW addr: 00:0c:29:bf:45:80 Slave queue ID: 0  Slave Interface: eth1 MII Status: up Speed: 1000 Mbps Duplex: full Link Failure Count: 0 Permanent HW addr: 00:0c:29:bf:45:8a Slave queue ID: 0   以下是摘自Red Hat Enterprise Linux 6 Essentials eBook  1.For example, if two Ethernet interfaces are being channel bonded, both eth0 and eth1 may look like the following example: DEVICEethN  BOOTPROTOnone  ONBOOTyes  MASTERbond0  SLAVEyes  USERCTLno    2.cp /etc/sysconfig/network-script/ifcfg-eth0 /etc/sysconfig/network-script/ifcfg-bond0 DEVICEbond0  IPADDR192.168.1.1  NETMASK255.255.255.0  ONBOOTyes  BOOTPROTOnone  USERCTLno  BONDING_OPTSbonding parameters separated by spaces    3.As root, create a new file named bonding.conf in the /etc/modprobe.d/ directory. Note that you can name this file anything you like as long as it ends with a .conf extension. Insert the following line in this new file:   alias bondN bonding    4.You can configure each bond individually by manipulating the files located in the /sys/class/net/bondN/bonding/ directory. First, the bond you are configuring must be taken down: # ifconfig bond0 down As an example, to enable MII monitoring on bond0 with a 1 second interval, you could run (as root):   # echo 1000  /sys/class/net/bond0/bonding/miimon To configure bond0 for balance-alb mode, you could run either:   # echo 6  /sys/class/net/bond0/bonding/mode ...or, using the name of the mode:   # echo balance-alb  /sys/class/net/bond0/bonding/mode    Mode of operation : 0 for balance-rr, 1 for active-backup, 2 for balance-xor, 3 for broadcast, 4 for 802.3ad, 5 for balance-tlb, 6 for balance-alb (charp) 切换测试 1). 切断eth0的连接前,eth1处于Slave状态,通过以下命令可监测链路统计信息,发现eth1无数据的收发(只接收来自eth0的监测报文) [rootrhel6 ~]# watch ip -s link show eth1        #默认每隔2s运行一次ip -s link show eth1 Every 2.0s: ip -s link show eth1                                  Wed Nov 21 02:13:48 2012  3: eth1: BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP mtu 1500 qdisc pfifo_fast master bond0 qlen 1000     link/ether 00:0c:29:db:14:10 brd ff:ff:ff:ff:ff:ff     RX: bytes  packets  errors  dropped overrun mcast     137357     1916     0       0       0       0     TX: bytes  packets  errors  dropped carrier collsns     41562      441      0       0       0       0  2). 切断eth0的连接后,eth1立即自动切换为Active状态(通过客户端ping -t 192.168.1.90 未出现丢包现象),可发现eth1出现了数据的收发 [rootrhel5 ~]# ifdown eth0 [rootrhel5 ~]# ifconfig  bond0     Link encap:Ethernet  HWaddr 00:0C:29:DB:14:10             inet addr:192.168.1.90  Bcast:192.168.1.255  Mask:255.255.255.0           inet6 addr: fe80::20c:29ff:fedb:1410/64 Scope:Link           UP BROADCAST RUNNING MASTER MULTICAST  MTU:1500  Metric:1           RX packets:13276 errors:0 dropped:0 overruns:0 frame:0           TX packets:890 errors:0 dropped:0 overruns:0 carrier:0           collisions:0 txqueuelen:0            RX bytes:874191 (853.7 KiB)  TX bytes:96900 (94.6 KiB)  eth1      Link encap:Ethernet  HWaddr 00:0C:29:DB:14:10             UP BROADCAST RUNNING SLAVE MULTICAST  MTU:1500  Metric:1           RX packets:13276 errors:0 dropped:0 overruns:0 frame:0           TX packets:890 errors:0 dropped:0 overruns:0 carrier:0           collisions:0 txqueuelen:1000            RX bytes:874191 (853.7 KiB)  TX bytes:96900 (94.6 KiB)  [rootrhel5 ~]# cat /proc/net/bonding/bond0  Ethernet Channel Bonding Driver: v3.4.0 (October 7, 2008)  Bonding Mode: fault-tolerance (active-backup) Primary Slave: None Currently Active Slave: eth1 MII Status: up MII Polling Interval (ms): 100 Up Delay (ms): 0 Down Delay (ms): 0  Slave Interface: eth1 MII Status: up Link Failure Count: 0 Permanent HW addr: 00:0c:29:db:14:1a  3). 重新连接上eth0后,eth0不会自动切换到Active状态,且不会有数据的收发 [rootrhel5 ~]# ifup eth0 [rootrhel5 ~]# ifconfig eth0 eth0      Link encap:Ethernet  HWaddr 00:0C:29:DB:14:10             UP BROADCAST RUNNING SLAVE MULTICAST  MTU:1500  Metric:1           RX packets:2 errors:0 dropped:0 overruns:0 frame:0           TX packets:0 errors:0 dropped:0 overruns:0 carrier:0           collisions:0 txqueuelen:0            RX bytes:120 (120.0 b)  TX bytes:0 (0.0 b) [rootrhel5 ~]# cat /proc/net/bonding/bond0  Ethernet Channel Bonding Driver: v3.4.0 (October 7, 2008)  Bonding Mode: fault-tolerance (active-backup) Primary Slave: None Currently Active Slave: eth1 MII Status: up MII Polling Interval (ms): 1000 Up Delay (ms): 0 Down Delay (ms): 0   Slave Interface: eth1 MII Status: up Link Failure Count: 0 Permanent HW addr: 00:0c:29:db:14:1a  Slave Interface: eth0 MII Status: up Link Failure Count: 0 Permanent HW addr: 00:0c:29:db:14:10       本文转自Vnimos51CTO博客原文链接http://blog.51cto.com/vnimos/1065384如需转载请自行联系原作者

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/925175.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

门户网站开发技术 知乎下载ppt模板免费

def shape_print(n): #实心等腰三角形 for y in range(n): for x in range(n-y-1):#先循环打印空格 形成一个倒直角三角形 range()中的值是形成的规律 print( ,end) for z in range(y*21):#再循环打印X 形成一个等腰三角形 range()中的值是形成的规律 print(X,end) print() pri…

electron 安装失败

清理缓存重装# 删除依赖和锁文件 rm -rf node_modules pnpm-lock.yaml# 清理pnpm缓存 pnpm store prune# 重新安装 pnpm install#一行命令rm -rf node_modules pnpm-lock.yaml && npm cache clean --force 使用…

LeetCode刷题记录----62.不同路径(Medium) - 详解

pre { white-space: pre !important; word-wrap: normal !important; overflow-x: auto !important; display: block !important; font-family: "Consolas", "Monaco", "Courier New", …

python基础——正则表达式 - 指南

pre { white-space: pre !important; word-wrap: normal !important; overflow-x: auto !important; display: block !important; font-family: "Consolas", "Monaco", "Courier New", …

机器学习15:自监督式学习(Self-Supervised Learning)① - 实践

机器学习15:自监督式学习(Self-Supervised Learning)① - 实践2025-10-02 18:11 tlnshuju 阅读(0) 评论(0) 收藏 举报pre { white-space: pre !important; word-wrap: normal !important; overflow-x: auto !impo…

长沙旅游网站开发旅游网站的建设背景

ChatGPT4和Gemini Ultra被Claude 3 AI模型超越了? 3月4日周一,人工智能公司Anthropic推出了Claude 3系列AI模型和新型聊天机器人,其中包括Opus、Sonnet和Haiku三种模型,该公司声称,这是迄今为止它们开发的最快速、最强…

2025担保合同律师事务所推荐,专业团队高效解决法律难题!

2025担保合同律师事务所推荐,专业团队高效解决法律难题!在当今复杂的经济环境中,担保合同作为金融交易和商业合作中的重要法律工具,其纠纷和风险也日益增多。根据行业数据显示,近年来担保合同相关案件的年增长率保…

「补充篇」在Cloudflare上设置并更新SRV记录

「补充篇」在Cloudflare上设置并更新SRV记录索引 │ ├─关于本教程 ├─创建SRV记录 ├─获取DNS更新令牌 ├─获取区域ID ├─获取DNS记录ID ├─更新SRV记录 └─结尾关于本教程 在之前的教程中我们已经介绍了使用…

10.1 CSP模拟26 改题记录

HZOJ 写在前面 hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh T1几分钟出思路然后在写假的道路上越改越远,T2来不及了乱写,T3猜不到结论,只有T4是合理得分、、、 A. median 题意是给定5个长为…

Spring 核心 - AOP 面向切面编程入门, 通俗易懂

Spring 核心 - AOP 面向切面编程入门, 通俗易懂撰写本文目的只有一个,让你畅快阅读 AOP 知识,并搞定以下几个问题。 AOP 面向切面编程到底是什撰写本文目的只有一个,让你畅快阅读 AOP 知识,并搞定以下几个问题。AO…

2025年筒袋磁力泵实力厂家推荐榜:高效耐用与创新技术深度解

2025年筒袋磁力泵实力厂家推荐榜:高效耐用与创新技术深度解在化工、制药、石油等工业领域,筒袋磁力泵作为一种高效、无泄漏的流体输送设备,正日益成为关键工艺环节的核心装备。其采用磁力耦合驱动技术,彻底解决了传…

2025电源适配器权威推荐榜:高效稳定、安全耐用的优质品牌之

2025电源适配器权威推荐榜:高效稳定、安全耐用的优质品牌之选在当今数字化的时代,各种电子设备充斥着我们的生活和工作,从智能手机、平板电脑到笔记本电脑、智能穿戴设备等,这些设备都离不开电源适配器来提供稳定的…

「LUCKY STUN穿透」IPv4和IPv6分离重定向

「LUCKY STUN穿透」IPv4和IPv6分离重定向关于本教程 在之前的教程中我们已经实现了通过cloudflare的页面规则 以及重定向规则实现实现stun穿透端口的“固定” 使用页面规则:「LUCKY STUN穿透」使用Cloudflare的页面规…

2025航空插头权威推荐榜:M8/m12/公母对接/5芯/五芯/三芯/4芯/3芯/12芯航空插头优质性能与可靠品质的源头厂家之选

行业背景航空插头,作为电子设备中电流、信号连接的关键部件,广泛应用于航空航天、国防、工业自动化、交通运输等众多领域。随着科技的飞速发展,各行业对电子设备的性能和可靠性要求越来越高,这也对航空插头的质量、…

2025经侦律师优质品牌推荐:上海浦信律所专业护航!

2025经侦律师优质品牌推荐:上海浦信律所专业护航!在当今复杂多变的商业环境中,经济犯罪的形式日益多样化和隐蔽化,经侦律师的重要性愈发凸显。他们不仅要具备扎实的法律知识,还要应对各种技术挑战,为客户提供专业…

建筑人才网官方网站评职称wordpress目录结构

php的错误处理是比较复杂的, 本文讲解php中所有错误相关的重要知识点做一次梳理, 便于理解php的错误机制. 基础知识 在此之前, 先熟悉一下php error的基础知识 预定义常量运行时配置异常错误处理函数预定义常量 定义了所有php的错误类型常量, 每一个常量都是一个整型数值, 它的…

制作营销网站公司竞价推广培训

在英语学习中,我们经常遇到一些句子包含两个成分,如“人物”或“宾语补充说明”。这些句子可能是双宾语结构,也可能是宾语补足语结构。虽然两者都出现在动词后,但它们的功能和意义完全不同,本篇文章将会介绍一下小技巧…

实用指南:[Windows] 随手剪-视频合并工具 v0.12多种格式多段视频50多种转场效果

pre { white-space: pre !important; word-wrap: normal !important; overflow-x: auto !important; display: block !important; font-family: "Consolas", "Monaco", "Courier New", …

欧易-(OKX)交易所注册及KYC认证全流程指南

作为全球领先的加密货币交易平台,欧易(OKX)为用户提供安全便捷的数字资产交易服务。本文将详细介绍OKX的注册流程和KYC认证步骤,帮助您快速完成账户开通。 一、OKX注册流程下载安装OKX APP 您可以通过以下方式获取…

Window配置WSL(Ubuntu)环境

WSL是用于Windows系统之上的Linux子系统。可以在Windows系统中获得Linux系统环境,并完全直连计算机硬件,无需通过虚拟机虚拟硬件。WSL是什么 WSL(Windows Subsystem for Linux)是Win10系统推出的全新功能,让我们可…