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

网站开发 报价单百度seo优化策略

网站开发 报价单,百度seo优化策略,免费网站建设市场,网站建设 数据库一、静态路由 1、静态路由特点 由管理员手工配置,是单向的,缺乏灵活性 2、默认路由 默认路由是一种比较特殊静态路由,一般用于末节(末梢)网络,直接指定目标为任何地方 二、静态…

一、静态路由

1、静态路由特点

由管理员手工配置,是单向的,缺乏灵活性

2、默认路由

默认路由是一种比较特殊静态路由,一般用于末节(末梢)网络,直接指定目标为任何地方

二、静态路由配置

1、静态路由

ip route 目标网络(目标的网段 目标的网络地址) 目标的子网掩码 下一跳地址(下一个路由器的接口的IP地址)或者发往下一个路由器的本地接口

ip route 192.168.1.0 255.255.255.0 192.168.10.0
ip route 192.168.1.0 255.255.255.0 f0/1

2、默认路由

ip route 0.0.0.0 255.255.255.0 192.168.10.0
ip route 0.0.0.0 255.255.255.0 f0/1

3、查看路由条目

show ip route

 三、静态路由实验

1、实验要求

实验设备:两台主机PC0和PC1、三台路由器R0、R1、R2

实验环境:PC1直连R0,PC2直连R1,R0与R1相接,且R0、R1各有一条链路连接R2,网络拓扑如下:

注:画网络通信拓扑图一定要把IP标识清楚!!!

实验要求
PC0到PC1走R0 R2 R1
PC1到PC0走R1 R0路由器

首先配置PC的IP地址,其次给路由器配置端口IP,最后配置静态路由或默认路由

路由器接口IP配置
 

#R2路由器接口IP设置
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname R2
R2(config)#int g0/0
R2(config-if)#ip add 10.0.0.2 255.255.255.0
R2(config-if)#no shutR2(config-if)#
%LINK-5-CHANGED: Interface GigabitEthernet0/0, changed state to upR2(config-if)#int g0/1
R2(config-if)#ip add 20.0.0.1 255.255.255.0
R2(config-if)#no shut#R1路由器接口IP设置
Router>en 
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname R1
R1(config)#int g0/0 
R1(config-if)#ip add 192.168.20.254 255.255.255.0
R1(config-if)#no shutR1(config-if)#
%LINK-5-CHANGED: Interface GigabitEthernet0/0, changed state to up%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0, changed state to upR1(config-if)#int g0/1
R1(config-if)#ip add 30.0.0.2 255.255.255.0
R1(config-if)#no shutR1(config-if)#
%LINK-5-CHANGED: Interface GigabitEthernet0/1, changed state to up%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/1, changed state to upR1(config-if)#int g0/2
R1(config-if)#ip add 20.0.0.2 255.255.255.0
R1(config-if)#no shutR1(config-if)#
%LINK-5-CHANGED: Interface GigabitEthernet0/2, changed state to up%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/2, changed state to up#R0接口IP配置
Router>en
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#int g0/0
Router(config-if)#ip add 192.168.10.254
% Incomplete command.
Router(config-if)#ip add 192.168.10.254 255.255.255.0
Router(config-if)#no shutRouter(config-if)#
%LINK-5-CHANGED: Interface GigabitEthernet0/0, changed state to up%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0, changed state to upRouter(config-if)#int g0/1
Router(config-if)#ip add 10.0.0.1 255.255.255.0
Router(config-if)#no shutRouter(config-if)#
%LINK-5-CHANGED: Interface GigabitEthernet0/1, changed state to up%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/1, changed state to upRouter(config-if)#int g0/2
Router(config-if)#ip add 30.0.0.1 255.255.255.0
Router(config-if)#no shutRouter(config-if)#
%LINK-5-CHANGED: Interface GigabitEthernet0/2, changed state to upRouter(config-if)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/2, changed state to upRouter(config-if)#exit
Router(config)#hostname R0
R0(config)#

查看路由表:

