当前位置: 首页 > news >正文

网站开发部门结构如何判断网站程序使用asp还是php

网站开发部门结构,如何判断网站程序使用asp还是php,wordpress淘宝客网站运营,凡客网站做SEO能被收录吗一、分析要求 1. 配置R5为ISP#xff0c;只能进行IP地址配置#xff0c;所有地址均配为公有IP地址。 - 在R5上#xff0c;将接口配置为公有IP地址#xff0c;并确保只进行了IP地址配置。 2. R1和R5之间使用PPP的PAP认证#xff0c;R5为主认证方#xff1b;R2于R5之间… 一、分析要求 1. 配置R5为ISP只能进行IP地址配置所有地址均配为公有IP地址。    - 在R5上将接口配置为公有IP地址并确保只进行了IP地址配置。 2. R1和R5之间使用PPP的PAP认证R5为主认证方R2于R5之间使用PPP的CHAP认证R5为主认证方R3于R5之间使用HDLC封装。    - 在R1上配置PPP连接并设置PAP认证指定R5为主认证方。    - 在R2上配置PPP连接并设置CHAP认证指定R5为主认证方。    - 在R3上配置HDLC封装。 3. R1/R2/R3构建一个MGRE环境R1为中心站点R1、R4间为点到点的GRE。    - 在R1、R2、R3上配置MGRE隧道确保它们在同一个MGRE环境中以R1为中心站点。    - 在R1和R4之间配置点到点的GRE隧道。 4. 整个私有网络基于RIP全网可达。    - 在整个私有网络上启用RIP路由协议确保全网可达。 5. 所有PC设置私有IP为源IP可以访问R5环回。    - 在所有PC上配置私有IP地址作为源IP地址。    - 确保这些PC可以通过配置的路由和隧道访问R5的环回接口。 二、操作过程 1. 配置IP地址 配置路由器、PC的IP地址及R5的环回 R1 [R1]int g 0/0/0 [R1-GigabitEthernet0/0/0]ip add 192.168.1.254 24 [R1-GigabitEthernet0/0/0]int s 4/0/0 [R1-Serial4/0/0]ip add 15.0.0.1 24 R2 [R2]int g0/0/0 [R2-GigabitEthernet0/0/0]ip add 192.168.2.254 24 [R2-GigabitEthernet0/0/0]int s 4/0/0 [R2-Serial4/0/0]ip add 25.0.0.1 24R3 [R3]int g 0/0/0 [R3-GigabitEthernet0/0/0]ip add 192.168.3.254 24 [R3-GigabitEthernet0/0/0]int s 4/0/0 [R3-Serial4/0/0]ip add 35.0.0.1 24 R4 [R4]int g 0/0/0 [R4-GigabitEthernet0/0/0]ip add 45.0.0.1 24 [R4-GigabitEthernet0/0/0]int g 0/0/1 [R4-GigabitEthernet0/0/1]ip add 192.168.4.254 24 R5 [R5]int s 3/0/0 [R5-Serial3/0/0]ip add 15.0.0.2 24 [R5-Serial3/0/0]int s 3/0/1 [R5-Serial3/0/1]ip add 25.0.0.2 24 [R5-Serial3/0/1]int s 4/0/0 [R5-Serial4/0/0]ip add 35.0.0.2 24 [R5-Serial4/0/0]int g 0/0/0 [R5-GigabitEthernet0/0/0]ip add 45.0.0.2 24 [R5-GigabitEthernet0/0/0]int l 0 [R5-LoopBack0]ip add 5.5.5.5 24 查看接口IP地址 [R5]display ip interface brief 2. PAP认证 主认证方R5配置 [R5-aaa]local-user admin password cipher 123456 [R5-aaa]local-user admin service-type ppp [R5-aaa]int s 3/0/0 [R5-Serial3/0/0]ppp authentication-mode pap 被认证方R1配置 [R1-Serial4/0/0]ppp pap local-user admin password cipher 123456测试 3. CHAP认证 主认证方R5配置【类似PAP】 [R5]aaa [R5-aaa]local-user admin2 password cipher 123456 [R5-aaa]local-user admin2 service-type ppp [R5-aaa]int s 3/0/1 [R5-Serial3/0/1]ppp authentication-mode chap 被认证方R2配置 [R2]int s 4/0/0 [R2-Serial4/0/0]ppp chap user admin2 [R2-Serial4/0/0]ppp chap password cipher 123456 测试 R2 ping R5 4. HDLC协议封装 [R3-Serial4/0/0]link-protocol hdlc[R5-Serial4/0/0]link-protocol hdlc 测试 R3 ping R5 5. 配置GRE环境  [R1]int Tunnel 0/0/0 [R1-Tunnel0/0/0]ip add 192.168.5.1 24 [R1-Tunnel0/0/0]tunnel-protocol gre [R1-Tunnel0/0/0]source 15.0.0.1 [R1-Tunnel0/0/0]destination 45.0.0.1[R4]int Tunnel 0/0/0 [R4-Tunnel0/0/0]ip add 192.168.5.4 24 [R4-Tunnel0/0/0]tunnel-protocol gre [R4-Tunnel0/0/0]source 45.0.0.1 [R4-Tunnel0/0/0]destination 15.0.0.16. 配置MGRE环境 中心R1配置 [R1]int t 0/0/1 [R1-Tunnel0/0/1]ip add 192.168.6.1 24 [R1-Tunnel0/0/1]tunnel-protocol gre p2mp [R1-Tunnel0/0/1]source 15.0.0.1 [R1-Tunnel0/0/1]nhrp network-id 100分支R2配置 [R2]int t 0/0/1 [R2-Tunnel0/0/1]ip add 192.168.6.2 24 [R2-Tunnel0/0/1]tunnel-protocol gre p2mp [R2-Tunnel0/0/1]source Serial 4/0/0 [R2-Tunnel0/0/1]nhrp network-id 100 [R2-Tunnel0/0/1]nhrp entry 192.168.6.1 15.0.0.1 register分支R3配置 [R3]int t 0/0/1 [R3-Tunnel0/0/1]ip add 192.168.6.3 24 [R3-Tunnel0/0/1]tunnel-protocol gre p2mp [R3-Tunnel0/0/1]source s 4/0/0 [R3-Tunnel0/0/1]nhrp network-id 100 [R3-Tunnel0/0/1]nhrp entry 192.168.6.1 15.0.0.1 register 7. 开启RIP动态路由协议 [R1]ip route-static 0.0.0.0 0 15.0.0.2 [R1]rip 1 [R1-rip-1]v 2 [R1-rip-1]undo summary [R1-rip-1]network 192.168.1.0 [R1-rip-1]network 192.168.5.0 [R1-rip-1]network 192.168.6.0[R2]ip route-static 0.0.0.0 0 25.0.0.2 [R2]rip 1 [R2-rip-1]v 2 [R2-rip-1]undo summary [R2-rip-1]network 192.168.2.0 [R2-rip-1]network 192.168.6.0[R3]ip route-static 0.0.0.0 0 35.0.0.2 [R3]rip 1 [R3-rip-1]v 2 [R3-rip-1]undo summary [R3-rip-1]network 192.168.3.0 [R3-rip-1]network 192.168.6.0[R4]ip route-static 0.0.0.0 0 45.0.0.2 [R4]rip 1 [R4-rip-1]v 2 [R4-rip-1]undo summary [R4-rip-1]network 192.168.4.0 [R4-rip-1]network 192.168.5.0对NFS的隧道接口上开启伪广播配置 [R1-Tunnel0/0/1]nhrp entry multicast dynamic 在NFS隧道接口上关闭水平分割 [R1-Tunnel0/0/1]undo rip split-horizon 测试 GREPC1 ping PC4 MGREPC1 ping PC2和PC3 8. NAT配置 [R1]acl 2000 [R1-acl-basic-2000]rule permit source 192.168.1.0 0.0.0.255 [R1-acl-basic-2000]q [R1]int Serial 4/0/0 [R1-Serial4/0/0]nat outbound 2000[R2]acl 2000 [R2-acl-basic-2000]rule permit source 192.168.2.0 0.0.0.255 [R2-acl-basic-2000]q [R2]int s 4/0/0 [R2-Serial4/0/0]nat outbound 2000[R3]acl 2000 [R3-acl-basic-2000]rule permit source 192.168.3.0 0.0.0.255 [R3-acl-basic-2000]q [R3]int s 4/0/0 [R3-Serial4/0/0]nat outbound 2000[R4]acl 2000 [R4-acl-basic-2000]rule permit source 192.168.4.0 0.0.0.255 [R4-acl-basic-2000]q [R4]int g 0/0/0 [R4-GigabitEthernet0/0/0]nat outbound 2000测试
http://www.tj-hxxt.cn/news/220720.html

