tenable / pi_sniffer

The pocket-sized wireless sniffer
Other
203 stars 36 forks source link

Connecting to Pi and getting saved pcaps #4

Open elin05 opened 4 years ago

elin05 commented 4 years ago

How can we connect to the RPi to access the saved pcaps (assuming they're saved)?

Is it configured as an AP, or do we need to modify config files to input an SSID/passphrase for it to connect to a network as a STA?

jacob-baines commented 4 years ago

I use a microusb to ethernet adapater to connect the Pi to my LAN and then SSH in.

chrismanahan commented 3 years ago

Or you can create a wpa_supplicant.conf file at the root of the boot directory on your SD card. When that file is present, the pi uses it to connect to your wifi

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

network={
    ssid="NETWORK-NAME"
    psk="NETWORK-PASSWORD"
}
Recurs1v commented 3 years ago

Hello, I have the same question as OP, I got the pi working as shown but after stopping and a clean shutdown, I am not seeing any saved pcap files on the sd card. Do you need to enable the pcap file to be saved somewhere?