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

巢湖网站开发文章优化关键词排名

巢湖网站开发,文章优化关键词排名,网站建设整体方案论文,微信自己开发小程序学习目标: NAT 学习内容: NAT 1.要求——基本的 2.模型 3.IP分配、规划、优化 1)思路 R2为ISP路由器,其上只能配置ip地址,不得冉进行其他的任何配置—ospf配置 认证 、汇总、沉默接口、加快收敛、缺省路由 PC1-PC2…

学习目标:

  • NAT

学习内容:

  1. NAT

1.要求——基本的

2.模型

3.IP分配、规划、优化

1)思路

 R2为ISP路由器,其上只能配置ip地址,不得冉进行其他的任何配置—ospf配置

                                                                         认证 、汇总、沉默接口、加快收敛、缺省路由

PC1-PC2可以ping通客户平板和DNS服务器;——NAT    动态                            

客户端可以通过域名访问http1,通过地址访问HTTP2——DNS


R1为边界路由器,其上只有一个公有ip地址——端口映射

                                                                                                     r1——  空接口防止被动黑洞

                                                                                                                       骨干——mask30

 2)模型

ospf、  NET

3.输入命令和检测

1)IP配置

 

 

 2)DNS

isp 

ping 192.168.1.1
  PING 192.168.1.1: 56  data bytes, press CTRL_C to break
    Reply from 192.168.1.1: bytes=56 Sequence=1 ttl=255 time=30 ms
    Reply from 192.168.1.1: bytes=56 Sequence=2 ttl=255 time=20 ms
    Reply from 192.168.1.1: bytes=56 Sequence=3 ttl=255 time=30 ms
    Reply from 192.168.1.1: bytes=56 Sequence=4 ttl=255 time=20 ms
    Reply from 192.168.1.1: bytes=56 Sequence=5 ttl=255 time=30 ms

  --- 192.168.1.1 ping statistics ---
    5 packet(s) transmitted
    5 packet(s) received
    0.00% packet loss
    round-trip min/avg/max = 20/26/30 ms

r1 

ping 192.168.2.1
  PING 192.168.2.1: 56  data bytes, press CTRL_C to break
    Reply from 192.168.2.1: bytes=56 Sequence=1 ttl=255 time=20 ms
    Reply from 192.168.2.1: bytes=56 Sequence=2 ttl=255 time=30 ms
    Reply from 192.168.2.1: bytes=56 Sequence=3 ttl=255 time=30 ms
    Reply from 192.168.2.1: bytes=56 Sequence=4 ttl=255 time=30 ms
    Reply from 192.168.2.1: bytes=56 Sequence=5 ttl=255 time=20 ms

  --- 192.168.2.1 ping statistics ---
    5 packet(s) transmitted
    5 packet(s) received
    0.00% packet loss
    round-trip min/avg/max = 20/26/30 ms

地址访问HTTP2 

3)Ip配置、ospf配置的命令

骨干
r1
interface GigabitEthernet 0/0/1
ip address 12.1.1.1 30
quit
interface GigabitEthernet 0/0/0
ip address 192.168.1.25 30
quit
r2
interface GigabitEthernet 0/0/0
ip address 12.1.1.2 30
quit
interface GigabitEthernet 0/0/1
ip address 192.168.2.1 30
quit开启ospf、宣告
r1
ospf 1 router-id 1.1.1.1
area 0
network  192.168.1.0 0.0.0.255
quit
area 1
network  12.1.1.1 0.0.0.0r2
ospf 1 router-id 2.2.2.2
area 1
network  12.1.1.2 0.0.0.0
quit
area 2
network  192.168.2.0 0.0.0.255认证
r1
interface GigabitEthernet0/0/1
ospf authentication-mode md5 1 plain 666
quit
r2
interface GigabitEthernet0/0/0
ospf authentication-mode md5 1 plain 666
quit缺省路由
r1
ospf 1 
default-route-advertise always 
quit汇总
r1
ospf 1
area 0
abr-summary 192.168.1.0 255.255.255.128修改带宽
r1、r2、lsw1、lsw2
ospf 1
bandwidth-reference 1000
quit加快收敛
r1
interface GigabitEthernet 0/0/1
ospf timer hello 5
quit
interface GigabitEthernet 0/0/0
ospf timer hello 5
quit
r2
interface GigabitEthernet 0/0/0
ospf timer hello 5
quit
interface GigabitEthernet 0/0/1
ospf timer hello 5
quit空接口——防止被动黑洞
r1
ip route-static 192.168.1.0 25 NULL 0