相关文章:

  • 怎么做金融营销网站汕头市城市建设开发总公司
  • 企业内部网站建设网站seo门户网价格是多少钱
  • 江西新农村建设权威网站郴州网站建设方案策划
  • 网站的建设公司网站后台管理入口
  • 做网站前端深圳物流公司联系电话
  • 杭州手机网站制作公司珠江新城越秀金融大厦
  • 佛山论坛建站模板增塑剂网站建设
  • 宁波seo推广优化公司天津seo建站
  • 做网站要付哪些钱建设项目网站备案申请表
  • wordpress网站维护教程东莞短视频seo制作
  • 建设好网站能赚到钱吗漯河企业网站建设
  • 丽水专业网站建设公司襄阳公司网站建设
  • 国外注册机网站wordpress 小工具添加图片
  • 宝安网站建设 名匠市场调研报告800字
  • 帮人做推广的网站如何搭建个人博客
  • 城乡建设招投标网站闸北区网站建设网页设计
  • 网站的系统建设方式有哪些方面教育机构做网站素材
  • 公众平台微信公众号官网wordpress仿seowhy基础指南模板
  • 佛山网站制作在线百度首页推广
  • 网站开发要学多久深圳十大建筑设计公司
  • 网站备案做优惠券怎么在网站上做排名
  • 能不能用自己的主机做网站如何自己做视频网站
  • 但是网站相关内容和程序并没有建设完_其次网站公司给我公司的深圳坪山网站建设
  • 网站设计建设公司怎么做易推客app拉新平台
  • 做导航网站把别人的网址链接过来要经过允许吗公关公司如何处理危机
  • 0797 网站制作高端网站建设服务商上海雍熙
  • 千图网素材免费西安网站优化
  • 免费注册一个网站事件营销成功案例
  • 加大整合力度网站集约建设怎么将微信同步到wordpress
  • php外贸网站制作怎么办?