Connecting a Raspberry Pi Using an Ethernet Crossover Cable and Internet Connection Sharing

Published September 20, 2016 · 10 min ·  

Education Iot Raspi Tutorial Windows
Summary

In this guide, I explore how to connect a Raspberry Pi to the internet using an Ethernet crossover cable through a Windows machine, particularly useful when away from home networks. The process involves setting up Internet Connection Sharing (ICS) on the Windows device and installing Samba on the Raspberry Pi to facilitate easy communication between the two. By following straightforward steps, including configuring network settings and ensuring both devices are properly connected, users can achieve a reliable connection without the hassle of complex configurations. This method not only simplifies the setup but also enhances the ability to share files and resources seamlessly while on the go.

raspi-crossover

I’m preparing for an upcoming speaking engagement around the topic of using Node.js and the Raspberry Pi for IoT applications. While at home, I enjoy the luxury of being the owner of my network which provides complete freedom in network configuration. On the road, I will not have this luxury whether it is at a hotel or when speaking at the conference.

Raspberry Pi

Here’s the problem I am trying to solve. While on the road, I want to be able to connect my laptop to the Wi-Fi hotspot on my phone rather than utilizing the wireless network at the conference location which might be fraught with both security and reliability issues. I also want to be able to get my Raspberry Pi system on the Internet. Additionally, I need my Raspberry Pi and my laptop to reside on the same network so I can easily connect and share files back and forth. Finally, I need this to be easy and foolproof so I’m not sweating on stage and trying to tweak Raspbian network configuration settings in order to establish network connectivity.

How about you? You might also have a similar need if you are seeking to get your Raspberry Pi on the Internet at a hotel, university, or other venue such as a conference. I’m going to show you how you can get your Raspberry Pi on the network when you are not connected to your home network using an Ethernet crossover cable.

I have read a lot of guides on the Internet, but they involve way too many steps. Surely there must be a better way that requires minimal fuss? Absolutely! Let’s get started!

Introduction

This guide assumes you are seeking to get your Raspberry Pi connected on the Internet through a Windows machine when you are away from your home network.

Equipment needed

  • Ethernet (RJ-45) cable: We will be establishing a direct connection between the Ethernet port on our RasPi and the Ethernet port on our Windows machine. Back in the days of yore, this required a special Ethernet “crossover cable” to crossover the transmit and receive signals in the cable in order to achieve a working connection. In today’s world, you should be able to use a standard Ethernet cable rather than a special crossover cable since most modern machines support automatic crossover detection—a feature called Auto MDI-X. The RasPi also supports Auto MDI-X so we should be good to go! If you don’t already have an Ethernet cable, you can get one from Amazon. Note: these are my Amazon affiliate links.
  • Ethernet port on Windows machine: If your Windows machine does not already have an Ethernet port, you can buy a USB to RJ45 Ethernet Network Adapter such as this one on Amazon.

Prepare the Raspberry Pi

Install Samba

The main secret behind this super easy method of connecting your RasPi to the Internet through a crossover cable involves a program called Samba.

Samba is an implementation of the SMB networking protocol and it allows Linux machines (including the RasPi) to inter-operate with Windows machines and look like another Windows machine on the network. Most people think of installing Samba when they want to create Windows file shares on the RasPi. By virtue of installing Samba—even if you are not planning to do file sharing with Windows machines—you get the benefit of having your RasPi broadcast its hostname and become discoverable to the Windows machines on your network.

You will thus not need to remember or try to guess the IP address of your RasPi when it is connected in our special crossover configuration. Let that sink in for a minute. This is a huge benefit if you’ve ever tried to get along without it!

If you followed the steps in my Beginner’s Guide to Installing Node.js on a Raspberry Pi, you will not need to complete this step. I’m including the instructions for installing Samba again here for your convenience:

First, launch the terminal as shown in the following Raspberry Pi OS screenshot:

Launch Terminal

From the terminal $ prompt, enter the following command:

sudo apt install samba -y

The “-y” option will automatically answer yes to the default questions which is what we want in this context.

After the installation is complete, get the name of your RasPi host name by typing the following command from the terminal:

hostname

The default host name is raspberrypi, but this can be changed using the graphical Raspberry Pi Configuration as described in my Beginner’s Guide.

Next, jump over to your Windows machine and enter the following command from the prompt. (Subsitute raspberrypi with the host name of your RasPi obtained above.)

C:/> ping raspberrypi

Yes! Your Windows machine should respond back with successful ping replies. No more remembering RasPi IP addresses or hardcoding it in the Windows hosts file only to find that the IP address of your RasPi has changed. This automatic RasPi host name availability will prove invaluable as we complete the rest of the steps in this guide to get on the network through a crossover cable.

(Optional) Disable Wi-Fi on your RasPi

This step of disabling your Wi-Fi is completely optional, but it can be used to build your confidence that this crossover connection procedure will work when you are away from your network. If your Wi-Fi is enabled, your crossover connection will still work successfully at home; however, your RasPi may handle some network traffic through its Wi-Fi connection and some through the crossover cable connected to your Windows machine.

Raspberry Pi 4 and 3

If you own a Raspberry Pi 4 or 3, your system includes built-in Wi-Fi. To temporarily disable Wi-Fi, keep in mind the following:

