AP Networking Portfolio | 2025-2026
View the Project on GitHub Scarletteblack/Black-Scarlett-AP-Networking-Portfolio
| Topography Type | Description | Sketch |
|---|---|---|
| Star Topology | • One central switch or hub in the middle • All computers connect to that central point • Example label: “Central Switch” in the middle with arrows to each “Computer” • Common use: Office networks and home Wi-Fi routers. | |
| Bus Topography | • A single straight line (“backbone cable”) with all computers branching off • Add short perpendicular lines for each device • Common use: Early Ethernet networks (now outdated) | |
| Ring Topography | • Devices form a circle with connections between neighbors • Data travels one way (or both in dual-ring) •Common use: Some legacy fiber networks and token ring systems | |
| Mesh Topography | • Every device connects to multiple others (use 4–5 devices for clarity) • Show redundancy — if one path breaks, another can still carry data • Common use: Data centers and IoT or wireless mesh networks | |
| Hybrid Topography | • Combine two or more types (for example, multiple Star networks connected in a Bus layout) • Common use: Large organizations with multiple departments or floors |
RX packets: 239846
TX packets: 35940
There were no errors.
This small office network connects all devices through a central router (192.168.50.1), which manages IP addresses and internet access. The switch (192.168.50.3) distributes wired connections to the two Ubuntu VMs (192.168.50.10 and 192.168.50.11) and the NAS (192.168.50.3) for reliable, high-speed data transfer. The access point connects wirelessly to the router, allowing the phone (using DHCP) to join the network through Wi-Fi. This setup provides both wired and wireless access, ensuring that devices needing stable connections use cables, while mobile devices connect flexibly through Wi-Fi.
In Shared mode the internal IP address was: 192.168.64.2/24
External (public) IP address:
Internal and external IP addresses differ because the internal IP address belongs to your local network, while the external IP is the address the internet sees. The internal (private) IP address is used only within the home or virtual network, and the external (public) IP address is assigned by the ISP. A virtual machine uses NAT because it lets the VM access the internet through the host’s IP while staying secure and hidden behind it. Shared mode makes it easier to connect multiple VMs because it puts them on the same virtual network, giving each one its own private IP so they can communicate with each other while still sharing the host’s internet connection.
In Bridged mode the internal IP address was: 10.32.1.32/23
External (public) IP address:
When switched to Bridged mode, the internal IP address changes because the virtual machine receives its own IP directly from the same network as the physical computer. The external IP address remains the same, since both the VM and the host still access the internet through the same router. In Bridged mode, the VM behaves like a completely separate computer on the network rather than a device hidden behind another one. Organizations choose Bridged mode when they want virtual machines to function as independent systems—useful for servers, testing environments, or situations where other devices on the network need to reach the VM directly. However, Bridged mode can introduce security and management challenges because each VM becomes visible on the network, requires its own firewall rules, and increases the number of devices that must be monitored and protected.
| Mode | Internal (Private) IP | External (Public) IP |
|---|---|---|
| Shared | 192.168.64.2/24 | 173.95.44.210 |
| Bridged | 10.32.1.32/23 | 173.95.44.210 |
| Notes | Both private IP Addresses | Same |
Bridged mode made the virtual machine appear as its own device on the local network because it received an IP address directly from the network, just like a physical computer. Shared (NAT) mode provided a safer and more controlled environment by keeping the VM behind the host computer and isolating it from other devices. NAT helps manage limited IPv4 addresses by allowing many private devices to share a single public IP, while also improving security by hiding internal devices from the outside world. This experiment showed that data from a device first travels through the local network using a private IP, then passes through a router or host system before reaching the internet with a public IP. It also demonstrated that network modes change how visible a device is and how its traffic is routed.
Switching between Shared and Bridged mode changed the virtual machine’s IP addresses by giving it a private, isolated address in Shared (NAT) mode and a full, separate address in Bridged mode. This experiment shows that devices can either hide behind a single public IP or act as independent machines on a local network, depending on how they are connected. It also highlights how local networks use private IP addresses internally while sharing one public IP when reaching the internet. IT professionals choose different configurations because home networks value simplicity and safety, business networks often require full device visibility, and lab environments need flexibility for testing. For classroom use, Shared mode is generally the best because it is safer, easier to manage, and prevents students’ virtual machines from interfering with the wider network.
Reflection
A star topology would be the easiest to set up for a business because all devices connect to a central switch or hub. This makes it simple to add or remove devices and easy to manage. A mesh topology is the most reliable if a connection fails because every device is connected to multiple other devices. If one cable or connection fails, the data can still travel through another path. The most expensive topology is the mesh topology because every device is connected to every other device, requiring more cables and hardware than other topologies. Our school uses a hybrid or star topology, because many computers in different rooms are probably connected back to central switches and servers, making it easier to manage and repair. The physical layout of a topology affects speed and reliability because shorter and more direct connections allow data to travel faster, while more intricate layouts make it easier to avoid collisions and reduce delays.
T568B cables are more common in commercial installations
Using the crimping tool to strip the wire:
This is a photo of the cables after being split and separated from one another:
This displays the wires straightened and ordered:
T568B wire order: White/Orange, Orange, White/Green, Blue, White/Blue, Green, White/Brown, Brown
Then the wires were inserted into the RJ45 connector:
For ease, the wires were left long and inserted individually and then cut once all were in the correct order.
RJ45 connector after crimping:
The same process is repeated for the other side of the cable; both finished sides of the cable are pictured below:
T568A cables perform basically the same electrically as the T568B and are commonly used in government and residential installations in the U.S The order for T568A cables is slightly different: White/Green, Green, White/Orange, Blue, White/Blue, Orange, White/Brown, Brown
Below are the side-by-side labeled cables. On the left is the T568A and on the right is the T568B.
Reflection The most challenging step in building the cable was inserting the wires into the RJ45 connector in the correct order. Ensuring that all of the wires are in the correct order is important because if they are not, the signal won’t go to the right place and the cable will not work. This connects to the Physical Layer of the OSI Model because it is the layer responsible for all physical elements, such as cables. If a cable is made incorrectly and not tested, it would mess up the rest of the network and due to not testing the cable, it may seem like there is an issue elsewhere in the network. Labeling the cable and using tools like crimpers and testers mimics the real processes that people in the industry must go through to stay organized and make sure everything works correctly.
Computer A - in Ubuntu:
Computer B - in MAC terminal:
Computer A successful ping:
Computer B successful ping:
Firewall
The traceroute results show that data travels through several routers, or hops, before reaching its destination. Each hop represents a different device or network along the path, showing how data moves step-by-step across the internet
One system transferring files to another, as seen above, using HTTP, illustrates how the Application Layer works.
These projects teach how networks function from the physical wire level up through virtual machines and SOHO networks. Focusing on how the OSI layers work together, especially Layers 1–3, and how both physical cables and IP addressing affect connectivity, allowed for a deeper understanding of the concepts. Building and testing cables reinforced how important correct wiring is to network performance. Comparing Shared and Bridged modes showed how NAT, private IPs, and public IPs determine how devices interact with the other networks. Creating a SOHO network connected the concepts by combining routers, switches, VMs, wireless clients, and services like traceroute and web servers. Overall, this project taught how data moves through a network and how to troubleshoot connections.