网络拓扑 令牌环网 以太网_以太网连接中网络拓扑的类型及其框架 以太网技术...

网络拓扑 令牌环网 以太网

A topology explains how physically the network is designed or what is the structure of the network. These designs are both physical and logical. There are many network topologies 4 like Bus, Star, Ring, and Mesh. But only two types of topologies are used in Ethernet i.e Bus and Star. So, let's know about these two topologies:

拓扑结构说明了网络的物理设计方式或网络的结构。 这些设计是物理的和逻辑的。 有许多网络拓扑4,如Bus,Star,Ring和Mesh。 但是以太网中仅使用两种类型的拓扑,即总线和星形。 因此,让我们了解以下两种拓扑:

1) Bus Topology

1)总线拓扑

All computers in a bus topology are connected to a wire. Whenever a computer sends a computer frame, it goes to all the computers available in the topology, but it only accepts the computer whose MAC address matches the frame.

总线拓扑中的所有计算机都连接到电线。 每当计算机发送计算机框架时,它将转到拓扑中可用的所有计算机,但仅接受MAC地址与框架匹配的计算机。

The biggest disadvantage of bus topology is that if the wire ever gets damaged, then communication of all computers stops simultaneously. Computers have no means of communication separately from each other.

总线拓扑的最大缺点是,如果电线损坏,则所有计算机的通信将同时停止。 计算机没有彼此分开的通讯方式。

2) Star Topology

2)星型拓扑

All hosts in Star Topology are connected to a switch or hub and they send frames to each other through hosts hubs and switches. Hubs are not intelligent. When frames are sent through the hub, the hub sends those frames to all the hosts and the host that receives the MAC address matches it.

星型拓扑中的所有主机都连接到交换机或集线器,它们通过主机集线器和交换机相互发送帧。 集线器不是智能的。 当通过集线器发送帧时,集线器会将那些帧发送到所有主机,并且接收到MAC地址的主机将与之匹配。

Switches are intelligent devices. The switches maintain the address table of all hosts. So whenever a host sends a frame, it is not sent to everyone and goes to the same host whose MAC address matches. The biggest disadvantage of the star topology is that if the switch or hub spreads, all the networks fail.

开关是智能设备。 交换机维护所有主机的地址表。 因此,每当主机发送帧时,它都不会发送给每个人,而是转到其MAC地址匹配的同一主机。 星型拓扑的最大缺点是,如果交换机或集线器扩展,则所有网络都将发生故障。

以太网帧 (Ethernet Frame)

Ethernet data link layer technology. In the data link layer, the data is known as frames. The size of a frame can be from 64 bytes to 1522 bytes. There are some fields in the frame whose size is fixed. The information about these fields is given below.

以太网数据链路层技术。 在数据链路层中,数据称为帧。 帧的大小可以从64字节到1522字节。 框架中的某些字段的大小是固定的。 这些字段的信息在下面给出。

Preamble

前言

The size of this field is 7 bytes. This field is used for synchronization purpose.

该字段的大小为7个字节。 该字段用于同步目的。

Start of Frame

帧开始

The size of this field is 1 byte. This field shows the starting point of the frame.

该字段的大小为1个字节。 此字段显示帧的起点。

Destination MAC Address

目的MAC地址

The size of this field is 6 bytes. This field holds the destination host's MAC address.

该字段的大小为6个字节。 此字段保存目标主机的MAC地址。

Source MAC Address

源MAC地址

The size of this field is also 6 bytes. This field source hosts the MAC address.

该字段的大小也是6个字节。 该字段源托管MAC地址。

802. 1Q Tag

802. 1Q标签

The size of this field is 4 bytes. This field is optional. This tag is used to show VLAN configuration.

该字段的大小为4个字节。 该字段是可选的。 此标记用于显示VLAN配置。

Length

长度

The size of this field is 2 bytes. This field shows the size of the whole frame.

该字段的大小为2个字节。 此字段显示整个帧的大小。

Payload

有效载荷

The size of this field can be from 42 bytes to 1500 bytes. This is your actual data.

该字段的大小可以从42字节到1500字节。 这是您的实际数据。

CRC (Cyclic Redundancy Check)

CRC(循环冗余校验)

The size of this field is 4 bytes. This shows the errors in the field frame.

该字段的大小为4个字节。 这显示了字段框架中的错误。

Inter-Frame Gap

帧间间隙

The size of this field is 12 bytes. It shows the time gap between field frames.

该字段的大小为12个字节。 它显示了场帧之间的时间间隔。

翻译自: https://www.includehelp.com/computer-networks/types-of-network-topology-in-ethernet-connection-and-its-frame.aspx

网络拓扑 令牌环网 以太网

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/540463.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Wafer晶圆封装工艺介绍

芯片封装的目的(The purpose of chip packaging): 芯片上的IC管芯被切割以进行管芯间连接,通过引线键合连接外部引脚,然后进行成型,以保护电子封装器件免受环境污染(水分、温度、污染物等)&…

[转载] Python中的解析式和生成器表达式

参考链接: Python | 生成器表达式 解析式和生成器表达式 列表解析List Comprehension 语法 [返回值 for 元素 in 可迭代对象 if 条件]使用中括号[],内部是for循环,if条件语句可选,会返回一个新的列表 列表解析试优点 编译器会优化&…

java 数字字母进位_使用带有进位的8085微处理器将两个8位数字相乘

java 数字字母进位Problem statement: 问题陈述: Multiplication of two 8 bits numbers using 8085 microprocessor with carry. 使用带有进位的8085微处理器将两个8位数字相乘。 Algorithm: 算法: Load HL pair with initial data using LHLD comma…