If you operate your Rasberry Pi headless over Wi-Fi, you will need to carry out these steps first so you don’t “cut off the branch you are standing on” since you will otherwise be disabling Wi-Fi while you are connected remotely to the RasPi through XRDP/VNC. (As an alternative to these next steps, you can also connect your RasPi using an external monitor and keyboard/mouse.)

  • Shut down your RasPi cleanly using a method such as sudo shutdown -h now.
  • Connect an Ethernet cable from your RasPi to your router.
  • Power on your RasPi.

Here are the remaining steps for all RasPi 3 owners whether now connected by Ethernet or connected directly to a monitor/keyboard/mouse:

  • Temporarily change your WiFI (SSID) password in order to effectively disable Wi-Fi.  This is accomplished by editing a configuration file as follows:
sudo mousepad /etc/wpa_supplicant/wpa_supplicant.conf

You will see any entry for your SSID that looks something this:

network={
    ssid="WifiNetwork"
    psk="Your_wifi_password"
}
  • Add a couple of extra characters to the end of the psk (Pre-Shared key) which is your Wi-Fi password.
  • Save the changes you made to the configuration file.
  • Shut down your RasPi through the terminal or by through the graphical interface.
sudo poweroff
  • Unplug the power from your RasPi.
Raspberry Pi 2

If you are connected through Wi-Fi on a RasPi 2, you using some type of Wi-Fi USB adapter such as this Edimax USB WiFi adapter. The steps to disable Wi-Fi are even easier. 🙂 Here we go:

  • Shut down your RasPi through the terminal or by through the graphical interface.
sudo poweroff
  • Unplug the power from your RasPi.
  • Remove the Wi-Fi USB adapter.

Prepare the Windows Machine

Now that your Raspberry Pi is prepped and powered off (this is important), we are ready to configure our Windows machine to finish things up.

Windows Internet Connection Sharing (ICS) Configuration

  • Launch the Windows Network Connections configuration by pressing Win+R (the Windows key on your keyboard followed by “R”) and selecting Network Connections. You will see a dialog box similar to the following containing your Wi-Fi connection and your Ethernet (RJ-45 cable) connection:
  • Right click on your Wi-Fi connection icon, select Properties and then click the Sharing tab. You will see a dialog box similar to the following:
  • As shown the screenshot above, select “Allow other network connections to connect through this computer’s Internet connection”.  Also, clear “Allow other network users to control or disable the shared Internet connection” if it is selected.

Prepare Windows Network Connection

If your Windows machine is not already connected over your Wi-Fi network, connect it now. If you are away from home, this might involve connecting your Windows Wi-Fi connection through a Wi-Fi hotspot on your phone or through a local Wi-Fi connection. Keep in mind that you want to connect through your Wi-Fi connection rather than your Ethernet cable since you will need your Ethernet port to connect the RasPi through the crossover cable.

Connect Raspberry Pi to Windows

We’re almost there! Your RasPi is powered off at this point, right? Again, this step is important for all of this to work.

Connect an Ethernet cable into your Raspberry Pi and connect the other end of the cable into your Windows machine. Make sure the Ethernet cables are seated well in each machine.

We are now ready for the final step! Go ahead and power on the RasPi. This will enable the RasPi to detect the new network configuration and adapt accordingly. Wait for about a minute for the RasPi to boot.

Next, confirm that you can see the RasPi from the Windows machine. From the Windows command prompt, enter the following command. Again, subsitute raspberrypi with the host name of your RasPi.

C:/> ping raspberrypi

Finally, remote into the RasPi through XRDP, VNC, Putty, or other method of choice. This is the moment of truth where you confirm that your RasPi has Internet connectivity. From the RasPi terminal, enter the following command:

ping google.com

You should see ping responses back if all went well. Press Ctrl+C to halt the ping command since it will keep pinging forever otherwise.

Steps Needed Each Time

Now that you have completed these steps, it is very easy to re-establish the Raspberry Pi Ethernet crossover connection each time you need it. Here are the key steps:

  • Shut down the RasPi. (sudo poweroff)
  • Ensure the Wi-Fi connection is up and running on your Windows machine through a Wi-Fi hotspot on your cell phone or some other means.
  • Connect an Ethernet cable between the RasPi and your Windows machine
  • Power on the RasPi.
  • Wait about a minute and remote into the Pi through XRDP, VNC, Putty, or other method using the RasPi host name.

Extra steps that may be needed

If you have patiently waited a minute and you are still not able ping or connect to your Raspi host, try the following:

  • On your Windows machine, launch the Windows Network Connections configuration by pressing Win+R (the Windows key on your keyboard followed by “R”) and selecting Network Connections.
  • Right click on your Wi-Fi connection icon, select Properties and then click the Sharing tab. You will see a dialog box similar to the following: Internet Connection Sharing
  • Uncheck the “Allow other network connections to connect through this computer’s Internet connection” and click OK.
  • Repeat these steps and re-check the “Allow other network connections to connect through this computer’s Internet connection” checkbox and click OK.
  • Power off the RasPi.
  • Power on the RasPi.
  • Wait about a minute and remote into the Pi through XRDP, VNC, Putty, or other method using the RasPi host name.

You should now be connected to the Internet from both your Windows machine and your RasPi machine. Furthermore, you can also communicate directly between the two machines to share files through Samba, and share other resources.

Conclusion

I can’t believe how easy it is to create a RasPi crossover connection through a Windows machine! I expected to be sitting down for half a day of deep network configuration with static IP addresses, etc. Hopefully this guide I have provided here will save you some time as well!

Follow @thisDaveJ (Dave Johnson) on X to stay up to date on the latest tutorials and tech articles.

Share this Article


OSZAR »