Editing
Computer Networks
(section)
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== <span style="color: #FFFFFF;">Applying</span> == '''Modeling the 'Exponential Backoff' Algorithm:''' <syntaxhighlight lang="python"> import random import time def simulate_collision_retry(attempt): """ When two computers talk at once (collision), they wait a random time before trying again. The wait time doubles with each failure. """ max_wait = (2 ** attempt) - 1 wait_time = random.randint(0, max_wait) return wait_time # If 3 collisions occur for i in range(1, 4): wait = simulate_collision_retry(i) print(f"Collision {i}: Waiting for {wait} units of time...") # This simple math is what prevents 'network storms' # where everyone keeps talking over each other. </syntaxhighlight> ; Core Network Technologies : '''IPv6''' β The new addressing system (replacing IPv4) that allows for 340 undecillion addresses (enough for every atom on Earth). : '''SSL/TLS''' β The encryption that turns http into http'''s''', protecting your data from "sniffers." : '''CDN (Content Delivery Network)''' β Storing copies of a website on servers all over the world so users can download it from the closest one. : '''BGP (Border Gateway Protocol)''' β The "postal master" protocol that manages the routing tables of the entire Internet. </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;">
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information