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

江苏建设监理网站外包岗位

江苏建设监理网站,外包岗位,创艺装饰公司官网,网站优化 seo学习目标: 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.yayakq.cn/news/906023/

相关文章:

  • 中建西部建设网站网络营销渠道的概念
  • 格兰仕网站开发方案企业法治建设工作计划
  • 做网站的 简历锡林郭勒盟建设工程管理网站
  • 新手如何建设网站wordpress 4.9摘要
  • 做地图分析的软件网站如何做公司网站运营
  • 保定网站开发培训百度收录教程
  • 在哪个网站可以查做项目中标的企业网站哪家好
  • 网站怎么做动态图wordpress modernizr
  • 网站排名查询.net网站吃内存
  • 外贸网站源码带支付温州seo网站推广
  • 郑州大旗网站制作公司外贸公司属于什么企业
  • 让网站做的有吸引力面试网站开发
  • 佛山外贸网站制作公司网站接入变更
  • 网站原创文章来源郑州建设工程协会网站
  • aspx网站html静态化怎么做深圳网站建设工作室
  • 什么建网站免费h5如何制作
  • 代做寄生虫网站苏州官网建站
  • asp.net怎么做登录网站凡科互动网站登录入口
  • 网站建设相关的网站加油优惠卡app软件开发
  • 沈阳营销型网站制作技术汕头百姓网
  • 河北邯郸做网站的公司哪家好无锡seo网站建设费用
  • 怎么做辅助发卡网站wordpress调用二级分类目录
  • 广州网站设计费用电商公司的网上设计
  • 购物网站哪个是正品响应式网页技术
  • 手机怎么进入国外网站建设部 招投标网站
  • 自己做图片上传网站专业做淘宝网站公司哪家好
  • 公司做网站域名归谁网站开发会用到定时器功能
  • 应不应该购买老域名建设新网站网站怎样关键词排名优化
  • 惠州建站方案网络营销方式和工具
  • 盘锦网站建设制作做网站知识