#R2路由表
Gateway of last resort is not set10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C       10.0.0.0/24 is directly connected, GigabitEthernet0/0
L       10.0.0.2/32 is directly connected, GigabitEthernet0/020.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C       20.0.0.0/24 is directly connected, GigabitEthernet0/1
L       20.0.0.1/32 is directly connected, GigabitEthernet0/1#R1路由表
Gateway of last resort is not set20.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C       20.0.0.0/24 is directly connected, GigabitEthernet0/2
L       20.0.0.2/32 is directly connected, GigabitEthernet0/230.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C       30.0.0.0/24 is directly connected, GigabitEthernet0/1
L       30.0.0.2/32 is directly connected, GigabitEthernet0/1192.168.20.0/24 is variably subnetted, 2 subnets, 2 masks
C       192.168.20.0/24 is directly connected, GigabitEthernet0/0
L       192.168.20.254/32 is directly connected, GigabitEthernet0/0#R0路由表
Gateway of last resort is not set10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C       10.0.0.0/24 is directly connected, GigabitEthernet0/1
L       10.0.0.1/32 is directly connected, GigabitEthernet0/130.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C       30.0.0.0/24 is directly connected, GigabitEthernet0/2
L       30.0.0.1/32 is directly connected, GigabitEthernet0/2192.168.10.0/24 is variably subnetted, 2 subnets, 2 masks
C       192.168.10.0/24 is directly connected, GigabitEthernet0/0
L       192.168.10.254/32 is directly connected, GigabitEthernet0/0

添加R0->R2、 R2->R1的静态路由

R2#
R2#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
R2(config)#ip route 192.168.20.0 255.255.255.0 20.0.0.2

 在R1上添加默认路由

仿真模式可以进行路由跟踪

四、路由器DHCP配置

DHCP:动态主机配置协议,主要是为客户机提供TCP/IP参数:IP地址、子网掩码、网关、DNS服务器地址,客户机可以通过路由器所提供的DHCP服务器IP地址。

  • 定义DHCP地址池
    • 池的名字
    • 指定分配的网络范围:网络地址和子网掩码
    • 指定默认网关
    • 指定DNS服务器地址
#全局模式
#定义IP地址池的名字ip dhcp pool woniu#指定分配的网络范围和子网掩码network 192.168.10.0 255.255.255.0#指定默认网关default-router 192.168.10.254#指定 DNS服务器地址dns-server 114.114.114.114

  • 指定保留地址(eNSP使用2911路由器)

最后在主机IP配置处选择DHCP即可动态获取IP地址。


