This week focused on verifying the server’s network configuration, testing external connectivity, and auditing active network ports to ensure secure communication.
I used the ip addr command to identify the server’s network interfaces and verify the assigned IP address within the VirtualBox NAT environment.
ip addr
Above: Network interface details showing the loopback address and the primary Ethernet interface (enp0s3).
To ensure the server can reach external repositories for updates and software management, I performed a connectivity test using the ICMP protocol.
ping -c 4 google.com
Above: Successful ping test showing 0% packet loss and stable response times.
I audited the server’s listening ports to confirm that the SSH service is active and available for remote management while ensuring no unnecessary services are exposed.
ss -tuln
Above: Socket statistics showing the server is listening on port 22 (SSH) for both IPv4 and IPv6.