设为首页 收藏本站
查看: 1458|回复: 6

[经验分享] OSPF多区域配置

[复制链接]

尚未签到

发表于 2012-10-8 10:51:39 | 显示全部楼层 |阅读模式
网络拓扑图:
972eb3f855e3c2ec1ebdbee6f235bdb7.jpg
OSPF多区域配置
R1:
Router>
Router>en
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#no ip domain lookup
Router(config)#hostname Rz1
Rz1(config)#int s1/0
Rz1(config-if)#ip address 192.168.12.1 255.255.255.0
Rz1(config-if)#no shut
Rz1(config-if)#exit
Rz1(config)#int lo0
Rz1(config-if)#ip address 10.17.10.128 255.255.255.0
Rz1(config-if)#no shut
Rz1(config-if)#exit
Rz1(config)#int fa0/0
Rz1(config-if)#ip address 10.172.196.254 255.255.255.0
Rz1(config-if)#no shut
Rz1(config-if)#exit
Rz1(config)#router ospf 11 =================配置OSPF协议
Rz1(config-router)#router-id 1.1.1.1
Rz1(config-router)#network 192.168.12.0 0.0.0.255 area 1
Rz1(config-router)#network 10.17.10.0 0.0.0.255 area 1
Rz1(config-router)#network 10.172.196.0 0.0.0.255 area 1
Rz1(config-router)#end
%SYS-5-CONFIG_I: Configured from console by console
Rz1#write
Building configuration...
[OK]
Rz1#
R2:
Router>
Router>en
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#no ip domain lookup
Router(config)#hostname Rz2
Rz2(config)#int s1/1
Rz2(config-if)#ip address 192.168.12.2 255.255.255.0
Rz2(config-if)#clock rate 56000
Rz2(config-if)#no shut
%LINK-5-CHANGED: Interface Serial1/1, changed state to up
Rz2(config-if)#exit
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial1/1, changed state to up
Rz2(config)#int s1/1
Rz2(config-if)#exit
Rz2(config)#int s1/0
Rz2(config-if)#ip address 192.168.23.2 255.255.255.0
Rz2(config-if)#clock rate 56000
Rz2(config-if)#no shu
%LINK-5-CHANGED: Interface Serial1/0, changed state to down
Rz2(config-if)#exit
Rz2(config)#router ospf 22 =================配置OSPF协议
Rz2(config-router)#router-id 2.2.2.2
Rz2(config-router)#network 192.168.12.0 0.0.0.255 area 1
Rz2(config-router)#network 192.168.23.0 0.0.0.255 area 0
Rz2(config-router)#end
%SYS-5-CONFIG_I: Configured from console by console
Rz2#write
Building configuration...
[OK]
Rz2#
R3:
Router>
Router>en
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#no ip domain lookup
Router(config)#hostname Rz3
Rz3(config)#int s1/0
Rz3(config-if)#ip address 192.168.23.3 255.255.255.0
Rz3(config-if)#no shut
Rz3(config-if)#exit
Rz3(config)#int s1/1
Rz3(config-if)#ip address 192.168.34.3 255.255.255.0
Rz3(config-if)#clock rate 56000
Rz3(config-if)#no shut
Rz3(config-if)#exit
Rz3(config)#int fa0/0
Rz3(config-if)#ip address 10.157.196.254 255.255.255.0
Rz3(config-if)#no shut
Rz3(config-if)#exit
Rz3(config)#router ospf 33 =====================配置OSPF协议
Rz3(config-router)#router-id 3.3.3.3
Rz3(config-router)#network 10.157.196.0 0.0.0.255 area 0
Rz3(config-router)#network 192.168.23.0 0.0.0.255 area 0
Rz3(config-router)#network 192.168.34.0 0.0.0.255 area 1
Rz3(config-router)#end
Rz3#write
Building configuration...
[OK]
Rz3#
R4:
Router>
Router>en
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#no ip domain lookup
Router(config)#hostname Rz4
Rz4(config)#int s1/0
Rz4(config-if)#ip address 192.168.34.4 255.255.255.0
Rz4(config-if)#no shut
%LINK-5-CHANGED: Interface Serial1/0, changed state to up
Rz4(config-if)#exit
Rz4(config)#int lo0
Rz4(config-if)#ip address 172.20.196.4 255.255.255.0
Rz4(config-if)#no shut
Rz4(config-if)#exit
Rz4(config)#int fa0/0
Rz4(config-if)#ip address 112.10.17.254 255.255.255.0
Rz4(config-if)#no shut
Rz4(config-if)#exit
Rz4(config)#int fa0/1
Rz4(config-if)#ip address 10.110.122.254 255.255.255.0
Rz4(config-if)#no shut
Rz4(config-if)#exit
Rz4(config)#router ospf 44 =========配置OSPF协议
Rz4(config-router)#router-id 4.4.4.4
Rz4(config-router)#network 192.168.34.0 0.0.0.255 area 2
Rz4(config-router)#network 172.20.196.0 0.0.0.255 area 2
Rz4(config-router)#network 10.110.122.0 0.0.0.255 area 2
Rz4(config-router)#network 112.10.17.0 0.0.0.255 area 2
Rz4(config-router)#end
Rz4#write
Building configuration...
[OK]
Rz4#
配置完成。
测试:
查看路由表:
1、查看R1路由器的路由表:
Rz1#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
* - candidate default, U - per-user static route, o - ODR
P - periodic downloaded static route
Gateway of last resort is not set
10.0.0.0/24 is subnetted, 4 subnets
C 10.17.10.0 is directly connected, Loopback0
O IA 10.110.122.0 [110/2344] via 192.168.12.2, 00:39:19, Serial1/0
O IA 10.157.196.0 [110/1563] via 192.168.12.2, 00:40:50, Serial1/0
C 10.172.196.0 is directly connected, FastEthernet0/0
112.0.0.0/24 is subnetted, 1 subnets
O IA 112.10.17.0 [110/2344] via 192.168.12.2, 00:39:04, Serial1/0
172.20.0.0/32 is subnetted, 1 subnets
O IA 172.20.196.4 [110/2344] via 192.168.12.2, 00:53:51, Serial1/0
C 192.168.12.0/24 is directly connected, Serial1/0
O IA 192.168.23.0/24 [110/1562] via 192.168.12.2, 01:00:15, Serial1/0
O IA 192.168.34.0/24 [110/2343] via 192.168.12.2, 00:56:38, Serial1/0
Rz1#
2、查看R2路由器的路由表:
R2:
Rz2#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
* - candidate default, U - per-user static route, o - ODR
P - periodic downloaded static route
Gateway of last resort is not set
10.0.0.0/8 is variably subnetted, 4 subnets, 2 masks
O 10.17.10.128/32 [110/782] via 192.168.12.1, 01:02:01, Serial1/1
O IA 10.110.122.0/24 [110/1563] via 192.168.23.3, 00:40:03, Serial1/0
O 10.157.196.0/24 [110/782] via 192.168.23.3, 00:41:33, Serial1/0
O 10.172.196.0/24 [110/782] via 192.168.12.1, 00:43:01, Serial1/1
112.0.0.0/24 is subnetted, 1 subnets
O IA 112.10.17.0 [110/1563] via 192.168.23.3, 00:39:47, Serial1/0
172.20.0.0/32 is subnetted, 1 subnets
O IA 172.20.196.4 [110/1563] via 192.168.23.3, 00:54:34, Serial1/0
C 192.168.12.0/24 is directly connected, Serial1/1
C 192.168.23.0/24 is directly connected, Serial1/0
O IA 192.168.34.0/24 [110/1562] via 192.168.23.3, 00:57:21, Serial1/0
Rz2#
3、查看R3路由器的路由表:
R3:
Rz3#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
* - candidate default, U - per-user static route, o - ODR
P - periodic downloaded static route
Gateway of last resort is not set
10.0.0.0/8 is variably subnetted, 4 subnets, 2 masks
O IA 10.17.10.128/32 [110/1563] via 192.168.23.2, 01:00:17, Serial1/0
O 10.110.122.0/24 [110/782] via 192.168.34.4, 00:40:59, Serial1/1
C 10.157.196.0/24 is directly connected, FastEthernet0/0
O IA 10.172.196.0/24 [110/1563] via 192.168.23.2, 00:43:48, Serial1/0
112.0.0.0/24 is subnetted, 1 subnets
O 112.10.17.0 [110/782] via 192.168.34.4, 00:40:44, Serial1/1
172.20.0.0/32 is subnetted, 1 subnets
O 172.20.196.4 [110/782] via 192.168.34.4, 00:55:31, Serial1/1
O IA 192.168.12.0/24 [110/1562] via 192.168.23.2, 01:00:17, Serial1/0
C 192.168.23.0/24 is directly connected, Serial1/0
C 192.168.34.0/24 is directly connected, Serial1/1
Rz3#
4、查看R4路由器的路由表:
R4:
Rz4#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
* - candidate default, U - per-user static route, o - ODR
P - periodic downloaded static route
Gateway of last resort is not set
10.0.0.0/8 is variably subnetted, 4 subnets, 2 masks
O IA 10.17.10.128/32 [110/2344] via 192.168.34.3, 00:56:18, Serial1/0
C 10.110.122.0/24 is directly connected, FastEthernet0/1
O IA 10.157.196.0/24 [110/782] via 192.168.34.3, 00:42:49, Serial1/0
O IA 10.172.196.0/24 [110/2344] via 192.168.34.3, 00:44:12, Serial1/0
112.0.0.0/24 is subnetted, 1 subnets
C 112.10.17.0 is directly connected, FastEthernet0/0
172.20.0.0/24 is subnetted, 1 subnets
C 172.20.196.0 is directly connected, Loopback0
O IA 192.168.12.0/24 [110/2343] via 192.168.34.3, 00:56:18, Serial1/0
O IA 192.168.23.0/24 [110/1562] via 192.168.34.3, 00:56:18, Serial1/0
C 192.168.34.0/24 is directly connected, Serial1/0
Rz4#
用ping命令测试:
PC>ping DNS.Server.com
Pinging 10.157.196.10 with 32 bytes of data:
Reply from 10.157.196.10: bytes=32 time=125ms TTL=125
Reply from 10.157.196.10: bytes=32 time=110ms TTL=125
Reply from 10.157.196.10: bytes=32 time=78ms TTL=125
Reply from 10.157.196.10: bytes=32 time=125ms TTL=125
Ping statistics for 10.157.196.10:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 78ms, Maximum = 125ms, Average = 109ms
PC>
PC>ping Web.cysd.com
Pinging 112.10.17.3 with 32 bytes of data:
Reply from 112.10.17.3: bytes=32 time=110ms TTL=124
Reply from 112.10.17.3: bytes=32 time=143ms TTL=124
Reply from 112.10.17.3: bytes=32 time=141ms TTL=124
Reply from 112.10.17.3: bytes=32 time=172ms TTL=124
Ping statistics for 112.10.17.3:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 110ms, Maximum = 172ms, Average = 141ms
PC>
PC>ping Market.cysd.com
Pinging 10.110.122.3 with 32 bytes of data:
Reply from 10.110.122.3: bytes=32 time=156ms TTL=124
Reply from 10.110.122.3: bytes=32 time=140ms TTL=124
Reply from 10.110.122.3: bytes=32 time=128ms TTL=124
Reply from 10.110.122.3: bytes=32 time=141ms TTL=124
Ping statistics for 10.110.122.3:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 128ms, Maximum = 156ms, Average = 141ms
PC>
0022cb9b30f9ae4d03c24c31998e00bd.jpg
77b049c589ad1b05c5e9a5b0fc217212.jpg
f6797dc170a3a365ecd1024c797e5597.jpg
对路由器进行安全设置:
1、 对路由器进行con和vty配置:
R1:
Rz1>en
Rz1#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Rz1(config)#line console 0
Rz1(config-line)#password cisco
Rz1(config-line)#login
Rz1(config-line)#exit
Rz1(config)#line vty 0 4
Rz1(config-line)#password cisco
Rz1(config-line)#login
Rz1(config-line)#exit
Rz1(config)#enable password cisco
Rz1(config)#service password-encryption
Rz1(config)#end
%SYS-5-CONFIG_I: Configured from console by console
Rz1#write
Building configuration...
[OK]
Rz1#
R2:
Rz2>enable
Rz2#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Rz2(config)#line console 0
Rz2(config-line)#password cisco
Rz2(config-line)#login
Rz2(config-line)#exit
Rz2(config)#line vty 0 4
Rz2(config-line)#password cisco
Rz2(config-line)#login
Rz2(config-line)#exit
Rz2(config)#enable password cisco
Rz2(config)#service password-encryption
Rz2(config)#end
%SYS-5-CONFIG_I: Configured from console by console
Rz2#write
Building configuration...
[OK]
Rz2#
R3:
Rz3>enable
Rz3#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Rz3(config)#line console 0
Rz3(config-line)#password cisco
Rz3(config-line)#login
Rz3(config-line)#exit
Rz3(config)#line vty 0 4
Rz3(config-line)#password cisco
Rz3(config-line)#login
Rz3(config-line)#exit
Rz3(config)#enable password cisco
Rz3(config)#service password-encryption
Rz3(config)#end
%SYS-5-CONFIG_I: Configured from console by console
Rz3#write
Building configuration...
[OK]
Rz3#
R4:
Rz4>enable
Rz4#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Rz4(config)#line console 0
Rz4(config-line)#password cisco
Rz4(config-line)#login
Rz4(config-line)#exit
Rz4(config)#line vty 0 4
Rz4(config-line)#password cisco
Rz4(config-line)#login
Rz4(config-line)#exit
Rz4(config)#enable password cisco
Rz4(config)#service password-encryption
Rz4(config)#end
%SYS-5-CONFIG_I: Configured from console by console
Rz4#write
Building configuration...
[OK]
Rz4#
50e5ce4980aadce0d41729bafd9770d6.jpg
实验完成。

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-1417-1-1.html 上篇帖子: 思科RIP动态路由基本配置 下篇帖子: OSPF:LSA Type-7 to Type-5 转发地址抑制

尚未签到

发表于 2013-3-17 22:48:47 | 显示全部楼层
啥时硬件也可以COPY就好了!

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

尚未签到

发表于 2013-5-16 15:08:00 | 显示全部楼层
男人在结婚前觉得适合自己的女人很少,结婚后觉得适合自己的女人很多。

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

尚未签到

发表于 2013-5-19 03:40:44 | 显示全部楼层
没看完~~~~~~ 先顶,好同志

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

尚未签到

发表于 2013-5-22 02:43:10 | 显示全部楼层
此地禁止大小便,违者没收工具。

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

尚未签到

发表于 2013-5-25 17:47:50 | 显示全部楼层
长大了娶唐僧做老公,能玩就玩一玩,不能玩就把他吃掉。

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

尚未签到

发表于 2013-5-30 09:55:03 | 显示全部楼层
我本非随便的人,但如果你想随便,那我就随你的便好啦!

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表