[转载] Python3.0中普通方法、类方法和静态方法的比较

参考链接: Python中的类方法与静态方法 一、语法区别 刚接触Python中的面向对象,对于类方法和静态方法难以区分,通过查找知乎、CSDN论坛,废了好大的劲思路才逐渐明朗,所以就总结顺便分享一下。 首先开始编辑代码 # 普…

iOS:个人浅谈工厂模式

一、什么是工厂方法? 正式的解释是:在基类中定义创建对象的一个接口,让子类决定实例化哪个类。工厂方法让一个类的实例化延迟到子类中进行。工厂方法要解决的问题是对象的创建时机,它提供了一种扩展的策略,很好地符合了…

scanf 输入十六进制_使用C语言中的scanf()在字符变量中输入十进制,八进制和十六进制值...

scanf 输入十六进制Here, we will declare an unsigned char variable and input different formats value like decimal format, octal format and hexadecimal format. 在这里,我们将声明一个无符号的char变量,并输入不同格式的值,例如十进…

[转载] Python中pass的作用

参考链接: 如何在Python中编写空函数?请使用 pass语句 空语句 do nothing保证格式完整保证语义完整 以if语句为例,在c或c/java中: if(true) ; //do nothing else { //do something } 对应于python就要这样写&#xff…

wrf 嵌套网格作用_在网格系统中使用响应列,嵌套列和偏移列 引导程序

wrf 嵌套网格作用介绍 (Introduction) In the previous article, we have learnt what is grid and grid system and how it works? Now, we will learn about how Responsive column, Nesting Columns and Offset Columns works and how to use them? If you have any doubt…

[看书笔记]《深入java虚拟机》——java体系结构(二)

java虚拟机的三种含义: - 抽象的规范 - 一个具体的实现 - 一个运行中的虚拟机实例 ---------------------java虚拟机的生命周期: java虚拟机实例的天职就是负责运行一个java程序。 启动一个java程序,一个虚拟机实例诞生了;程序关闭…

[转载] 【零基础学爬虫】python中的yield详解

参考链接: 什么时候在Python中使用yield而不是return python中的yield功能比较强大,什么意思呢?如果一个函数f内使用了yield关键词,那么该函数就可以这样使用: for item in f(***): **** 也就是包含yield关键词的函…

全新的membership框架Asp.net Identity(1)——.Net membership的历史

在Asp.net上,微软的membershop框架经历了Asp.net membership到Asp.net simple membership,再到现在的Asp.net Identity. 每一次改变,都使得验证框架更加的适应变化和可定制。这篇文章是Asp.net Identity系列的开篇,主要就membersh…

c语言100位整数变量声明_C ++程序动态声明一个整数变量并打印其内存地址

c语言100位整数变量声明Here, we will learn how we can declare an integer variable dynamically and how to print address of declared memory block? 在这里,我们将学习如何动态声明整数变量,以及如何打印声明的内存块的地址? In C pr…

[转载] python 函数返回多个值

参考链接: 在Python中返回多个值 (廖雪峰Python教程学习笔记) 函数体内部的语句在执行时,一旦执行到return,函数就执行完毕,并将结果返回。 如果没有return语句,函数执行完毕后也会返回结果…

二.编写第一个c#程序(注释,命名空间,类,Main方法,标识符,关键字,输入,输出语句,)...

复习编写一个控制台应用程序,目标是在控制台输出“Hello World” 1.第一步,打开Visual Studio 2012以上版本(我用的是VS 2015),打开完成后出现以下界面 2.第二步,这时候就要新建一个解决方案了,创建解决方案可以直接点…

[转载] Python中定义函数,循环语句,条件语句

参考链接: Python中的局部函数 由于日常程序流中主要是三种结构:顺序,循环,条件,且往往需要自定义函数再调用, 因此今天想学习一下Python中关于定义函数、循环语句和条件语句的写法。 1.定义函数 区…

node oauth2验证_如何设置和使用护照OAuth Facebook身份验证(第1部分)| Node.js

node oauth2验证In my last articles, we looked at the implementation of the passport-local authentication strategy. We also looked at the various requirements to get started with the login form. 在上一篇文章中,我们介绍了护照本地身份验证策略的实现…

vue2.0 引用qrcode.js实现获取改变二维码的样式

vue代码 <template><div class"qart"><div id"qrcode" ref"qrcode"></div><input type"text" id"getval" value"" placeholder"修改这个值改变二维码"></div> <…

[转载] Python列表排序 list.sort方法和内置函数sorted

参考链接&#xff1a; Python中的函数 Python列表排序 list.sort方法和内置函数sorted 很多时候我们获取到一个列表后,这个列表并不满足我们的需求,我们需要的是一个有特殊顺序的列表. 这时候就可以使用list.sort方法和内置函数sorted,本文就是介绍list.sort方法和sorted内…

Java Thread类最终同步的void join(long time_in_ms)方法,带有示例

线程类最终同步无效连接(long time_in_ms) (Thread Class final synchronized void join(long time_in_ms)) This method is available in package java.lang.Thread.join(long time_in_ms). 软件包java.lang.Thread.join(long time_in_ms)中提供了此方法。 join(long time_in_…

RYU控制器安装`

2019独角兽企业重金招聘Python工程师标准>>> 同样是参考了http://linton.tw/2014/02/11/note-how-to-set-up-ryu-controller-with-gui-component/的内容。 1. 由于Ubuntu中自带有Python&#xff0c;因此直接开始安装pip apt-get install python-pip apt-get i…