auto lo
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
iface wlan0 inet dhcp
pre-up wpa_supplicant -B -Dwext -i wlan0 -c/etc/wpa_supplicant/wpa_supplicant.conf
post-down killall -q wpa_supplicant
sudo su
echo -n {password} | iconv -t utf16le | openssl md4 >> /etc/wpa_supplicant/wpa_supplicant.conf
This will put a has appended to your wpa_supplicant.conf
file which you can now backspace and move on to the end of your network configuration explained below.
network={
ssid="RIT"
key_mgmt=WPA-EAP
eap=PEAP
identity="{username}"
phase1="peaplabel=0"
phase2="auth=MSCHAPV2"
priority=1
password=hash:{hash_generated_from_last_step}
}
sudo reboot now
tracker@tracker4:~$ ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: wlan0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether 9c:ef:d5:fa:12:e4 brd ff:ff:ff:ff:ff:ff
inet 129.21.66.204/22 brd 129.21.67.255 scope global dynamic wlan0
valid_lft 1576sec preferred_lft 1576sec
inet6 2620:8d:8000:1040:9eef:d5ff:fefa:12e4/64 scope global dynamic mngtmpaddr
valid_lft 2591998sec preferred_lft 604798sec
inet6 fe80::9eef:d5ff:fefa:12e4/64 scope link
valid_lft forever preferred_lft forever
The mac you will get from from looking at wlan0's link/ether which in this case is 9c:ef:d5:fa:12:e4
Step 6: Register NIC with start.rit.edu so we can use a hostname from now on instead of the dynamic IP
iwconfig
You should see wlan0 and wlan1 both connected to RIT, this is good.
ip a
You should see the mac address for wlan1 on the line that says link/ether xx:xx:xx:xx:xx:xx
On your desktop navigate to start.rit.edu
Click on "My Computers", then "Advanced Registration"
Type in the mac address from before and click register, it should be successful. Now give it a hostname (preferably tracker{#}) and fill in the additional information.
You should now be able to connect to the pi using the hostname tracker{#}.student.rit.edu instead of the dynamic IP that we won't know unless we have access to the pi.
Reboot the pi using sudo reboot now
then you should have internet.
- Open PowerShell in your home directory
ssh-keygen -t ed25519
- It may ask you to enter a password to be used with the key, use at your own discretion.
- This should generate a public and private key named (by default) as
id_ed25519
andid_ed25519.pub
- Upload your public key
id_ed25519.pub
to pastebin.com - On the pi navigate to your .ssh directory
cd ~/.ssh
- On your pi now run
wget https://pastebin.com/raw/{your_pastebin_code}
which will download your public key to a file named{your_pastebin_code}
- Now, append the downloaded public key file to the
authorized_keys
file usingcat {your_pastebin_code} >> authorized_keys
- Remove the newline at the end of
authorized_keys
usingnano authorized_keys
and remove the newline from the end of the file and save it. - Now your pi is ready for SSH!
shutdown now
Now plug the USB NIC into the USB port instead of your keybord.
When done, unplug then plug back in your pi power supply to power on the pi again.
When it is done booting up you should be able to ssh into the pi from your personal computer.
Connect using ssh tracker@{your_pi_ip_from_step_6} -p 49222
(Note: the port should already be set to 49222, but if that doesn't work just use ssh without the -p 49222
You should now be connected to the pi.
Now we can setup the USB NIC!