4)NAT的配置命令

动态NAT
acl 2000
rule permit source 192.168.1.0 0.0.0.255
quit
interface GigabitEthernet 0/0/1
nat outbound 2000端口映射
interface GigabitEthernet 0/0/1
nat server protocol tcp global current-interface 80 inside 192.168.1.4 80
y
quit
interface GigabitEthernet 0/0/1
nat server protocol tcp global  current-interface  8888 inside 192.168.1.5 80

PC1

ping 192.168.2.3

Ping 192.168.2.3: 32 data bytes, Press Ctrl_C to break
Request timeout!
From 192.168.2.3: bytes=32 seq=2 ttl=253 time=47 ms
From 192.168.2.3: bytes=32 seq=3 ttl=253 time=47 ms
From 192.168.2.3: bytes=32 seq=4 ttl=253 time=47 ms
From 192.168.2.3: bytes=32 seq=5 ttl=253 time=47 ms

--- 192.168.2.3 ping statistics ---
  5 packet(s) transmitted
  4 packet(s) received
  20.00% packet loss
  round-trip min/avg/max = 0/47/47 ms


学习时间:

学习时间为不运动的时候,作者咕咕了是去运动(无氧运动和有氧运动都做最好)了,请饶恕。


学习产出:

画工

  计算机网络第1章:计算机网络的概念、组成与功能;计算机网络的分类、标准化工作及相关组织

                                                                                                       http://t.csdnimg.cn/uZOAM

计算机网络第一章:性能指标:带宽、时延、时延带宽积、RTT、吞吐量、速率、信道利用率

                                                                                                                                                                                                                           http://t.csdnimg.cn/avNeb

计算机网络体系结构——PDU、SDU、PCI、协议、访问、接口、SAP

                                                                                                          http://t.csdnimg.cn/x3Uar

 计算机网络分层结构——OSI/ISO、TCP/IP                                                                                                                                                   http://t.csdnimg.cn/hLrqY

 1章选择                                                                                          http://t.csdnimg.cn/cnmdJ

2章选择、解答                                                                                http://t.csdnimg.cn/ONrER

   通信基本概念:数据、信号、码元、信源、信道、信宿、速率、波特、带宽                                                                                                        http://t.csdnimg.cn/TKnyM

  • 技术笔记 1遍
  • 有错误请指出,作者会及时改正

http://www.dt0577.cn/news/21932.html

相关文章:

  • 独立商城系统网站建设等服务2023疫情最新情况
  • 网站建设水平如何评价舆情网站直接打开
  • 网站调优技能福州排名seo公司
  • 做3dmax的网站怎么做网络销售
  • wordpress新增站点东莞网站推广技巧
  • wordpress热门文章查询班级优化大师官方免费下载
  • 网站用什么语言做网站免费制作平台
  • 一个网站能多个域名做不同站点seo是什么姓氏
  • 做富集的网站如何创建一个网页
  • 什么可以做冷门网站百度一下百度下载
  • 沈阳餐饮网站建设seo的课谁讲的好
  • 网站内容不能够复制怎么做推广自己产品的文案
  • 石龙网站开发国际新闻最新消息今天 新闻
  • 班级网站开发与设计互联网营销师考试题库
  • 企业网站推广哪些效果比较好百度浏览器入口
  • 西安做网站 怎样备案线上推广引流渠道
  • 自己如何建企业网站惠州seo关键词排名
  • 做网站图标的软件3322免费域名注册
  • 网站开发技术文档哈尔滨企业网站模板建站
  • 做网站与考研项目推广网站
  • 外包公司拖欠工资怎么办seo优化工作内容
  • 公众号快速涨10000粉丝方法福州百度网站排名优化
  • 微信公众号做的网站seo公司服务
  • 中国人做网站卖美国人站长收录
  • 网站设计网页版俄罗斯搜索引擎浏览器官网入口
  • 网站域名正在维护中关键词在线试听免费
  • web网页设计与开发课程论文seo技术培训泰州
  • 别人用我公司权限做网站互联网营销案例分析
  • 公安网站备案号查询系统b站推广网站入口202
  • 下载官方网站app重大新闻事件2023