networks.html
1 <!DOCTYPE html> 2 <html lang="de"> 3 <head> 4 <meta charset="UTF-8" /> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 6 <meta http-equiv="onion-location" content="http://bopbopl6lohkl2rts3ltesjnag4hzs4jrx2h6k6etgq5xasbpqekzlqd.onion" /> 7 <title>BOP Wiki: Networks</title> 8 <link rel="stylesheet" href="/assets/stylesheet.css" /> 9 <link rel="icon" type="image/x-icon" href="/assets/img/favicon.png"> 10 </head> 11 <body> 12 <header> 13 <!-- --------------------------------------------------------------------------------------------------------------------------------- --> 14 <script src="/assets/js/navbar-OpenClose.js"></script> 15 <script src="/assets/js/lightbox.js"></script> 16 <script src="/assets/js/copyCodeButton.js"></script> 17 <link rel="stylesheet" href="/resources/js-libraries/highlightJS/atom-one-dark.min.css"> 18 <script src="/resources/js-libraries/highlightJS/highlight.min.js"></script> 19 <script src="/resources/js-libraries/highlightJS/highlightjs-line-numbers.min.js"></script> 20 <script>hljs.highlightAll();</script> 21 <script>hljs.initLineNumbersOnLoad();</script> 22 <!-- --------------------------------------------------------------------------------------------------------------------------------- --> 23 <div class="branding"> 24 <button class="toggle-btn-navbar" id="navbarOpenButton">☰</button> 25 <a href="/"> 26 <img class="logo" src="/assets/img/logo.png"> 27 </a> 28 <div class="typing-animation">BytesOfProgress</div> 29 </div> 30 </header> 31 <div id="navbarContainer" class="navbar-container"> 32 <iframe class="navbar-iframe" src="/assets/navbar/navbar.html" frameBorder= "0"></iframe> 33 </div> 34 <main> 35 <article class="blog-post"> 36 <header class="post-header"> 37 <h1 class="post-title">Networks</h1> 38 </header> 39 </article> 40 <nav class="breadcrumb"> 41 <a href="/">Home</a> 42 <span class="divider">›</span> 43 <a href="/wiki/">Wiki</a> 44 <span class="divider">›</span> 45 <span class="current">Networks</span> 46 </nav> 47 <section class="post-content"> 48 <table> 49 <thead> 50 <tr> 51 <th>Title</th> 52 <th>Description & Link</th> 53 </tr> 54 </thead> 55 <tbody> 56 <tr> 57 <td>TCP / UDP Protocols</td> 58 <td> 59 Learn about different TCP/IP Protocols.<br> 60 <a href="tcp_udp_protocols/tcp_udp_protocols.html">Read more</a> 61 </td> 62 </tr> 63 <tr> 64 <td>IP-Addresses</td> 65 <td> 66 Learn about IP-Addresses.<br> 67 <a href="ip-addresses/ip-addresses.html">Read more</a> 68 </td> 69 </tr> 70 <tr> 71 <td>NAT (Network Address Translation)</td> 72 <td> 73 Network Address Translation: From private to public IP.<br> 74 <a href="NAT/NAT.html">Read more</a> 75 </td> 76 </tr> 77 <tr> 78 <td>ISO/OSI Layer Model</td> 79 <td> 80 Learn about the ISO/OSI (International Organization for Standardization/Open Systems Interconnection) layer model.<br> 81 <a href="ISO-OSI/ISO-OSI.html">Read more</a> 82 </td> 83 </tr> 84 <tr> 85 <td>CGNAT</td> 86 <td> 87 Carrier-Grade Network Address Translation: A technology used by ISPs to deal with the shortage of available IPv4 addresses. CGNAT restricts incoming connections, complicating self-hosting setups.<br> 88 <a href="cgnat/cgnat.html">Read more</a> 89 </td> 90 </tr> 91 <tr> 92 <td>Network Topologies</td> 93 <td> 94 Network topologies define the layout of the network and describe how different nodes (computers, switches, routers, etc.) are connected and communicate with each other.<br> 95 <a href="network-topologies/network-topologies.html">Read more</a> 96 </td> 97 </tr> 98 <tr> 99 <td>MAC-Addresses</td> 100 <td> 101 A MAC address (Media Access Control address) is a unique, hardware-level identifier assigned to the network interface of a device for communication within a local network.<br> 102 <a href="mac-addresses/mac-addresses.html">Read more</a> 103 </td> 104 </tr> 105 <tr> 106 <td>Switching</td> 107 <td> 108 How do network switches work?<br> 109 <a href="switching/switching.html">Read more</a> 110 </td> 111 </tr> 112 </tbody> 113 </table> 114 </section> 115 <footer class="post-footer"> 116 <a href="/wiki/" class="cta-button">← Back</a> 117 </footer> 118 </main> 119 </body> 120 </html>