- Видео 116
- Просмотров 17 998
RajeshKala@Shinas
Оман
Добавлен 19 май 2012
This is an educational channel made with 90% practical activities
Convert 48 bit MAC Address to EUI 64
Convert 48 bit MAC Address to EUI 64
Input MAC Address - 39-A7-94-07-CB-D0
Steps to convert 48-bit MAC addresses to EUI-64
1. Split the 48-bit MAC address: We take the first 24 bits of the identifier (“39-A7-94”) and put it into the first (leftmost) 24 bits of the address. The local portion of “07-CB-D0” becomes the last 24 bits of the identifier.
2. Fill the middle 16 bits: We insert “11111111 11111110” (“FFFE” in hex) into the 16 bits between the two 24-bit values we just filled in.
3. Modify the EUI-64 address: We change bit 7 from 0 to 1. This changes the first octet of the address from 00111001 (39 in hex) to 00111011 (3B in hex).
Input MAC Address - 39-A7-94-07-CB-D0
Steps to convert 48-bit MAC addresses to EUI-64
1. Split the 48-bit MAC address: We take the first 24 bits of the identifier (“39-A7-94”) and put it into the first (leftmost) 24 bits of the address. The local portion of “07-CB-D0” becomes the last 24 bits of the identifier.
2. Fill the middle 16 bits: We insert “11111111 11111110” (“FFFE” in hex) into the 16 bits between the two 24-bit values we just filled in.
3. Modify the EUI-64 address: We change bit 7 from 0 to 1. This changes the first octet of the address from 00111001 (39 in hex) to 00111011 (3B in hex).
Просмотров: 6
Видео
Twilio part (SMS) of Lab 7
Просмотров 189 часов назад
Twilio MessagingX provides reliable messaging, enabling businesses to reach customers around the globe. As one of the world's most widely-used, trusted, and accessible communication tools, MessagingX empowers you to send and receive SMS, MMS, WhatsApp messages, and more at scale
Cloud Basics Development and Basic Concepts Final Exam
Просмотров 1812 часов назад
242501_Cloud Basics - Cloud Basics Development and Basic Concepts Final Exam This course focuses basic concepts of Cloud Computing. You will learn about the definition, origin, characteristics and deployment models of Cloud Computing. Cloud architecture and two trends will also be introduced.
Workshop Exploring AI Tools for Effective Academic Writing
Просмотров 10714 дней назад
Discussing how AI Tools helps user in Academic Writing
ChatGPT
Просмотров 714 дней назад
a. How ChatGPT assist you in Machine learning projects b. b. How ChatGPT generate Quiz from pdf/ppt
HCIA Network Track Chapter 6 OSPF Basics
Просмотров 2121 день назад
HCIA Network Track Chapter 6 OSPF Basics
HCIA Network Track Chapter 5 IP Routing Basics
Просмотров 1621 день назад
This chapter discusses about IP Routing Basics.
HCIA Network Track Chapter 9 Spanning Tree Protocol Concepts and Configuration
Просмотров 1121 день назад
HCIA Network Track Chapter 9 Spanning Tree Protocol Concepts and Configuration STP Concepts in Cisco ruclips.net/video/4IWqnf5lHnY/видео.htmlsi=autbMRT0AfWvV324
HCIA Network Track Chapter 4 Network Layer Protocols and IP Addressing
Просмотров 2121 день назад
HCIA Network Track Chapter 4 Network Layer Protocols and IP Addressing
HCIA Network Track Chapter 3 Huawei VRP
Просмотров 1221 день назад
HCIA Network Track Chapter 3 Huawei VRP
HCIA Network Track Chapter 2 Network reference Models
Просмотров 1521 день назад
About OSI Reference model, TCP/IP model
HCIA Network Track Chapter 1 Data Communication Network basics
Просмотров 2221 день назад
This course describes concepts related to communication and data network, information transfer process, network devices and their functions, network types and typical networking.
Stateful DHCPv6 configuration
Просмотров 20Месяц назад
Here Router R2 is configured as a DHCPv6 server and assigns IPv6 addresses to all DHCPv6 clients. It also assigns DNS server, Default Gateway and a domain name to the clients.
Stateless DHCPv6 configuration(SLAAC)
Просмотров 48Месяц назад
No DHCP server required for IPv6 address assignment to hosts. Each host generates its IPV6 address by adding Prefix part from Router with Link local address using EUI-64 calculation technique.
Huawei Overview of IOT - 242501_Overview of IoT Technologies
Просмотров 107Месяц назад
242501_Overview of IoT Technologies Final Exa
Chapter 2 Networks Fog and Cloud Computing
Просмотров 106Месяц назад
Chapter 2 Networks Fog and Cloud Computing
2.6 .6 Verify Single Area OSPv2 Packet Tracer
Просмотров 412 месяца назад
2.6 .6 Verify Single Area OSPv2 Packet Tracer
Detect Gas / Smoke leak using Arduino
Просмотров 1383 месяца назад
Detect Gas / Smoke leak using Arduino
Can you give me a quick summary?
@@田中-o8c2r u mean for all tools?? I just used these tools to make the job of a student or researcher not easier while preparing documents
@@RajeshKalaShinas OK GOODJOB EXLLENT?? BUD TIRED??
STP Concepts in Cisco ruclips.net/video/4IWqnf5lHnY/видео.htmlsi=autbMRT0AfWvV324
101🎉 great job 👏
Thank you 🤗
Good
Thanks
Good
super
keep on Mr, you are genius
Thanks zakriya
You are Good and perfect Mr.Rajesh
@@iirwny r u my student dear??
@@RajeshKalaShinas yes
great activity , highly appreciated
Thank you Mr for explaining we appreciate it ✨
No one can explain the practical better than youu
The best mr
You are the Best ✨
Can you explain PKT10 and PKT11?
Its already uploaded in ekearning
@@RajeshKalaShinas where?
Can you please share the Word document to me.
hi which topic document? sorry now only reading comments
send ur mail id
Got it thanks
🎉🎉🎉🎉🎉
a very nice explanation, keep going Mr Rajesh
Thanks moza
github.com/DexterInd/RFR_Tools/blob/master/miscellaneous/di_i2c.py location to get di_i2c.py and di_mutex.py files
3:39 Ok Mr 😁
Nice Nice Nice... waiting for the next video to learn and gain more knowledge
hi , yes sure. may i know who is this
This is Asim
@@z7al ok asim sulaiman
Lab 5: Use Arduino to change the angle of the Servo motor using Flex sensor #include <Servo.h> Servo myServo; # define flexPin A0 void setup() { myServo.attach(3); Serial.begin(9600); } void loop() { int flexValue; int servoPosition; flexValue = analogRead(A0); servoPosition = map(flexValue, 770, 950, 0, 180); servoPosition = constrain(servoPosition, 0, 180); myServo.write(servoPosition); Serial.print("FLEX sensor ="); delay(15); Serial.println(flexValue); delay(15); Serial.print("servo ="); delay(10); Serial.println(servoPosition); delay(20); }
Sir, with all due respect, can i have your contact number please.
Thank you sir
😁
👌🏻👏🏻
👏🏻👏🏻👏🏻good
😊 P r o m o S M
Good Mir 😊
Thx Mr 🤭✨
😍😍😍
Best teacher ever
قولوا له يعطينا درجات زيادة
خلوووه يزيدنا درجاااات 😂
سووا له متابعه يدور ع متابعين
good job
Good. Easy to understand..🎉🎉🎉
Thank you for the clear explanation and facilitation of the activity✨
👌
Superr😂 🎉😮