WHAT IS ETHERNET?
Ethernet is a technology that connects wired local area networks (LANs) and enables the device to communicate with each other through a PROTOCOL which is the common network language.
This LAN is a network of computers and other electronic devices which covers a small area in your places like in the office, house, room or building. Unlike LAN, wide area network (WAN) covers much larger geographical areas. Furthermore, Ethernet is a protocol that controls the processes on how the data is transmitted through LAN. It also indicates how the network devices can transmit and format data packets so that the other network devices in the same area network segment can be able to receive, process and recognize them.
~ @geekcode
Ethernet is a technology that connects wired local area networks (LANs) and enables the device to communicate with each other through a PROTOCOL which is the common network language.
This LAN is a network of computers and other electronic devices which covers a small area in your places like in the office, house, room or building. Unlike LAN, wide area network (WAN) covers much larger geographical areas. Furthermore, Ethernet is a protocol that controls the processes on how the data is transmitted through LAN. It also indicates how the network devices can transmit and format data packets so that the other network devices in the same area network segment can be able to receive, process and recognize them.
~ @geekcode
IP?
IP like Ethernet is a connection-less protocol, that means it doesn’t know a relation between packets. It is used to define the source and destination host on layer 3(OSI MODEL), to find the (quickest)
path between two communications partners by routing packets and to handle
errors with ICMP.
Today there are two variants of IP IPv4 and IPv6. Both protocols differ widely and not only in size of IP addresses. IPv6 can be extended through so called optional headers.
~ @geekcode
IP like Ethernet is a connection-less protocol, that means it doesn’t know a relation between packets. It is used to define the source and destination host on layer 3(OSI MODEL), to find the (quickest)
path between two communications partners by routing packets and to handle
errors with ICMP.
Today there are two variants of IP IPv4 and IPv6. Both protocols differ widely and not only in size of IP addresses. IPv6 can be extended through so called optional headers.
~ @geekcode
WHAT IS TCP?
Transmission Control Protocol (TCP)
A connection-oriented communications protocol that facilitates the exchange of messages between computing devices in a network. It is the most common protocol in networks that use the Internet Protocol (IP); together they are sometimes referred to as TCP/IP.
TCP takes messages from an application/server and divides them into packets, which can then be forwarded by the devices in the network – switches, routers, security gateways – to the destination. TCP numbers each packet and reassembles them prior to handing them off to the application/server recipient. Because it is
connection-oriented, it ensures a connection is established and maintained until the exchange between the application/servers sending and receiving the message is complete.
~ @geekcode
Transmission Control Protocol (TCP)
A connection-oriented communications protocol that facilitates the exchange of messages between computing devices in a network. It is the most common protocol in networks that use the Internet Protocol (IP); together they are sometimes referred to as TCP/IP.
TCP takes messages from an application/server and divides them into packets, which can then be forwarded by the devices in the network – switches, routers, security gateways – to the destination. TCP numbers each packet and reassembles them prior to handing them off to the application/server recipient. Because it is
connection-oriented, it ensures a connection is established and maintained until the exchange between the application/servers sending and receiving the message is complete.
~ @geekcode
I will post TCP / IP protocol beginner guide pdf book in 10 mins #staytunned
By this pdf you will get some additional information about TCP/IP in depth.
~ @geekcode
By this pdf you will get some additional information about TCP/IP in depth.
~ @geekcode
WHAT IS FIREWALL?
A firewall is neither a product nor a tiny, magical box with lots of blinking LEDs even if more IT security companies try to let you think so. A firewall is a security concept. It serves to protect the network and
computers from being attacked and is only as effective as the combination of itscomponents.
Typical parts of a firewall are a packet filter, intrusion detection system, intrusion pre- vention system, log analyzer,
continuous system updates, virus scanner, proxies,honeypot and/or VPNs. A packet filter works on layer 3 and 4 and decides which packets shall pass, be dropped, rejected or redirected depending on its rule-set. Intrusion detection systems can be classified into two different types: host- and net-work intrusion detection system. A host intrusion detection system (HIDS for short) locates successful attacks on a local computer by, for example, continuously checking all files and directories against a database of cryptographic checksums.
A network intrusion detection system (NIDS) therefore detects attacks in the network
traffic and can operate on all layers at the same time. Its functionality can be compared to a virus scanner, because it searches for signatures of known attacks. Additionally it has the possibility to learn what is classified as normal traffic in a network and the anomaly detection component alarms packets that differs from it.
~ @geekcode
A firewall is neither a product nor a tiny, magical box with lots of blinking LEDs even if more IT security companies try to let you think so. A firewall is a security concept. It serves to protect the network and
computers from being attacked and is only as effective as the combination of itscomponents.
Typical parts of a firewall are a packet filter, intrusion detection system, intrusion pre- vention system, log analyzer,
continuous system updates, virus scanner, proxies,honeypot and/or VPNs. A packet filter works on layer 3 and 4 and decides which packets shall pass, be dropped, rejected or redirected depending on its rule-set. Intrusion detection systems can be classified into two different types: host- and net-work intrusion detection system. A host intrusion detection system (HIDS for short) locates successful attacks on a local computer by, for example, continuously checking all files and directories against a database of cryptographic checksums.
A network intrusion detection system (NIDS) therefore detects attacks in the network
traffic and can operate on all layers at the same time. Its functionality can be compared to a virus scanner, because it searches for signatures of known attacks. Additionally it has the possibility to learn what is classified as normal traffic in a network and the anomaly detection component alarms packets that differs from it.
~ @geekcode
WHAT IS UDP?
UDP stands for User Datagrams protocol.
A communications protocol that facilitates the exchange of messages between computing devices in a network. It’s an alternative to the transmission control protocol (TCP). In a network that uses the Internet Protocol (IP), it is sometimes referred to as UDP/IP.
UDP divides messages into packets, called datagrams, which can then be forwarded by the devices in the network – switches, routers, security gateways – to the destination application/server. While UDP does not number or reassemble the datagrams, it does include port numbers in the datagram header that help distinguish different user requests and an optional checksum capability that can help verify the integrity of the data transferred.
~ @geekcode
UDP stands for User Datagrams protocol.
A communications protocol that facilitates the exchange of messages between computing devices in a network. It’s an alternative to the transmission control protocol (TCP). In a network that uses the Internet Protocol (IP), it is sometimes referred to as UDP/IP.
UDP divides messages into packets, called datagrams, which can then be forwarded by the devices in the network – switches, routers, security gateways – to the destination application/server. While UDP does not number or reassemble the datagrams, it does include port numbers in the datagram header that help distinguish different user requests and an optional checksum capability that can help verify the integrity of the data transferred.
~ @geekcode
#machinelearning
Scikit-learn team has come up with a MOOC course on "Machine learning in Python with Scikit-learn". 🤓
Github 🔗https://github.com/inria/scikit-learn-mooc
Happy learning! 😎
#supportus
~ @geekcode
Scikit-learn team has come up with a MOOC course on "Machine learning in Python with Scikit-learn". 🤓
Github 🔗https://github.com/inria/scikit-learn-mooc
Happy learning! 😎
#supportus
~ @geekcode
GitHub
GitHub - INRIA/scikit-learn-mooc: Machine learning in Python with scikit-learn MOOC
Machine learning in Python with scikit-learn MOOC. Contribute to INRIA/scikit-learn-mooc development by creating an account on GitHub.
WHAT IS SWITCHES ?
Switches facilitate the sharing of resources by connecting together all the devices, including computers, printers, and servers, in a small business network. Thanks to the switch, these connected devices can share information and talk to each other, regardless of where they are in a building or on a campus. Building a small business network is not possible without switches to tie devices together.
~ @geekcode
Switches facilitate the sharing of resources by connecting together all the devices, including computers, printers, and servers, in a small business network. Thanks to the switch, these connected devices can share information and talk to each other, regardless of where they are in a building or on a campus. Building a small business network is not possible without switches to tie devices together.
~ @geekcode
WHAT IS ROUTER?
Just as a switch connects multiple devices to create a network, a router connects multiple switches, and their respective networks, to form an even larger network. These networks may be in a single location or across multiple locations. When building a small business network, you will need one or more routers. In addition to connecting multiple networks together, the router also allows networked devices and multiple users to access the Internet.
Ultimately, a router works as a dispatcher, directing traffic and choosing the most efficient route for information, in the form of data packets, to travel across a network. A router connects your business to the world, protects information from security threats, and even decides which devices have priority over others.
~ @geekcode
Just as a switch connects multiple devices to create a network, a router connects multiple switches, and their respective networks, to form an even larger network. These networks may be in a single location or across multiple locations. When building a small business network, you will need one or more routers. In addition to connecting multiple networks together, the router also allows networked devices and multiple users to access the Internet.
Ultimately, a router works as a dispatcher, directing traffic and choosing the most efficient route for information, in the form of data packets, to travel across a network. A router connects your business to the world, protects information from security threats, and even decides which devices have priority over others.
~ @geekcode
WHAT IS GATEWAY?
Gateway is a network connecting device that can be used to connect two devices in two different networks implementing different networking protocols and overall network architecture. In other words, a gateway is a node on a network that serves as an entrance to another network.
A Gateway is the most intelligent device among the network connecting devices. Intelligent in terms of its working, error control, data packet routing, transmission speed, etc. It is a combination of both hardware as well as software components.
~ @geekcode ❤️
Gateway is a network connecting device that can be used to connect two devices in two different networks implementing different networking protocols and overall network architecture. In other words, a gateway is a node on a network that serves as an entrance to another network.
A Gateway is the most intelligent device among the network connecting devices. Intelligent in terms of its working, error control, data packet routing, transmission speed, etc. It is a combination of both hardware as well as software components.
~ @geekcode ❤️
Forwarded from GeekCode
After completing this terminologies we will share Cisco & other Networking paid courses for free to you guys.
#staytunned
It includes video content
By which you can get better knowledge about the networking
#WeNeedYourSupport
#share us
~ @geekcode
#staytunned
It includes video content
By which you can get better knowledge about the networking
#WeNeedYourSupport
#share us
~ @geekcode
⚡Learning Python Networking Programming ⚡
https://www.packtpub.com/product/python-network-programming/9781788835466
~ @geekccode
https://www.packtpub.com/product/python-network-programming/9781788835466
~ @geekccode
WHAT IS PROTOCOL ?
Define the rules that govern the communications between two
computers connected to the network.
-Roles: addressing and routing of messages, error detection and
recovery, sequence and flow controls etc.
-A protocol specification consists of the syntax, which defines the kinds
and formats of the messages exchanged, and the semantic, which
specifies the action taken by each entity when specific events occur.
Ex: HTTP protocol for communication between web browsers
and servers.
~ @geekcode❤️
Define the rules that govern the communications between two
computers connected to the network.
-Roles: addressing and routing of messages, error detection and
recovery, sequence and flow controls etc.
-A protocol specification consists of the syntax, which defines the kinds
and formats of the messages exchanged, and the semantic, which
specifies the action taken by each entity when specific events occur.
Ex: HTTP protocol for communication between web browsers
and servers.
~ @geekcode❤️
WHAT IS PROTOCOL LAYER?
The OSI (Open Systems Interconnection) Data Model
-ISO standard for computer networks design and functioning.
-Involves at least 7 layers, each playing a specific role when
applications are communicating over the net.
-During the sending process, each layer (from top to down) will add
a specific header to the raw data.
-At the reception, headers are eliminated conversely until the data
arrived to the receiving application.
~ @geekcode ❤️
The OSI (Open Systems Interconnection) Data Model
-ISO standard for computer networks design and functioning.
-Involves at least 7 layers, each playing a specific role when
applications are communicating over the net.
-During the sending process, each layer (from top to down) will add
a specific header to the raw data.
-At the reception, headers are eliminated conversely until the data
arrived to the receiving application.
~ @geekcode ❤️