RaspberryPi:Networking

From UCT EE Wiki
Jump to navigation Jump to search

There are many ways to interface with the Pi. This page will cover types of network connectivity. For more comprehensive, advanced networking details, see RaspberryPi:AdvancedConnectivity.

A Brief Overview of Networks

It is useful to have a basic idea of how networks, IP addresses, and subnets work. For this, it it suggested you read this article from Microsoft.

Wireless Connectivity

WiFi connectivity is a useful way of connecting the Pi to the internet as it enables more portability. You can adjust WiFi Connections either before boot, by creating a wpa_cupplicant.conf file on the boot partition, or while the pi is running, either by editing /etc/wpa/wpa_supplicant.conf directly, or using $ sudo raspi-config. Note that the raspi-config method will not work for Eduroam.

Simple Wifi Connections

If the Pi is up and running and you have access to it, you can run $ sudo raspi-config and enable WiFi using that menu, or editing /etc/wpa/wpa_supplicant.conf directly using an editor such as nano. However if you don't have access, you can create a a wpa_supplicant.conf file on the SD card, on the boot partition while it is plugged into another system.

If editing the wpa_supplicant configuration file, the contents should look something like the following:

ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=ZA

network={
 ssid="<Name of your WiFi network>"
 psk="<Password for your WiFi network>"
}

Connecting to Eduroam

Connecting to Eduroam requires a fair amount of configuration which depends on your operating system. Generally though, edits to wpa_supplicant.conf and dhcpcd.conf are sufficient. Note that there are new releases of Raspberry Pi OS, and it is unknown if the edits for Buster are still required.

[Show/hide]

Ethernet Connectivity

Ethernet is the physical connection made using a CAT 5 or 6 cable - though there are ways that Ethernet can be mimicked over USB (see Details on the Pi 0 and 0W for more information).

If you're on a private network, connecting your Pi will usually just assign it an IP address and internet connectivity automatically works. If you're on a linux-based system, like Ubuntu, you can use the hostname of the Pi to connect. By default this is "raspberrypi", so you could SSH in using "SSH pi@raspberrypi". However, in most cases, you'll want to know the IP address and assign a static IP address.

Static IPs

Setting a static IP makes it easy to access the Pi and ensures that the IP address of the Pi is always known. In this course, we assign the Pi an IP address of 192.168.137.15. The reason for this is that when using Ethernet Passthrough on Windows, Windows asserts a domain of 192.168.137.x, with the host PC being assigned 192.168.137.1. Keep in mind that all devices will need to be on the same subnet though, so if you're assigning a static IP to be used on your own Ethernet network, you need to know what the subnet of that network is.

Setting a static IP on your Desktop

Windows

[Show/hide]

Ubuntu

[Show/hide]

Setting a static IP on the Pi

To set a static IP on the Pi, you have multiple options. You can do it before first boot by addling a line to cmdline.txt on the boot partition of the SD card, or once the Pi is running by editing dhcpcd.

From the boot partition

[Show/hide]

In dhcpcd (while the Pi is running)

[Show/hide]

WiFi to Ethernet Passthrough

In a situation when you can't or don't want to connect to a WiFi network, but are connected to a computer through an Ethernet port There may be a situation in which you want your Pi to work as an access point rather than using the WiFi interface to provide the Pi with internet access. In this situation, you need to get internet access through the Ethernet port. Before starting, you need to ensure the computer you're using has a static IP assigned. When enabling network sharing on Windows, it automatically assigns 192.168.137.1. Once that's done, complete the following to enable network sharing:

Windows

[Show/hide]

Ubuntu

[Show/hide]

Ensuring Connectivity

Sometimes you may want to debug your connection to the Pi. A fast way to do this is via the ping command. Ping sends a packet to a particular host (in this case the Pi), and measures the time taken for a response from that host.

To use the ping command, open a command prompt window or terminal and type the following:

$ ping 192.168.137.15

If that host is unreachable (the Pi hasn’t booted yet or is incorrectly configured), a message will show that the host is unreachable. If everything was correctly configured, you should get

Reply from 192.168.137.15: bytes=32 time<1ns TTL=64

This means your Pi and computer are both correctly configured. See section [sec:SSH] for configuring your Pi for SSH access.

NB: Don’t be surprised if you can’t ping a Windows machine from your Pi. Windows blocks the specific type of packet required for a ping in the firewall.

Networking Protocols

For a more detailed overview on useful networking protocols, see Network Protocols

SSH

Enabling SSH

If you have not connected to your Pi and configured it for SSH, you need to do so. SSH is disabled by default on new installations of Raspbian.

To enable SSH, add it as an enabled service in the raspi-config menu. If you do not have access to the Pi as yet, do the following:

  1. Insert the SD card into a computer
  2. Navigate to the BOOT partition
  3. Create a file called “ssh”. Note there is no file extension!
  4. Your Pi will enable SSH upon next boot

Using SSH

To use SSH on your Pi, you need to connect to the computer to a network. See Section [sec:NetworkingOnThePi] on various ways that can be done (it is suggested to use Ethernet upon first connection).

Once your Pi is connected to the computer and you have ensured connection (see Section [sec:Connectivity-EnsuringConnectivity]), use can log in to your Pi via SSH. If you are on a Linux-based system, such as Ubuntu or Mac, you should be able to run the following. Note that the default username is “pi” and the default password is “raspberry”.

$ ssh <username>@192.168.137.15

If you are on Windows, you may need to use PuTTY. Some instances of windows have SSH in the command line, and you can run the command shown above. But if not, you will need to do the following:

  1. Open PuTTY
  2. In the “Hostname” field, enter in “192.168.137.15”
  3. Click “Open”. A terminal window will be opened. If it is the first time you’re SSH’ing into your Pi on this particular computer, you will be asked about the server fingerprint. Click “Yes” to continue.
  4. You will be asked for a username and password. The default username is “pi” and the password is “raspberry”.
  5. You should now successfully connected to your Raspberry Pi via SSH

VNC

To learn about how to install VNC, see

  1. Ensure the VNC service is enabled on the Pi
  1. Connect to the Pi through VNC.
  2. Set your preferred resolution for Raspbian
    1. In the desktop menu, go to Preferences - Raspberry Pi Configuration and click the “Set Resolution” button.
    2. Select a more appropriate resolution (1280*720 suggested)
    3. Select “Okay” and then “Okay”. You will be asked to reboot your Pi, do so.
  3. Set the VNC resolution
    1. Through editing /boot/config.txt, uncomment the following lines relating to framebuffer_width and framebuffer_height
    2. On the desktop on VNC, use the settings. Do this if you have already connected to VNC. This is a little more difficult as it required you to play with windows in order to see the buttons you need.