no ssh in pwnagotchi
#1
hi bros i have installed latest pwnagotchi in sd and then create config.yml file and also ssh file without extension in root dir of sd then i instal drivers in my win7 and i got network connection after pluging usb then i set manually ips like 10.0.0.1 then i try connect i ssh with putty but i am geting error in putty i have try every thing but i cant get ssh what i am missing here ??
Reply
#2
"... also ssh file without extension in root dir of sd"
is not the correct way.
recommended way:
https://pwnagotchi.ai/configuration/#abo...connection
or the raspbian way (if we assume pwnagotchi run raspbian):
https://www.raspberrypi.org/documentatio...ccess/ssh/
forum:
https://community.pwnagotchi.ai/t/troubl...-rpi3b/524
Reply
#3
(03-26-2020, 09:55 AM)ZerBea Wrote: "... also ssh file without extension in root dir of sd"
is not the correct way.
recommended way:
https://pwnagotchi.ai/configuration/#abo...connection
or the raspbian way (if we assume pwnagotchi run raspbian):
https://www.raspberrypi.org/documentatio...ccess/ssh/
forum:
https://community.pwnagotchi.ai/t/troubl...-rpi3b/524

thanks ssh works but i cant connect my wifi
i have created file in root wpa_supplicant.conf but wifi not connecting why is this?

Code:
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1

network={
    ssid="<your wifi network name>"
    psk="<your wifi network password>"
}
Reply
#4
Maybe that is not enough and you're missing some information.
Please read more here:
https://www.raspberrypi.org/forums/viewt...p?t=203716

Code:
country=xx
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1

network={
        ssid="network-name"
        psk="network-password"
        key_mgmt=WPA-PSK
}
where country=xx is country code of your country
Reply