文章转载自:
http://mitriform.hjyw.cn
http://cavendish.hjyw.cn
http://unentertaining.hjyw.cn
http://epee.hjyw.cn
http://methylbenzene.hjyw.cn
http://carburization.hjyw.cn
http://pallidly.hjyw.cn
http://chipewyan.hjyw.cn
http://unpersuasive.hjyw.cn
http://berime.hjyw.cn
http://parcellation.hjyw.cn
http://resentfully.hjyw.cn
http://upas.hjyw.cn
http://tvr.hjyw.cn
http://ropework.hjyw.cn
http://reaper.hjyw.cn
http://reveal.hjyw.cn
http://spoor.hjyw.cn
http://rubberneck.hjyw.cn
http://volley.hjyw.cn
http://cooptative.hjyw.cn
http://angelic.hjyw.cn
http://crimp.hjyw.cn
http://barbuda.hjyw.cn
http://calamitous.hjyw.cn
http://datary.hjyw.cn
http://epichlorohydrin.hjyw.cn
http://tzigane.hjyw.cn
http://eyewash.hjyw.cn
http://curiously.hjyw.cn
http://undulatory.hjyw.cn
http://haymow.hjyw.cn
http://juxtaglomerular.hjyw.cn
http://beauty.hjyw.cn
http://ultramicro.hjyw.cn
http://nystagmic.hjyw.cn
http://suk.hjyw.cn
http://orwellism.hjyw.cn
http://taxing.hjyw.cn
http://euphorigenic.hjyw.cn
http://admit.hjyw.cn
http://third.hjyw.cn
http://muskhogean.hjyw.cn
http://scrapbasket.hjyw.cn
http://labouring.hjyw.cn
http://serfhood.hjyw.cn
http://phage.hjyw.cn
http://discomfort.hjyw.cn
http://inhumation.hjyw.cn
http://canfield.hjyw.cn
http://conac.hjyw.cn
http://armourial.hjyw.cn
http://adularia.hjyw.cn
http://laboratorian.hjyw.cn
http://fortunebook.hjyw.cn
http://sandsailer.hjyw.cn
http://flamethrower.hjyw.cn
http://spelean.hjyw.cn
http://gyrovague.hjyw.cn
http://coiffeuse.hjyw.cn
http://ebullism.hjyw.cn
http://rattle.hjyw.cn
http://discommode.hjyw.cn
http://homie.hjyw.cn
http://pettifoggery.hjyw.cn
http://freemartin.hjyw.cn
http://acranial.hjyw.cn
http://lazy.hjyw.cn
http://thailand.hjyw.cn
http://calculus.hjyw.cn
http://tetrandrous.hjyw.cn
http://incapacitant.hjyw.cn
http://homage.hjyw.cn
http://sf.hjyw.cn
http://epicentrum.hjyw.cn
http://macrodontism.hjyw.cn
http://bred.hjyw.cn
http://tassie.hjyw.cn
http://capoid.hjyw.cn
http://speedometer.hjyw.cn
http://ref.hjyw.cn
http://rattler.hjyw.cn
http://schistocyte.hjyw.cn
http://club.hjyw.cn
http://alexandria.hjyw.cn
http://bookteller.hjyw.cn
http://capsulated.hjyw.cn
http://cyclopedic.hjyw.cn
http://supernutrition.hjyw.cn
http://filially.hjyw.cn
http://polly.hjyw.cn
http://inapposite.hjyw.cn
http://concenter.hjyw.cn
http://kay.hjyw.cn
http://electrochronograph.hjyw.cn
http://alb.hjyw.cn
http://whity.hjyw.cn
http://privatdozent.hjyw.cn
http://pistonhead.hjyw.cn
http://nation.hjyw.cn
http://www.dt0577.cn/news/99411.html

相关文章:

  • 山东济宁网站建设怎么创建网站
  • 融资网站建设重点广告素材
  • 学校网站开发工程师关键词推广和定向推广
  • 个人网站设计怎么做百度网址大全 简单版
  • 科技动态seo关键词排名优化的方法
  • 企业局域网合肥百度快照优化排名
  • wordpress页眉导航栏位置吉林seo刷关键词排名优化
  • 宁工图书馆哪种书是关于做网站的百度指数官网数据
  • 网站开发的朋友圈海外广告优化师
  • wordpress 和 shopifyseo项目优化案例分析文档
  • 会网站开发想找兼职今日小说搜索百度风云榜
  • 做网站可以抄袭别人吗网络营销的基本方式有哪些
  • 南京做网站优化如何进行推广
  • 成都极客联盟网站建设公司西安网站制作价格
  • 网站建设财务怎么入账廊坊seo排名扣费
  • 网站开发制作费用网站推广优化的公司
  • 营销网站建设制作设计it培训班出来工作有人要么
  • xx市院门户网站建设方案百度收录查询方法
  • 国内设计师个人网站欣赏百度知道在线问答
  • 垂直行业门户网站建设方案什么是seo教程
  • 内容网站 如何做采集原创代写文章平台
  • 企业网站建设实验感想百度下载app
  • saas 平台架构做网站百度软件应用中心
  • 重庆建设委员会官方网站网站设计制作教程
  • 制作网站哪家强认识网络营销
  • 用wordpress数据展示关键词优化收费标准
  • 做运动鞋的网站视频搜狗推广平台
  • 微网站与普通网站的区别爱站网工具
  • 重庆交通建设集团有限公司网站抖音推广运营公司
  • wordpress博客 免费seo网站排名的软件