zoukankan      html  css  js  c++  java
  • 搭建小型局域网

    Packet Tracer 是 Cisco 公司针对 CCNA 认证开发的一个用来设计、配置和故障排除网络的模拟软件。Packer Tracer 模拟器软件比 Boson 功能强大,比 Dynamips 操作简单,非常适合网络设备初学者使用。
    学习任务

    1、安装 Packer Tracer;
    2、利用一台型号为 2960 的交换机将 2pc 机互连组建一个小型局域网;
    3、分别设置 pc 机的 ip 地址;
    4、验证 pc 机间可以互通。

    实验设备

    Switch_2960 1 台;PC 2 台;直连线
    搭建小型局域网搭建小型局域网

    PC1
    
    IP:192.168.1.2
    Submask:255.255.255.0
    Gateway:192.168.1.1
    PC2
    
    IP:192.168.1.3
    Submask:255.255.255.0
    Gateway:192.168.1.1
    PC1 ping PC2 Reply
    PC2 ping PC1 Reply
    PC2 ping Gateway Timeout
    
    实战演练

    搭建小型局域网搭建小型局域网
    搭建小型局域网搭建小型局域网

    PC1
    
    ipconfig
    
    IP Address......................: 192.168.1.2
    Subnet Mask.....................: 255.255.255.0
    Default Gateway.................: 192.168.1.1
    
    ping 192.168.1.3
    
    Pinging 192.168.1.3 with 32 bytes of data:
    
    Reply from 192.168.1.3: bytes=32 time=50ms TTL=128
    Reply from 192.168.1.3: bytes=32 time=8ms TTL=128
    Reply from 192.168.1.3: bytes=32 time=10ms TTL=128
    Reply from 192.168.1.3: bytes=32 time=11ms TTL=128
    
    Ping statistics for 192.168.1.3:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 8ms, Maximum = 50ms, Average = 19ms
    
    PC2
    
    ipconfig
    IP Address......................: 192.168.1.3
    Subnet Mask.....................: 255.255.255.0
    Default Gateway.................: 192.168.1.1
    
    ping 192.168.1.2
    
    Pinging 192.168.1.2 with 32 bytes of data:
    
    Reply from 192.168.1.2: bytes=32 time=11ms TTL=128
    Reply from 192.168.1.2: bytes=32 time=10ms TTL=128
    Reply from 192.168.1.2: bytes=32 time=11ms TTL=128
    Reply from 192.168.1.2: bytes=32 time=11ms TTL=128
    
    Ping statistics for 192.168.1.2:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 10ms, Maximum = 11ms, Average = 10ms
    ping 192.168.1.1
    
    Pinging 192.168.1.1 with 32 bytes of data:
    
    Request timed out.
  • 相关阅读:
    实现连续测试,要做的事情【译】
    Go语言HTTPServer开发的六种实现
    JSON必知必会【PDF+视频教程】
    给JSONObject添加自定义遍历方法
    利用守护线程隐式关闭线程池
    从错误中学习
    Groovy动态添加方法和属性及Spock单测
    持续测试、持续集成、持续交付、持续部署和DevOps
    有关OAuth 2.0简化模式中步骤D-F的解释
    Spring笔记(五):bean的自动装配
  • 原文地址:https://www.cnblogs.com/linuxprobe/p/12996778.html
Copyright © 2011-2022 走看看